rev:1.立库监控新增空托盘监控 2.调拨同步接口支持多条明细

This commit is contained in:
2023-09-27 15:59:50 +08:00
parent d8769461a7
commit ac30120460
6 changed files with 84 additions and 16 deletions

View File

@@ -28,6 +28,14 @@
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :xs="24" :sm="24" :lg="24">
<div class="chart-wrapper">
<pie-chart :chart-data="empList" />
</div>
</el-col>
</el-row>
</div>
</div>
</template>
@@ -46,7 +54,8 @@ export default {
allList: {},
oneList: {},
twoList: {},
threeList: {}
threeList: {},
empList: {}
}
},
mounted() {
@@ -74,6 +83,7 @@ export default {
this.twoList = res.two
this.threeList = res.three
this.allList = res.all
this.empList = res.empList
})
}
}