From 4e9a3d6063aa619b020623a0ac6fcfa6d3b63e13 Mon Sep 17 00:00:00 2001
From: yanjinhui <3306209981@qq.com>
Date: 星期五, 24 十月 2025 16:32:28 +0800
Subject: [PATCH] 修改前端页面

---
 新建文件夹/WMS/src/views/outbound/Incoming.vue |  111 ++++++++++++++++++++++++++++++++++++++++++++++---------
 1 files changed, 92 insertions(+), 19 deletions(-)

diff --git "a/\346\226\260\345\273\272\346\226\207\344\273\266\345\244\271/WMS/src/views/outbound/Incoming.vue" "b/\346\226\260\345\273\272\346\226\207\344\273\266\345\244\271/WMS/src/views/outbound/Incoming.vue"
index f84dc78..423e0ff 100644
--- "a/\346\226\260\345\273\272\346\226\207\344\273\266\345\244\271/WMS/src/views/outbound/Incoming.vue"
+++ "b/\346\226\260\345\273\272\346\226\207\344\273\266\345\244\271/WMS/src/views/outbound/Incoming.vue"
@@ -29,42 +29,114 @@
                 url: "/Tactics/",
                 sortName: "id"
             });
+            
             const editFormFields = ref({
-                SelectTactice: ""
+                tacticeName: "",
+                selectTactice: ""
             });
+
             const editFormOptions = ref([
                 [
                     {
-                        field: "selectTactice",
-                        title: "閫夋嫨绛栫暐",
-                        type: "select",
+                        title: "绛栫暐鍚嶇О",
+                        field: "tacticeName",
+                        type: "string",
                         required: true,
-                        bind: { key: "tacticsEnum", data: [] },
-                        span: 24
+                        width: 150
+                    },
+                    {
+                        title: "閫夋嫨绛栫暐",
+                        field: "selectTactice",
+                        type: "select",
+                        dataKey: "TacticsEnum",
+                        data: [],
+                        required: true,
+                        width: 120
                     }
                 ]
             ]);
+            
             const searchFormFields = ref({
-                SelectTactice: ""
+                tacticeName: "",
+                selectTactice: ""
             });
+            
             const searchFormOptions = ref([
-               [
+                [
+                    { title: "绛栫暐鍚嶇О", field: "TacticeName", type: "like" },
                     {
-                        title: "绛栫暐绫诲瀷", 
-                        field: "selectTactice", 
-                        type: "eq", 
-                        bind: { key: "tacticsEnum", data: [] }
+                        title: "绛栫暐绫诲瀷",
+                        field: "selectTactice",
+                        type: "select",
+                        dataKey: "TacticsEnum",
+                        data: [],
                     }
-               ]
+                ]
             ]);
+            
             const columns = ref([
-                {field:'id',title:'涓婚敭',type:'int',width:90,hidden:true,readonly:true,require:true,align:'left'},
-                {field:'selectTactice',title:'閫夋嫨绛栫暐',type:'select',width:120,align:'left',bind:{key:'tacticsEnum',data:[]}},
-                {field:'creater',title:'鍒涘缓鑰�',type:'string',width:100,require:true,align:'left'},
-                {field:'createDate',title:'鍒涘缓鏃堕棿',type:'datetime',width:160,require:true,align:'left',sort:true},
-                {field:'modifier',title:'淇敼浜�',type:'string',width:100,align:'left'},
-                {field:'modifyDate',title:'淇敼鏃ユ湡',type:'datetime',width:160,align:'left',sort:true}
+                {
+                    field: 'id',
+                    title: '涓婚敭',
+                    type: 'int',
+                    width: 90,
+                    hidden: true,
+                    readonly: true,
+                    require: true,
+                    align: 'left'
+                },
+                {
+                    field: 'tacticeName',
+                    title: '绛栫暐鍚嶇О',
+                    type: 'string',
+                    width: 150,
+                    require: true,
+                    align: 'left',
+                    sort: true
+                },
+              
+                   {
+                    field: 'selectTactice',
+                    title: '閫夋嫨绛栫暐',
+                    type: 'string',
+                    width: 120,
+                    require: true,
+                    align: 'left',
+                    bind: { key: "TacticsEnum", data: [] }
+                },
+                
+                {
+                    field: 'creater',
+                    title: '鍒涘缓浜�',
+                    type: 'string',
+                    width: 90,
+                    align: 'left'
+                },
+                {
+                    field: 'createDate',
+                    title: '鍒涘缓鏃堕棿',
+                    type: 'datetime',
+                    width: 160,
+                    align: 'left',
+                    sort: true
+                },
+                {
+                    field: 'modifier',
+                    title: '淇敼浜�',
+                    type: 'string',
+                    width: 100,
+                    align: 'left'
+                },
+                {
+                    field: 'modifyDate',
+                    title: '淇敼鏃堕棿',
+                    type: 'datetime',
+                    width: 160,
+                    align: 'left',
+                    sort: true
+                }
             ]);
+            
             const detail = ref({
                 cnName: "#detailCnName",
                 table: "#detailTable",
@@ -72,6 +144,7 @@
                 sortName: "",
                 key: ""
             });
+            
             return {
                 table,
                 extend,

--
Gitblit v1.9.3