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>
<el-dialog title="工作站选择"
<el-dialog title="工选择"
v-if="showFlag"
:visible.sync="showFlag"
:modal= false
@ -159,7 +159,7 @@
getList() {
this.loading = true;
listWorkorder(this.queryParams).then(response => {
this.workorderList = response.data;
this.workorderList = response.rows;
this.loading = false;
});
},