|
|
|
@ -95,7 +95,6 @@
|
|
|
|
|
<el-table-column label="批次号" prop="batchNo"></el-table-column>
|
|
|
|
|
<el-table-column label="上级单号" prop="lastOrderId"></el-table-column>
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime"></el-table-column>
|
|
|
|
|
<el-table-column label="审核日期" prop="auditTime"></el-table-column>
|
|
|
|
|
<el-table-column label="创建人" prop="createUserName"></el-table-column>
|
|
|
|
|
<el-table-column label="维保类型" prop="type">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
@ -312,6 +311,7 @@ export default {
|
|
|
|
|
this.formVisible = true;
|
|
|
|
|
this.formName = 'add';
|
|
|
|
|
this.deviceInspectOrder = {
|
|
|
|
|
id: null,
|
|
|
|
|
orderId: null,
|
|
|
|
|
deptCode: this.$store.getters.locDeptCode,
|
|
|
|
|
invCode: null,
|
|
|
|
@ -328,7 +328,7 @@ export default {
|
|
|
|
|
this.deviceInspectOrder = row;
|
|
|
|
|
},
|
|
|
|
|
submitAudit(row) {
|
|
|
|
|
let params = {id: row.id};
|
|
|
|
|
let params = {orderId: row.orderId};
|
|
|
|
|
submitAudit(params).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功!");
|
|
|
|
|