|
|
@@ -107,7 +107,8 @@
|
|
|
|
|
|
async handleAudit(status) {
|
|
|
let variables = {
|
|
|
- pass: !!status
|
|
|
+ pass: !!status,
|
|
|
+ approvalResultMsg: this.form.reason
|
|
|
};
|
|
|
|
|
|
let { formData } = await this.getTableValue();
|
|
|
@@ -116,8 +117,7 @@
|
|
|
API({
|
|
|
id: this.taskId,
|
|
|
reason: this.form.reason,
|
|
|
- variables,
|
|
|
- approvalResultMsg: this.form.reason
|
|
|
+ variables
|
|
|
}).then((res) => {
|
|
|
if (res.data.code != '-1') {
|
|
|
this.$emit('handleAudit', {
|