This commit is contained in:
zds
2022-08-03 16:43:17 +08:00
parent 8a6ea02743
commit dc4a8b95df
6 changed files with 231 additions and 57 deletions

View File

@@ -172,6 +172,7 @@
<el-table-column prop="plan_finish_date" label="交货日期" width="100" />
<el-table-column prop="day_num" label="提前天数" width="90" :formatter="crud.formatNum0" />
<el-table-column :formatter="stateFormat" min-width="80" prop="status" label="状态" />
<el-table-column prop="task_code" label="生产任务号" width="120" />
<el-table-column prop="create_time" label="创建时间" width="140px" />
<el-table-column prop="create_name" label="创建人" width="100" />
<el-table-column prop="remark" label="备注" />

View File

@@ -298,10 +298,13 @@ export default {
this.crud.notify('请勾选需要提交的记录!')
return false
}
this.crud.loading = true
producetask.submit2({ query: this.crud.query, rows: this.checkrows}).then(res => {
this.crud.notify('操作成功!')
this.crud.loading = false
this.querytable()
})
this.crud.loading = false
},
querytable() {
this.crud.toQuery()