首页生产进度展示

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