This commit is contained in:
yinjinlu-pc\尹金路 2023-06-19 13:08:42 +08:00
commit f7f68988f5
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;
});
},