feat(oa): 新增项目进度和进度步骤跟踪的API接口

添加项目进度管理和进度步骤跟踪的相关API接口,包括列表查询、详情获取、新增、修改、删除等功能
This commit is contained in:
砂糖
2025-11-07 17:18:33 +08:00
parent b569e4fef8
commit 08029c6406
9 changed files with 1115 additions and 63 deletions

View File

@@ -77,12 +77,10 @@
this.loading = true;
switch (type) {
case 'notice':
getNotice(id)
getFeedback(id)
.then(res => {
this.article = {
...res.data,
title: res.data.noticeTitle,
content: res.data.noticeContent,
};
uni.setNavigationBarTitle({
title: '通知详情'
@@ -107,8 +105,10 @@
uni.setNavigationBarTitle({
title: '反馈详情'
})
// 标记为已读
toRead(this.article);
if (this.article.state == 0) {
// 标记为已读
toRead(this.article);
}
} else {
uni.showToast({
title: '未找到消息',