Commit 7a0103b3 authored by mengcheng's avatar mengcheng

修改主体样式

parent fda82484
...@@ -516,10 +516,10 @@ export default { ...@@ -516,10 +516,10 @@ export default {
this.tableData = [] this.tableData = []
this.$u.api.getTaskList({ this.$u.api.getTaskList({
workstationId: this.vuex_workstation.workstationId, workstationId: this.vuex_workstation.workstationId,
status: 'ISSUEGENERATED' // status: 'ISSUEGENERATED'
}).then(res => { }).then(res => {
if (res.code === 200) { if (res.code === 200) {
this.tableData = res.rows; this.tableData = res.rows.filter(t => !['PREPARE', 'FINISHED'].includes(t.status));
this.curTaskInfo = {} this.curTaskInfo = {}
this.materialUsageRecordList = [] this.materialUsageRecordList = []
if (this.tableData.length > 0) { if (this.tableData.length > 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment