|
@@ -302,6 +302,7 @@ import { shallowRef } from 'vue'
|
|
|
import CollectService from '@/api/materialManagement/CollectService'
|
|
|
import WareHouseService from '@/api/materialManagement/WareHouseService'
|
|
|
import ProjectReportArchiveService from '@/api/cw/projectRecords/ProjectReportArchiveService'
|
|
|
+import pick from "lodash.pick";
|
|
|
export default {
|
|
|
collectService: null,
|
|
|
wareHouseService: null,
|
|
@@ -1366,11 +1367,11 @@ export default {
|
|
|
taskDefKey: this.taskDefKey,
|
|
|
procInsId: this.procInsId,
|
|
|
procDefId: this.procDefId,
|
|
|
- vars: vars,
|
|
|
comment: this.auditForm,
|
|
|
assignee: this.auditForm.assignee,
|
|
|
recordType:recordType,
|
|
|
- days :this.days
|
|
|
+ days :this.days,
|
|
|
+ vars: vars
|
|
|
})
|
|
|
.then((data) => {
|
|
|
this.$message.success("提交成功");
|
|
@@ -1508,10 +1509,14 @@ export default {
|
|
|
case '_flow_reback':// 撤回
|
|
|
this.reback()
|
|
|
break
|
|
|
+
|
|
|
default:
|
|
|
this.commit(vars); // 自定义按钮提交
|
|
|
}
|
|
|
},
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
myNotice (taskId, proDefId, title, userName, createDate) {
|
|
|
this.inputForm = {
|
|
|
taskId: '',
|