From 19e5b7583a2aa1968c674b4b35f618cc6c2e29ef Mon Sep 17 00:00:00 2001 From: huanghongfeng <huanghongfeng@hnkhzn.com> Date: 星期一, 09 十二月 2024 14:16:30 +0800 Subject: [PATCH] 新增历史信息,页面排序,生产时间 --- 代码管理/WMS/WIDESEA_WMSClient/src/views/stock/stockInfoDetail.vue | 89 +++++++++++++++++++++++++------------------- 1 files changed, 50 insertions(+), 39 deletions(-) diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockInfoDetail.vue" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockInfoDetail.vue" index fdb2428..3756d65 100644 --- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockInfoDetail.vue" +++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockInfoDetail.vue" @@ -48,7 +48,7 @@ type: "string", }, { - title: "搴忓垪鍙�", + title: "鍖呭彿", required: true, field: "serialNumber", type: "string", @@ -63,10 +63,31 @@ }); const searchFormOptions = ref([ [ - { title: "鐗╂枡缂栧彿", field: "materielCode" }, - { title: "鐗╂枡鍚嶇О", field: "materielName" }, - { title: "鍗曟嵁缂栧彿", field: "orderNo" }, + { title: "鐗╂枡缂栧彿", field: "materielCode",type:"like"}, + { title: "鐗╂枡鍚嶇О", field: "materielName",type:"like" }, + { title: "鐗╂枡璇︽儏", field: "orderNo" ,type:"like"}, + + ], + [ + { title: "鐗╂枡鎵规", field: "batchNo",type:"like" }, + { title: "鐗╂枡鎵规璇︽儏", field: "batchNoName",type:"like" }, + { title: "閲嶉噺", field: "stockQuantity",type:"like" }, + ], + [ + { + title: "搴撳瓨鏄庣粏鐘舵��", + field: "stockQuantity", + type:"like" + }, + { + field: "stockId", + title: "搴撳瓨淇℃伅涓婚敭", + type: "string", + width: 90, + align: "left", + }, + ] ]); const columns = ref([ { @@ -85,6 +106,7 @@ type: "string", width: 90, align: "left", + sort:true, }, { field: "materielCode", @@ -92,6 +114,7 @@ type: "string", width: 150, align: "left", + sort:true, }, { field: "materielName", @@ -99,41 +122,47 @@ type: "string", width: 150, align: "left", + sort:true, }, { field: "orderNo", - title: "鍗曟嵁缂栧彿", + title: "鐗╂枡璇︽儏", type: "decimal", width: 90, align: "left", + sort:true, }, { field: "batchNo", - title: "鎵规鍙�", + title: "鐗╂枡鎵规", type: "string", - width: 90, + width: 120, align: "left", + sort:true, }, { field: "serialNumber", - title: "搴忓垪鍙�", + title: "鍖呭彿", + type: "string", + width: 50, + align: "left", + sort:true, + }, + { + field: "batchNoName", + title: "鐗╂枡鎵规璇︽儏", type: "int", width: 120, align: "left", + sort:true, }, { field: "stockQuantity", - title: "搴撳瓨鏁伴噺", + title: "閲嶉噺", type: "string", - width: 200, + width: 80, align: "left", - }, - { - field: "outboundQuantity", - title: "鍑哄簱鏁伴噺", - type: "string", - width: 180, - align: "left", + sort:true, }, { field: "status", @@ -141,7 +170,8 @@ type: "string", width: 120, align: "left", - bind: { key: "outStockStatus", data: [] }, + sort:true, + bind: { key: "stockStatusEmun", data: [] }, }, { field: "creater", @@ -149,6 +179,7 @@ type: "string", width: 90, align: "left", + sort:true, }, { field: "createDate", @@ -156,27 +187,7 @@ type: "datetime", width: 160, align: "left", - }, - { - field: "modifier", - title: "淇敼浜�", - type: "string", - width: 100, - align: "left", - }, - { - field: "modifyDate", - title: "淇敼鏃堕棿", - type: "datetime", - width: 160, - align: "left", - }, - { - field: "remark", - title: "澶囨敞", - type: "string", - width: 100, - align: "left", + sort:true, }, ]); const detail = ref({ -- Gitblit v1.9.3