diff --git a/src/views/basic/workplace/freightManage.vue b/src/views/basic/workplace/freightManage.vue
index 7fe6fba6..e907fd69 100644
--- a/src/views/basic/workplace/freightManage.vue
+++ b/src/views/basic/workplace/freightManage.vue
@@ -68,16 +68,18 @@
-
-
+
+
@@ -114,16 +116,18 @@
-
-
+
+
@@ -161,15 +165,20 @@
-
-
+
+
+
@@ -219,7 +228,7 @@ export default {
return {
query: {
page: 1,
- limit: 4,
+ limit: 5,
workPlaceIdFk: '',
key: ''
// code: null,
@@ -273,14 +282,17 @@ export default {
getLayerList(this.LayerQuery).then(res => {
if (res.code == 20000) {
this.layerList = res.data.list || []
+ this.LayerTotal = res.data.total
if (this.layerList.length == 0) {
this.queueList = []
+ this.queueTotal = 0
} else {
this.queueQuery.layerCode = ''
this.queueQuery.layerCodes = this.layerList.map(item => item.code)
this.getQueues()
}
} else {
+ this.LayerTotal = 0
this.layerList = []
}
})
@@ -394,5 +406,8 @@ export default {