diff --git a/src/views/enterpriseStandardLibrary/standard/modules/AllocationStandardDrawer.vue b/src/views/enterpriseStandardLibrary/standard/modules/AllocationStandardDrawer.vue index baf3b986..6c13012c 100644 --- a/src/views/enterpriseStandardLibrary/standard/modules/AllocationStandardDrawer.vue +++ b/src/views/enterpriseStandardLibrary/standard/modules/AllocationStandardDrawer.vue @@ -156,7 +156,11 @@ export default { allocationStandardList(query).then((res) => { if (res.success) { this.dataList = res.result.records - this.ipagination.total = res.result.total + if (res.result.total) { + this.ipagination.total = res.result.total + } else { + this.ipagination.total = 0 + } } else { this.dataList = [] }