企标制修订计划管控驳回无法进入页面
This commit is contained in:
@@ -1674,7 +1674,7 @@ export default {
|
|||||||
prcType: row.prcType
|
prcType: row.prcType
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}else if(row.taskInfo === '企标制修订计划整改') {
|
}else if(row.taskInfo === '重新起草') {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: 'qbzxdjhgkStep1',
|
name: 'qbzxdjhgkStep1',
|
||||||
query: {
|
query: {
|
||||||
|
|||||||
@@ -786,7 +786,7 @@ export default {
|
|||||||
_this: this
|
_this: this
|
||||||
}, res => {
|
}, res => {
|
||||||
this.workData = res.data.records;
|
this.workData = res.data.records;
|
||||||
this.total = res.data.total;
|
this.totalNo = res.data.total;
|
||||||
}, e => {
|
}, e => {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -275,6 +275,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
submitFlag: '',
|
||||||
toggleType: '5',
|
toggleType: '5',
|
||||||
comFlag: 1,
|
comFlag: 1,
|
||||||
active: "1",
|
active: "1",
|
||||||
@@ -338,7 +339,8 @@ export default {
|
|||||||
if(this.taskId){
|
if(this.taskId){
|
||||||
this.approvalFlag = true
|
this.approvalFlag = true
|
||||||
this.processTable()
|
this.processTable()
|
||||||
this.getData();
|
//被驳回时调用
|
||||||
|
this.getHistoryData()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -355,16 +357,6 @@ export default {
|
|||||||
}, e => {
|
}, e => {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getDatas(){
|
|
||||||
queryTaskFirst({
|
|
||||||
bpnId: this.$route.query.bpnId
|
|
||||||
}).then(res => {
|
|
||||||
let mes = JSON.parse(res.mes)
|
|
||||||
this.roleForm = mes.roleForm
|
|
||||||
this.qbfsForm = mes.qbfsForm
|
|
||||||
this.commentText = mes.commentText
|
|
||||||
});
|
|
||||||
},
|
|
||||||
getData() {
|
getData() {
|
||||||
this.formLoading = true
|
this.formLoading = true
|
||||||
this.showFlag = false
|
this.showFlag = false
|
||||||
@@ -375,11 +367,29 @@ export default {
|
|||||||
this.getFormFieldList(mes);
|
this.getFormFieldList(mes);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
getHistoryData() {
|
||||||
|
this.submitFlag = '重新起草'
|
||||||
|
this.showFlag = false
|
||||||
|
this.formLoading = true
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
inboundLiaisonDetail({
|
||||||
|
taskIds: this.$route.query.taskIds,
|
||||||
|
pId: this.$route.query.prcId,
|
||||||
|
}).then(res => {
|
||||||
|
if (res) {
|
||||||
|
const processForm = JSON.parse(res.mesg)
|
||||||
|
this.getFormFieldList(processForm)
|
||||||
|
}
|
||||||
|
}).catch(e => {
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
/**
|
/**
|
||||||
* @description: 动态表单读取
|
* @description: 动态表单读取
|
||||||
*/
|
*/
|
||||||
getFormFieldList(item) {
|
getFormFieldList(item) {
|
||||||
let type = item.qbfsForm.type
|
console.log(item);
|
||||||
|
let type = item.type || item.qbfsForm.type
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
switch (type){
|
switch (type){
|
||||||
case '1':
|
case '1':
|
||||||
@@ -398,18 +408,18 @@ export default {
|
|||||||
this.comName = "establish"
|
this.comName = "establish"
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
this.qbfsForm = item.qbfsForm;
|
this.qbfsForm = item.qbfsForm || item;
|
||||||
this.formLoading = false;
|
this.formLoading = false;
|
||||||
this.roleForm.dockUser = item.roleForm.dockUser;
|
this.roleForm.dockUser = item.dockUser || item.roleForm.dockUser;
|
||||||
this.roleForm.dockUserName = item.roleForm.dockUserName;
|
this.roleForm.dockUserName = item.dockUserName || item.roleForm.dockUserName;
|
||||||
this.roleForm.countersigner = item.roleForm.countersigner;
|
this.roleForm.countersigner = item.countersigner || item.roleForm.countersigner;
|
||||||
this.roleForm.countersignerName = item.roleForm.countersignerName;
|
this.roleForm.countersignerName = item.countersignerName || item.roleForm.countersignerName;
|
||||||
this.roleForm.approver = item.roleForm.approver;
|
this.roleForm.approver = item.approver ||item.roleForm.approver;
|
||||||
this.roleForm.approverName = item.roleForm.approverName;
|
this.roleForm.approverName = item.approverName || item.roleForm.approverName;
|
||||||
this.roleForm.engineer = item.roleForm.engineer;
|
this.roleForm.engineer = item.engineer || item.roleForm.engineer;
|
||||||
this.roleForm.engineerName = item.roleForm.engineerName;
|
this.roleForm.engineerName = item.engineerName || item.roleForm.engineerName;
|
||||||
this.roleForm.examine = item.roleForm.examine;
|
this.roleForm.examine = item.examine || item.roleForm.examine;
|
||||||
this.roleForm.examineName = item.roleForm.examineName;
|
this.roleForm.examineName = item.examineName || item.roleForm.examineName;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleTabs(name) {
|
handleTabs(name) {
|
||||||
|
|||||||
@@ -2184,7 +2184,7 @@ export default {
|
|||||||
prcType: row.prcType
|
prcType: row.prcType
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}else if(row.taskInfo === '企标制修订计划整改') {
|
}else if(row.taskInfo === '重新起草') {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: 'qbzxdjhgkStep1',
|
name: 'qbzxdjhgkStep1',
|
||||||
query:{
|
query:{
|
||||||
|
|||||||
Reference in New Issue
Block a user