From 1deae1d89a7039ef0b943be291f6c1b9aaa5ad2c Mon Sep 17 00:00:00 2001
From: hsy <1029150275@qq.com>
Date: 星期一, 17 八月 2026 10:30:33 +0800
Subject: [PATCH] feat(mes): 生产报工新增「可报工数量」展示 - `src/api/mes/pro/task/index.ts`: `MesProTaskApi.Task` 接口新增 `reportableQuantity` (可报工数量) 字段定义 - `src/views/mes/pro/feedback/data.ts`: - 生产报工弹框表单中新增「可报工数量」字段展示,设置为不可编辑,且仅在新建/编辑模式下显示 - 在生产任务选择弹框 (`ProTaskSelect`) 的 `onChange` 事件中,自动从选中的任务对象中提取并带入 `reportableQuantity` - 完善了表单联动的重置逻辑,确保更换工单等操作时正确清空此字段
---
src/api/crm/followup/index.ts | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/src/api/crm/followup/index.ts b/src/api/crm/followup/index.ts
index 20592a9..1bfb01e 100644
--- a/src/api/crm/followup/index.ts
+++ b/src/api/crm/followup/index.ts
@@ -1,6 +1,7 @@
import type { PageParam, PageResult } from '@vben/request';
import { requestClient } from '#/api/request';
+import type { SystemStorageApi } from '#/api/system/storage';
export namespace CrmFollowUpApi {
/** 璺熻繘璁板綍淇℃伅 */
@@ -11,7 +12,8 @@
type: number; // 璺熻繘绫诲瀷
content: string; // 璺熻繘鍐呭
picUrls: string[]; // 鍥剧墖
- fileUrls: string[]; // 闄勪欢
+ blobIds?: number[]; // 闄勪欢 blobId 鍒楄〃
+ attachmentList?: SystemStorageApi.StorageBlob[]; // 闄勪欢鍒楄〃
nextTime: Date; // 涓嬫鑱旂郴鏃堕棿
businessIds: number[]; // 鍏宠仈鐨勫晢鏈虹紪鍙锋暟缁�
businesses: Business[]; // 鍏宠仈鐨勫晢鏈烘暟缁�
--
Gitblit v1.9.3