|
@@ -135,6 +135,9 @@ export default {
|
|
|
props: {
|
|
|
// 表格数据和表格部分属性的对象
|
|
|
// eslint-disable-next-line vue/require-default-prop
|
|
|
+ request_formTitle: {
|
|
|
+ type: String,
|
|
|
+ },
|
|
|
list: {
|
|
|
type: Object,
|
|
|
},
|
|
@@ -146,6 +149,9 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
created() {
|
|
|
+ if (this.adminResourceId) {
|
|
|
+ this.manyReassignment = true;
|
|
|
+ }
|
|
|
console.log(this.list);
|
|
|
this.getNextPath(this.list.resourceId, 1);
|
|
|
this.getMetirialType();
|
|
@@ -172,6 +178,7 @@ export default {
|
|
|
function success(data) { }
|
|
|
},
|
|
|
async nextWorks(lists, list) {
|
|
|
+ // lists.title = this.request_formTitle
|
|
|
let listss = {
|
|
|
userId: this.nextDealManList, //人员id
|
|
|
taskId: this.list.taskId, //表单标识
|
|
@@ -219,6 +226,7 @@ export default {
|
|
|
userId: JSON.parse(window.sessionStorage.userInfo).loginNo, //人员id
|
|
|
taskId: this.list.taskId, //表单标识
|
|
|
// procinstid: this.list.processId,
|
|
|
+ title: this.request_formTitle,//代办标题
|
|
|
taskName: this.clicknextName, //流程节点
|
|
|
userCode: JSON.parse(window.sessionStorage.userInfo).loginNo, //人员code
|
|
|
content: this.textarea, //意见内容
|
|
@@ -227,6 +235,7 @@ export default {
|
|
|
userId: JSON.parse(window.sessionStorage.userInfo).loginNo, //人员id
|
|
|
taskId: this.list.taskId, //表单标识
|
|
|
// procinstid: this.list.processId,
|
|
|
+ title: this.request_formTitle,//代办标题
|
|
|
taskName: this.clicknextName, //流程节点
|
|
|
userCode: JSON.parse(window.sessionStorage.userInfo).loginNo, //人员code
|
|
|
content: this.textarea, //意见内容
|
|
@@ -319,6 +328,7 @@ export default {
|
|
|
},
|
|
|
async nextWork(list) {
|
|
|
console.log(list);
|
|
|
+ // list.title = this.request_formTitle
|
|
|
//e:yes||no,list:传入数组,title:结束标签,res:驳回标签,id:工单更新id
|
|
|
let _this = this;
|
|
|
let copylist = list
|