|
|
@@ -1,5 +1,5 @@
|
|
|
<template xmlns:v-slot="http://www.w3.org/1999/XSL/Transform">
|
|
|
- <div v-if="false">
|
|
|
+ <div v-if="$store.state.user.company.name == '苏州分公司'">
|
|
|
<el-row>
|
|
|
<el-col :span="24">
|
|
|
<el-form :model="inputForm" ref="inputForm" v-loading="loading" :class="method === 'view' ? 'readonly' : ''"
|
|
|
@@ -486,6 +486,15 @@
|
|
|
<el-input :disabled="true" v-model="inputForm.isNumber" placeholder="请填写确认盒号" clearable></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col v-if="status !== 'audit'" :span="12">
|
|
|
+ <el-form-item label="文档存放位置" prop="specialPlace" :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.specialPlace" placeholder="请填写文档存放位置(特殊)"
|
|
|
+ clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col v-if="status !== 'audit'" :span="12"></el-col>
|
|
|
+
|
|
|
<el-col :span="12" v-if="status !== 'audit'">
|
|
|
<el-form-item class="star-require" label="审定金额(不含税/元)" prop="approvedNoIncludingTax" :rules="[
|
|
|
]">
|
|
|
@@ -539,6 +548,15 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12" v-if="status === 'audit'">
|
|
|
+ <el-form-item label="文档存放位置" prop="specialPlace" :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="false" style="width: 100%" v-model="inputForm.specialPlace" placeholder="请填写文档存放位置"
|
|
|
+ clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col v-if="status === 'audit'" :span="12"></el-col>
|
|
|
+
|
|
|
+ <el-col :span="12" v-if="status === 'audit'">
|
|
|
<el-form-item class="star-require" label="审定金额(不含税/元)" prop="approvedNoIncludingTax" :rules="[
|
|
|
]">
|
|
|
<el-input :disabled="true" v-model="inputForm.approvedNoIncludingTax"
|
|
|
@@ -812,6 +830,16 @@
|
|
|
<el-input :disabled="true" v-model="inputForm.isNumber" placeholder="请填写确认盒号" clearable></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+
|
|
|
+ <el-col v-if="status !== 'audit'" :span="12">
|
|
|
+ <el-form-item label="文档存放位置" prop="specialPlace" :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" style="width: 100%" v-model="inputForm.specialPlace" placeholder="请填写文档存放位置"
|
|
|
+ clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col v-if="status !== 'audit'" :span="12"></el-col>
|
|
|
+
|
|
|
<el-form v-if="status === 'audit'" style="width: 100%" :model="inputForm" ref="inputForm"
|
|
|
v-loading="loading" :class="method === 'view' ? 'readonly' : ''" label-width="110px"
|
|
|
@submit.native.prevent>
|
|
|
@@ -832,6 +860,15 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
+ <el-form-item label="文档存放位置" prop="specialPlace" :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="false" style="width: 100%" v-model="inputForm.specialPlace"
|
|
|
+ placeholder="请填写文档存放位置" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12"></el-col>
|
|
|
+
|
|
|
+ <el-col :span="12">
|
|
|
<el-form-item label="备注" prop="remarks" :rules="[
|
|
|
]">
|
|
|
<el-input type="textarea" :disabled="false" style="width: 100%" v-model="inputForm.remarks"
|
|
|
@@ -1099,6 +1136,7 @@ export default {
|
|
|
year: '',
|
|
|
number: '',
|
|
|
isNumber: '',
|
|
|
+ specialPlace: '',
|
|
|
approveRemarks: '',
|
|
|
contract: '',
|
|
|
approvedNoIncludingTax: "",
|
|
|
@@ -1265,6 +1303,7 @@ export default {
|
|
|
year: '',
|
|
|
number: '',
|
|
|
isNumber: '',
|
|
|
+ specialPlace: '',
|
|
|
approveRemarks: '',
|
|
|
contract: '',
|
|
|
approvedNoIncludingTax: "",
|