|
@@ -950,8 +950,8 @@
|
|
|
}
|
|
|
}
|
|
|
let processTitle = `${this.userName} 发起了 ${this.inputForm.reportNo} - ${this.inputForm.projectName} ` + describe
|
|
|
- this.inputForm.formTitle = processTitle
|
|
|
- this.inputForm.title = title
|
|
|
+ this.inputForm.formTitle = title
|
|
|
+ this.inputForm.title = processTitle
|
|
|
|
|
|
this.$refs['inputForm'].validate((valid) => {
|
|
|
if (valid) {
|
|
@@ -1038,6 +1038,18 @@
|
|
|
})
|
|
|
},
|
|
|
async agreeForm (callback) {
|
|
|
+ let describe = ''
|
|
|
+ if (this.inputForm.signatureType) {
|
|
|
+ if (this.inputForm.signatureType === '1') {
|
|
|
+ describe = `[会计-报告签章-电子公章]`
|
|
|
+ } else if (this.inputForm.signatureType === '2') {
|
|
|
+ describe = `[会计-报告签章-电子公章+执业章]`
|
|
|
+ } else if (this.inputForm.signatureType === '3') {
|
|
|
+ describe = `[会计-报告签章-实体公章]`
|
|
|
+ }
|
|
|
+ }
|
|
|
+ let processTitle = `${this.inputForm.userName} 发起了 ${this.inputForm.reportNo} - ${this.inputForm.projectName} ` + describe
|
|
|
+ this.inputForm.title = processTitle
|
|
|
if (this.inputForm.signatureType === '1') {
|
|
|
this.projectReportService.findBySignatureId(this.inputForm.sid1).then(({data}) => {
|
|
|
if (data.status !== '2') { // status的值不等于“审核中”就弹出提示
|