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))
},