|
@@ -26,7 +26,10 @@
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="16" class="item">
|
|
<el-col :span="16" class="item">
|
|
<div class="label">文件编号</div>
|
|
<div class="label">文件编号</div>
|
|
- <div class="value">{{ detailData.fileNo }}</div>
|
|
|
|
|
|
+ <div class="value">
|
|
|
|
+ <el-input v-model="detailData.fileNo" placeholder="填写文件编号" clearable></el-input>
|
|
|
|
+ <!-- {{ detailData.fileNo }} -->
|
|
|
|
+ </div>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24" class="item">
|
|
<el-col :span="24" class="item">
|
|
<div class="label">备注</div>
|
|
<div class="label">备注</div>
|
|
@@ -225,6 +228,7 @@ export default {
|
|
examineStatus: this.mainForm.status ? "OK" : "FAIL",
|
|
examineStatus: this.mainForm.status ? "OK" : "FAIL",
|
|
examineRemark: this.mainForm.remark,
|
|
examineRemark: this.mainForm.remark,
|
|
remark: this.detailData.remark,
|
|
remark: this.detailData.remark,
|
|
|
|
+ fileNo:this.detailData.fileNo
|
|
})
|
|
})
|
|
.then((res) => {
|
|
.then((res) => {
|
|
this.$successMsg("审批成功");
|
|
this.$successMsg("审批成功");
|