feat(采购需求): 新增采购需求功能模块

添加采购需求管理功能,包括需求列表展示、新增、编辑、删除和完成操作
新增需求列表页面和API接口
添加剩余时间显示组件用于展示需求截止时间
更新工作台页面添加采购需求入口
This commit is contained in:
砂糖
2025-11-07 14:21:27 +08:00
parent 750f66441b
commit b569e4fef8
7 changed files with 779 additions and 2 deletions

View File

@@ -17,7 +17,7 @@
mode="cover"></image>
<view class="user-meta">
<view class="user-name">
{{ article.author || '未知用户' }}
{{ article.createBy || '未知用户' }}
<!-- <view class="user-level">Lv.1</view> -->
</view>
<view class="user-time-area">
@@ -81,7 +81,6 @@
.then(res => {
this.article = {
...res.data,
author: res.data.createBy,
title: res.data.noticeTitle,
content: res.data.noticeContent,
};