From 557f02072fa311eefe3123aa44afebac22adc465 Mon Sep 17 00:00:00 2001
From: xiaojiao <xiaojiao@kaokeziliao.com>
Date: 星期五, 24 四月 2026 17:24:43 +0800
Subject: [PATCH] 4-24
---
项目代码/WMS/WIDESEA_WMSClient/src/views/services/record/dt_selectionRecord.vue | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 52 insertions(+), 0 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/services/record/dt_selectionRecord.vue" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/services/record/dt_selectionRecord.vue"
index 3c4268a..e121c7f 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/services/record/dt_selectionRecord.vue"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/services/record/dt_selectionRecord.vue"
@@ -272,6 +272,20 @@
sort: true,
width: 110,
align: 'left',
+ formatter: (row) => {
+ try {
+ // 瑙f瀽JSON瀛楃涓蹭负瀵硅薄
+ var dict1 = {
+ "2鍙峰帇瑁呬綅":"3绾垮簱鍘嬭鍙�",
+ "1鍙峰帇瑁呬綅":"2绾垮簱鍘嬭鍙�"
+ };
+ row.record_outstation = dict1[row.record_outstation] ?? row.record_outstation;
+ return `${row.record_outstation || '-'}`;
+ } catch (e) {
+ // 瑙f瀽澶辫触鏃惰繑鍥炲弸濂芥彁绀�
+ return '鏁版嵁鏍煎紡寮傚父';
+ }
+ },
},
{
field: 'record_direction',
@@ -280,6 +294,44 @@
sort: true,
width: 110,
align: 'left',
+ formatter: (row) => {
+ try {
+ // 瑙f瀽JSON瀛楃涓蹭负瀵硅薄
+ var dict1 = {
+ "宸︿晶":"杞寸",
+ "鍙充晶":"闈炶酱绔�"
+ };
+ row.record_direction = dict1[row.record_direction] ?? row.record_direction;
+ return `${row.record_direction || '-'}`;
+ } catch (e) {
+ // 瑙f瀽澶辫触鏃惰繑鍥炲弸濂芥彁绀�
+ return '鏁版嵁鏍煎紡寮傚父';
+ }
+ },
+ },
+ {
+ field: 'Standard_value',
+ title: '鍚堟牸璇侀噸閲�',
+ type: 'string', // 鎶� string 鏀规垚 text锛堝緢澶氬皝瑁呯粍浠惰 text 鑰岄潪 string锛�
+ align: 'left',
+ sort: true,
+ width: 140, // 鏄惧紡璁剧疆瀹藉害锛岄伩鍏嶅搴︿负0
+ },
+ {
+ field: 'Standard_value_NumResult',
+ title: '鍚堟牸璇佽绠楃粨鏋滄暟鍊�',
+ type: 'string', // 鎶� string 鏀规垚 text锛堝緢澶氬皝瑁呯粍浠惰 text 鑰岄潪 string锛�
+ align: 'left',
+ sort: true,
+ width: 180, // 鏄惧紡璁剧疆瀹藉害锛岄伩鍏嶅搴︿负0
+ },
+ {
+ field: 'Placeoforigin',
+ title: '浜у湴',
+ type: 'string', // 鎶� string 鏀规垚 text锛堝緢澶氬皝瑁呯粍浠惰 text 鑰岄潪 string锛�
+ align: 'left',
+ sort: true,
+ width: 140, // 鏄惧紡璁剧疆瀹藉害锛岄伩鍏嶅搴︿负0
},
{
field: 'record_inboundTime',
--
Gitblit v1.9.3