|
@@ -325,8 +325,7 @@
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
<el-form-item label="业务所在地" prop="businessLocation"
|
|
<el-form-item label="业务所在地" prop="businessLocation"
|
|
- :rules="[
|
|
|
|
- ]">
|
|
|
|
|
|
+ :rules="[]">
|
|
<el-input :disabled="true" v-model="inputForm.businessLocation" placeholder="请填写业务所在地" clearable>
|
|
<el-input :disabled="true" v-model="inputForm.businessLocation" placeholder="请填写业务所在地" clearable>
|
|
</el-input>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -335,7 +334,7 @@
|
|
<el-form-item label="是否数据证券业务" prop="securityBusiness"
|
|
<el-form-item label="是否数据证券业务" prop="securityBusiness"
|
|
:rules="[
|
|
:rules="[
|
|
]">
|
|
]">
|
|
- <el-select v-model="inputForm.securityBusiness" placeholder="请选择报告类别" style="width:100%;">
|
|
|
|
|
|
+ <el-select v-model="inputForm.securityBusiness" placeholder="请选择是否数据证券业务" style="width:100%;">
|
|
<el-option
|
|
<el-option
|
|
v-for="item in $dictUtils.getDictList('cw_report_negotiable')"
|
|
v-for="item in $dictUtils.getDictList('cw_report_negotiable')"
|
|
:key="item.value"
|
|
:key="item.value"
|
|
@@ -353,6 +352,7 @@
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
<el-form-item label="下一节点审核人" prop="reviewBy"
|
|
<el-form-item label="下一节点审核人" prop="reviewBy"
|
|
:rules="[
|
|
:rules="[
|
|
|
|
+ {required: true, message:'下一节点审核人不能为空', trigger:'blur'}
|
|
]">
|
|
]">
|
|
<el-select v-model="inputForm.reviewBy" placeholder="请选择下一节点审核人" style="width:100%;">
|
|
<el-select v-model="inputForm.reviewBy" placeholder="请选择下一节点审核人" style="width:100%;">
|
|
<el-option
|
|
<el-option
|
|
@@ -393,7 +393,7 @@
|
|
<el-form-item label="存档份数(大写)" prop="placeOnFileNum"
|
|
<el-form-item label="存档份数(大写)" prop="placeOnFileNum"
|
|
:rules="[
|
|
:rules="[
|
|
]">
|
|
]">
|
|
- <el-input size="medium" v-model="inputForm.placeOnFileNum" placeholder="请输入发出份数">
|
|
|
|
|
|
+ <el-input size="medium" v-model="inputForm.placeOnFileNum" placeholder="请输入存档份数">
|
|
</el-input>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
@@ -417,7 +417,7 @@
|
|
<el-form-item label="计算机文号" prop="computerNo"
|
|
<el-form-item label="计算机文号" prop="computerNo"
|
|
:rules="[
|
|
:rules="[
|
|
]">
|
|
]">
|
|
- <el-input size="medium" v-model="inputForm.computerNo" placeholder="请输入校对人签名">
|
|
|
|
|
|
+ <el-input size="medium" v-model="inputForm.computerNo" placeholder="请输入计算机文号">
|
|
</el-input>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
@@ -933,6 +933,7 @@
|
|
} else if (status === 'start') {
|
|
} else if (status === 'start') {
|
|
// 送审 待审核
|
|
// 送审 待审核
|
|
this.inputForm.reviewStatus = '2'
|
|
this.inputForm.reviewStatus = '2'
|
|
|
|
+ this.inputForm.assignee = this.inputForm.reviewBy
|
|
} else if (status === 'agree') {
|
|
} else if (status === 'agree') {
|
|
// 审核同意
|
|
// 审核同意
|
|
this.inputForm.agreeDate = this.moment(new Date()).format('YYYY-MM-DD HH:mm:ss')
|
|
this.inputForm.agreeDate = this.moment(new Date()).format('YYYY-MM-DD HH:mm:ss')
|
|
@@ -948,7 +949,7 @@
|
|
this.inputForm.createDate = this.moment(new Date()).format('YYYY-MM-DD HH:mm:ss')
|
|
this.inputForm.createDate = this.moment(new Date()).format('YYYY-MM-DD HH:mm:ss')
|
|
}
|
|
}
|
|
// console.log('this.inputForm.reviewBy', this.inputForm.reviewBy)
|
|
// console.log('this.inputForm.reviewBy', this.inputForm.reviewBy)
|
|
- this.inputForm.assignee = this.inputForm.reviewBy
|
|
|
|
|
|
+ // this.inputForm.assignee = this.inputForm.reviewBy
|
|
// 列表处理
|
|
// 列表处理
|
|
this.inputForm.details = []
|
|
this.inputForm.details = []
|
|
this.inputForm.detailFor1010.forEach(item => { this.inputForm.details.push(item) })
|
|
this.inputForm.detailFor1010.forEach(item => { this.inputForm.details.push(item) })
|