From b4496ad2462843c575a3902c94a87694426f29a3 Mon Sep 17 00:00:00 2001
From: Ben Lin <maobin001@msn.com>
Date: 星期四, 27 六月 2024 16:03:37 +0800
Subject: [PATCH] 产品工艺路线更新

---
 src/views/components/data.ts |   70 +++++++++++++++++++++++++++++++++--
 1 files changed, 66 insertions(+), 4 deletions(-)

diff --git a/src/views/components/data.ts b/src/views/components/data.ts
index 0240bc3..79852ad 100644
--- a/src/views/components/data.ts
+++ b/src/views/components/data.ts
@@ -1,10 +1,10 @@
 /*
  * @Description: 鑷畾涔夊脊鍑烘璇锋暟鎹�
  * @Author: Ben Lin
- * @version: 
+ * @version:
  * @Date: 2024-06-05 15:50:59
- * @LastEditors: your name
- * @LastEditTime: 2024-06-15 22:44:19
+ * @LastEditors: Ben Lin
+ * @LastEditTime: 2024-06-27 10:54:27
  */
 import {
   getWoFns,
@@ -138,8 +138,70 @@
         ],
         tableName: 'BAS_ITEM',
         rowKey: 'ITEM_CODE',
-        searchInfo: {TABLE_NAME: 'BAS_ITEM'} //searchInfo: {TABLE_NAME: 'MES_CUSTOM_ACT', ACT_TYPE: routeConfig.currentAct.ACT_TYPE}
+        searchInfo: { TABLE_NAME: 'BAS_ITEM' }, //searchInfo: {TABLE_NAME: 'MES_CUSTOM_ACT', ACT_TYPE: routeConfig.currentAct.ACT_TYPE}
       });
       break;
   }
 }
+
+export const step1Schemas: FormSchema[] = [
+  {
+    field: 'CUST_CODE',
+    component: 'Input',
+    label: '瀹㈡埛缂栫爜',
+    required: true,
+    colProps: {
+      span: 20,
+    },
+  },
+  {
+    field: '0',
+    label: '',
+    defaultValue: '',
+    slot: 'add',
+    colProps: {
+      span: 4,
+    },
+  },
+  {
+    field: 'CUST_ID',
+    component: 'Input',
+    label: 'ID',
+    required: true,
+    colProps: {
+      span: 20,
+    },
+    show: false,
+  },
+];
+
+export const step2Schemas: FormSchema[] = [
+  {
+    field: 'ROT_CODE',
+    component: 'Input',
+    label: '宸ヨ壓璺嚎',
+    required: true,
+    colProps: {
+      span: 20,
+    },
+  },
+  {
+    field: '0',
+    label: '',
+    defaultValue: '',
+    slot: 'add',
+    colProps: {
+      span: 4,
+    },
+  },
+  {
+    field: 'ROT_ID',
+    component: 'Input',
+    label: 'ID',
+    required: true,
+    colProps: {
+      span: 20,
+    },
+    show: false,
+  },
+];

--
Gitblit v1.9.3