首页生产进度展示

This commit is contained in:
yinjinlu-pc\尹金路 2023-09-12 23:29:49 +08:00
parent cdca441328
commit a7e87bd68c

View File

@ -110,7 +110,7 @@ export default {
data() {
return {
loading: true,
queryParams: {},
queryParams: {status:'CONFIRMED'},
workorderList: [],
lineChartData: lineChartData.newVisitis
}
@ -122,7 +122,7 @@ export default {
getList() {
this.loading = true;
listWorkorder(this.queryParams).then(response => {
this.workorderList = response.data;
this.workorderList = response.rows;
this.loading = false;
});
},