From a34059e688e947a2ea079a0646872f1a21089940 Mon Sep 17 00:00:00 2001 From: huanghongfeng <huanghongfeng@hnkhzn.com> Date: 星期一, 22 九月 2025 14:47:00 +0800 Subject: [PATCH] 1 --- 项目代码/WMS/WIDESEA_WMSClient/src/views/widesea_wms/basicinfo/Dt_SelectionStandards.vue | 25 ++++++++++++++++++------- 1 files changed, 18 insertions(+), 7 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/widesea_wms/basicinfo/Dt_SelectionStandards.vue" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/widesea_wms/basicinfo/Dt_SelectionStandards.vue" index 7b34e94..2bd7e64 100644 --- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/widesea_wms/basicinfo/Dt_SelectionStandards.vue" +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/widesea_wms/basicinfo/Dt_SelectionStandards.vue" @@ -24,6 +24,7 @@ sortName: "id" }); const editFormFields = ref({ + "id":"", "carType": "", "mttype": "", "neworold": "", @@ -32,14 +33,16 @@ "upperValue": "", "isCantainGK": "", "lowerValue_gk": "", - "upperValue_gk": "" + "upperValue_gk": "", + "postContainer":"", + "estimatedvalue":"" }); const editFormOptions = ref([ [ { "title": "閫傜敤杞﹀瀷", "field": "carType", "type": "textarea" }, ], [ - { "title": "鍔ㄦ嫋灞炴��", "field": "mttype", "type": "text" }, + { "title": "鍔ㄦ嫋灞炴��", "field": "mttype", "type": "select", dataKey: "dongtuoshux", data: [] }, { "title": "鏂版棫灞炴��", "field": "neworold", "type": "select", dataKey: "NewOld", data: [] }, { "title": "姣傚瓟绛夌骇", "field": "gkdj", "type": "select", dataKey: "Level", data: [] }, ], @@ -54,17 +57,23 @@ [ { "title": "鎴潰杩囩泩閲忎笅闄�", "field": "lowerValue_gk", "type": "decimal" }, { "title": "鎴潰杩囩泩閲忎笂闄�", "field": "upperValue_gk", "type": "decimal" } + ], + [ + { "title": "鍒跺姩鐩樻柟鍚�", "field": "postContainer", "type": "select", dataKey: "", data: [{key:"涓�",value:"涓�"},{key:"渚�",value:"渚�"}] }, + ], + [ + { "title": "棰勪及鍊�", "field": "estimatedvalue", "type": "decimal" }, ] ]); const searchFormFields = ref({ "carType":"", - mttype:"" + "mttype":"" }); const searchFormOptions = ref([ [ - { "title": "閫傜敤杞﹀瀷", "field": "carType", type: "like" }, + { "title": "閫傜敤杞﹀瀷", "field": "carType", type: "text" }, //{ "title": "璐т綅鐘舵��", "field": "locationStatus", "type": "select", dataKey: "LocationState", data: [] }, - { "title": "鍔ㄦ嫋灞炴��", "field": "mttype", type: "text" }, + { "title": "鍔ㄦ嫋灞炴��", "field": "mttype", "type": "select", dataKey: "dongtuoshux", data: [] }, ], [ //{ "title": "鏄惁绂佺敤", "field": "enalbeStatus", "type": "select", dataKey: "EnalbeStatus", data: [] } @@ -74,7 +83,7 @@ ]); const columns = ref([{ field: 'id', title: 'ID', type: 'int', width: 110, hidden: true, readonly: true, require: true, align: 'left' }, { field: 'carType', title: '閫傜敤杞﹀瀷', type: 'string', width: 200, require: true, align: 'left' }, - { field: 'mttype', title: '鍔ㄦ嫋灞炴��', type: 'string', width: 90, align: 'left' }, + { field: 'mttype', title: '鍔ㄦ嫋灞炴��', type: 'string', width: 110, align: 'left', bind: { key: "dongtuoshux", data: [] } }, { field: 'neworold', title: '鏂版棫灞炴��', type: 'string', width: 90, require: true, align: 'left',bind: { key: "NewOld", data: []} }, { field: 'gkdj', title: '姣傚瓟绛夌骇', type: 'string', width: 90, align: 'left',bind: { key: "Level", data: []} }, { field: 'lowerValue', title: '杩囩泩閲忎笅闄�', type: 'decimal', width: 90, align: 'left' }, @@ -86,7 +95,9 @@ { field: 'createDate', title: '鍒涘缓鏃堕棿', type: 'datetime', sort: true, width: 90, align: 'left', sort: true }, //{ field: 'modifier', title: '淇敼浜�', type: 'string', sort: true, width: 90, align: 'left' }, //{ field: 'modifyDate', title: '淇敼鏃堕棿', type: 'datetime', sort: true, width: 90, align: 'left', sort: true }, - ]); + { field: 'postContainer', title: '鍒跺姩鐩樻柟鍚�', type: 'bool', width: 120, align: 'left', bind: { key: "", data: [{key:"涓�",value:"涓�"},{key:"渚�",value:"渚�"}]} }, + { field: 'estimatedvalue', title: '棰勪及杞緞鍊�', type: 'decimal', width: 110, align: 'left' }, + ]); const detail = ref({ cnName: "#detailCnName", table: "#detailTable", -- Gitblit v1.9.3