From 99c00652cf3895009eacdb05025e02967a670367 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期三, 05 八月 2026 11:36:00 +0800
Subject: [PATCH] feat(mes): 实现生产报工批次属性管理和SRM投标优化功能

---
 src/views/mes/pro/feedback/index.vue |   37 -------------------------------------
 1 files changed, 0 insertions(+), 37 deletions(-)

diff --git a/src/views/mes/pro/feedback/index.vue b/src/views/mes/pro/feedback/index.vue
index b60997e..adb6ae1 100644
--- a/src/views/mes/pro/feedback/index.vue
+++ b/src/views/mes/pro/feedback/index.vue
@@ -22,8 +22,6 @@
 
 import { useGridColumns, useGridFormSchema } from './data';
 import Form from './modules/form.vue';
-import QuickFeedbackForm from '../workorder-center/modules/quick-feedback.vue';
-import BatchFeedbackForm from './modules/batch-feedback.vue';
 import ArchiveDetail from '#/views/mes/pd/archive/modules/detail.vue';
 
 const userStore = useUserStore();
@@ -31,16 +29,6 @@
 
 const [FormModal, formModalApi] = useVbenModal({
   connectedComponent: Form,
-  destroyOnClose: true,
-});
-
-const [QuickFeedbackModal, quickFeedbackModalApi] = useVbenModal({
-  connectedComponent: QuickFeedbackForm,
-  destroyOnClose: true,
-});
-
-const [BatchFeedbackModal, batchFeedbackModalApi] = useVbenModal({
-  connectedComponent: BatchFeedbackForm,
   destroyOnClose: true,
 });
 
@@ -108,16 +96,6 @@
   }
 }
 
-/** 蹇�熸姤宸� */
-function handleQuickCreate() {
-  quickFeedbackModalApi.setData({}).open();
-}
-
-/** 鎵归噺鎶ュ伐 */
-function handleBatchCreate() {
-  batchFeedbackModalApi.setData({}).open();
-}
-
 const [Grid, gridApi] = useVbenVxeGrid({
   formOptions: { schema: useGridFormSchema() },
   gridOptions: {
@@ -144,8 +122,6 @@
 <template>
   <Page auto-content-height>
     <FormModal @success="handleRefresh" />
-    <QuickFeedbackModal @success="handleRefresh" />
-    <BatchFeedbackModal @success="handleRefresh" />
     <Grid table-title="鐢熶骇鎶ュ伐鍒楄〃">
       <template #toolbar-tools>
         <TableAction
@@ -156,19 +132,6 @@
               icon: ACTION_ICON.ADD,
               auth: ['mes:pro-feedback:create'],
               onClick: handleCreate,
-            },
-            {
-              label: '蹇�熸姤宸�',
-              type: 'primary',
-              icon: ACTION_ICON.ADD,
-              auth: ['mes:pro-feedback:create'],
-              onClick: handleQuickCreate,
-            },
-            {
-              label: '鎵归噺鎶ュ伐',
-              type: 'primary',
-              auth: ['mes:pro-feedback:create'],
-              onClick: handleBatchCreate,
             },
             {
               label: $t('ui.actionTitle.export'),

--
Gitblit v1.9.3