From 5ddc53bce95d2b63e45dae49ece8dfd71a2ea05b Mon Sep 17 00:00:00 2001 From: YunaiV Date: Sat, 21 Feb 2026 00:19:09 +0800 Subject: [PATCH] =?UTF-8?q?feat(mes):=20qc=20=E6=B7=BB=E5=8A=A0=E5=AE=89?= =?UTF-8?q?=E7=81=AF=E5=A4=84=E7=BD=AE=E7=8A=B6=E6=80=81=E5=92=8C=E7=BA=A7?= =?UTF-8?q?=E5=88=AB=E6=9E=9A=E4=B8=BE=EF=BC=8C=E6=9B=B4=E6=96=B0=E7=9B=B8?= =?UTF-8?q?=E5=85=B3=E9=94=99=E8=AF=AF=E7=A0=81=E5=92=8C=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../{indicator.ts => indicator/index.ts} | 1 - .../qc/template/{item.ts => item/index.ts} | 1 - src/utils/dict.ts | 5 +++ src/views/mes/qc/template/TemplateForm.vue | 7 ++-- src/views/mes/utils/constants.ts | 34 +++++++++++++++++++ 5 files changed, 42 insertions(+), 6 deletions(-) rename src/api/mes/qc/template/{indicator.ts => indicator/index.ts} (97%) rename src/api/mes/qc/template/{item.ts => item/index.ts} (97%) diff --git a/src/api/mes/qc/template/indicator.ts b/src/api/mes/qc/template/indicator/index.ts similarity index 97% rename from src/api/mes/qc/template/indicator.ts rename to src/api/mes/qc/template/indicator/index.ts index 9d9dbdf31..faf2e7b2b 100644 --- a/src/api/mes/qc/template/indicator.ts +++ b/src/api/mes/qc/template/indicator/index.ts @@ -1,6 +1,5 @@ import request from '@/config/axios' -// TODO @AI:indicator/index.ts 迁移过去; // MES 质检方案-检测指标项 VO export interface QcTemplateIndicatorVO { id: number // 编号 diff --git a/src/api/mes/qc/template/item.ts b/src/api/mes/qc/template/item/index.ts similarity index 97% rename from src/api/mes/qc/template/item.ts rename to src/api/mes/qc/template/item/index.ts index 211b925b6..0b19c694d 100644 --- a/src/api/mes/qc/template/item.ts +++ b/src/api/mes/qc/template/item/index.ts @@ -1,6 +1,5 @@ import request from '@/config/axios' -// TODO @AI:item/index.ts 迁移过去; // MES 质检方案-产品关联 VO export interface QcTemplateItemVO { id: number // 编号 diff --git a/src/utils/dict.ts b/src/utils/dict.ts index 4793c5daa..0552870fb 100644 --- a/src/utils/dict.ts +++ b/src/utils/dict.ts @@ -285,4 +285,9 @@ export enum DICT_TYPE { MES_DV_REPAIR_RESULT = 'mes_dv_repair_result', // MES 维修结果 MES_DV_CHECK_RECORD_STATUS = 'mes_dv_check_record_status', // MES 点检记录状态 MES_DV_CHECK_RESULT = 'mes_dv_check_result', // MES 点检结果 + MES_PRO_FEEDBACK_STATUS = 'mes_pro_feedback_status', // MES 生产报工状态 + MES_PRO_FEEDBACK_TYPE = 'mes_pro_feedback_type', // MES 生产报工类型 + MES_PRO_FEEDBACK_CHANNEL = 'mes_pro_feedback_channel', // MES 生产报工途径 + MES_PRO_ANDON_STATUS = 'mes_pro_andon_status', // MES 安灯处置状态 + MES_PRO_ANDON_LEVEL = 'mes_pro_andon_level', // MES 安灯级别 } diff --git a/src/views/mes/qc/template/TemplateForm.vue b/src/views/mes/qc/template/TemplateForm.vue index b4743b215..89168855a 100644 --- a/src/views/mes/qc/template/TemplateForm.vue +++ b/src/views/mes/qc/template/TemplateForm.vue @@ -2,7 +2,6 @@