!2 修复工单无法选择的问题

Merge pull request !2 from fuchengjie/master
This commit is contained in:
心笑峰 2023-05-10 12:59:14 +00:00 committed by Gitee
commit 1481f0aa16
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 5 additions and 2 deletions

View File

@ -3,3 +3,6 @@
#### 介绍
开源、免费MES系统的前端
#### 部署
·执行npm install 命令cnpm install安装所有依赖包。
·执行npm run dev 运行前端代码。

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;
});
},