|
@@ -230,6 +230,28 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :span="12" v-if="inputForm.reportDetail.reportType === '1'">
|
|
|
+ <el-form-item label="审定金额(不含税/元)" prop="approvedNoIncludingTax"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.reportDetail.approvedNoIncludingTax" placeholder="请填写审定金额(不含税/元)" v-on:input="inputForm.reportDetail.approvedNoIncludingTax=inputForm.reportDetail.approvedNoIncludingTax.replace(/[^\d.]/g,'')
|
|
|
+ .replace(/^\./g,'')
|
|
|
+ .replace(/\.{2,}/g,'.')
|
|
|
+ .replace('.','$#$').replace(/\./g,'').replace('$#$','.')
|
|
|
+ .replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3').replace(/^0+/, '0')" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12" v-if="inputForm.reportDetail.reportType === '1'">
|
|
|
+ <el-form-item label="审定金额(含税/元)" prop="approvedIncludingTax"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.reportDetail.approvedIncludingTax" placeholder="请填写审定金额(含税/元)" v-on:input="inputForm.reportDetail.approvedIncludingTax=inputForm.reportDetail.approvedIncludingTax.replace(/[^\d.]/g,'')
|
|
|
+ .replace(/^\./g,'')
|
|
|
+ .replace(/\.{2,}/g,'.')
|
|
|
+ .replace('.','$#$').replace(/\./g,'').replace('$#$','.')
|
|
|
+ .replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3').replace(/^0+/, '0')" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="所属行业" prop="reportDetail.industry"
|
|
|
:rules="[
|
|
@@ -794,7 +816,9 @@
|
|
|
realHeaderName: '',
|
|
|
projectMasterId2: '',
|
|
|
industry: '',
|
|
|
- businessObjects: ''
|
|
|
+ businessObjects: '',
|
|
|
+ approvedIncludingTax:'',
|
|
|
+ approvedNoIncludingTax:''
|
|
|
}
|
|
|
},
|
|
|
keyWatch: '',
|
|
@@ -949,7 +973,9 @@
|
|
|
realHeaderName: '',
|
|
|
projectMasterId2: '',
|
|
|
industry: '',
|
|
|
- businessObjects: ''
|
|
|
+ businessObjects: '',
|
|
|
+ approvedIncludingTax:'',
|
|
|
+ approvedNoIncludingTax:''
|
|
|
}
|
|
|
}
|
|
|
this.inputForm.id = id
|
|
@@ -1082,7 +1108,9 @@
|
|
|
realHeaderName: '',
|
|
|
projectMasterId2: '',
|
|
|
industry: '',
|
|
|
- businessObjects: ''
|
|
|
+ businessObjects: '',
|
|
|
+ approvedIncludingTax:'',
|
|
|
+ approvedNoIncludingTax:''
|
|
|
}
|
|
|
this.reviewBys = []
|
|
|
if (this.commonJS.isNotEmpty(row.reportNo)) {
|