|
|
@@ -404,14 +404,14 @@
|
|
|
async submit() {
|
|
|
console.log(this.rowData);
|
|
|
|
|
|
- let varibles = {
|
|
|
+ let variables = {
|
|
|
businessCode: this.rowData?.code,
|
|
|
businessName: this.rowData?.name,
|
|
|
businessType: this.rowData?.typeName
|
|
|
};
|
|
|
- console.log(varibles);
|
|
|
+ console.log(variables);
|
|
|
|
|
|
- await processInstanceCreateAPI({ ...this.form, varibles });
|
|
|
+ await processInstanceCreateAPI({ ...this.form, variables });
|
|
|
this.$message.success('提交审核成功');
|
|
|
this.$emit('reload');
|
|
|
this.cancel();
|