fix:修复生产报工时无法选择工单的错误

This commit is contained in:
fuchengjie 2023-05-09 16:05:13 +08:00
parent f2655eae1c
commit 38293eaf11

View File

@ -1,5 +1,5 @@
<template> <template>
<el-dialog title="工作站选择" <el-dialog title="工选择"
v-if="showFlag" v-if="showFlag"
:visible.sync="showFlag" :visible.sync="showFlag"
:modal= false :modal= false
@ -159,7 +159,7 @@
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;
}); });
}, },