From 4da7b42b54e25b6b3023039728b9ac8046ea11c2 Mon Sep 17 00:00:00 2001
From: zhouz <>
Date: Tue, 20 May 2025 14:41:31 +0800
Subject: [PATCH] =?UTF-8?q?fix:=E5=8C=85=E8=A3=85=E5=85=B3=E7=B3=BB?=
=?UTF-8?q?=E6=9F=A5=E8=AF=A2=E9=A1=B5=E9=9D=A2=E5=AE=A2=E6=88=B7=E8=A6=81?=
=?UTF-8?q?=E6=B1=82=E5=B9=85=E5=AE=BD=E7=B2=BE=E5=BA=A6=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
lms/nladmin-ui/src/views/wms/pdm/bi/index.vue | 43 +++++++++++--------
1 file changed, 24 insertions(+), 19 deletions(-)
diff --git a/lms/nladmin-ui/src/views/wms/pdm/bi/index.vue b/lms/nladmin-ui/src/views/wms/pdm/bi/index.vue
index 8f8cf2288..d47c4421f 100644
--- a/lms/nladmin-ui/src/views/wms/pdm/bi/index.vue
+++ b/lms/nladmin-ui/src/views/wms/pdm/bi/index.vue
@@ -187,7 +187,8 @@
>
+ :data="childrenList"
+ >
@@ -199,8 +200,8 @@
{{ scope.row.result.toString() }}
-
-
+
+
{{ new Date(scope.row.create_time).toLocaleString() }}
@@ -208,17 +209,21 @@
- 同步
+ 同步
+ 取 消
+
- {{ scope.row.container_name }}
+ {{ scope.row.container_name }}
@@ -500,7 +505,7 @@
/>
-
+
{
- if (res){
+ if (res) {
this.dtlVisible = true
- this.childrenList = res;
+ this.childrenList = res
}
})
},
async syncMes(row) {
- const url = 'http://10.1.3.36:8081/'+row.url
+ const url = 'http://10.1.3.36:8081/' + row.url
const response = await fetch(url, {
method: 'POST', // *GET, POST, PUT, DELETE, etc.
headers: {
- 'Content-Type': 'application/json',
+ 'Content-Type': 'application/json'
// 'Content-Type': 'application/x-www-form-urlencoded',
},
body: row.param // body 数据类型必须与“Content-Type”头匹配
- });
- const data = await response.json();
+ })
+ const data = await response.json()
window.alert(JSON.stringify(data))
},