对接重点认证标准/政策合规性项目审查流程
This commit is contained in:
+8
-1
@@ -49,7 +49,14 @@ export function inboundLiaisonDetail (data) {
|
|||||||
params: data
|
params: data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
// 联络人分配FO详情查询
|
||||||
|
export function queryZchgxxmscTaskDetail (data) {
|
||||||
|
return axios({
|
||||||
|
url: '/api/lawss/activiti/queryZchgxxmscTaskDetail',
|
||||||
|
method: 'get',
|
||||||
|
params: data
|
||||||
|
})
|
||||||
|
}
|
||||||
// 流程保存
|
// 流程保存
|
||||||
export function saveTask (data) {
|
export function saveTask (data) {
|
||||||
return axios({
|
return axios({
|
||||||
|
|||||||
@@ -216,7 +216,7 @@
|
|||||||
saveTaskFirst,
|
saveTaskFirst,
|
||||||
taskDel,
|
taskDel,
|
||||||
changeAssigneeNew,
|
changeAssigneeNew,
|
||||||
inboundLiaisonDetail,
|
queryZchgxxmscTaskDetail,
|
||||||
saveTaskForPub,
|
saveTaskForPub,
|
||||||
} from "api/process";
|
} from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
@@ -659,7 +659,7 @@
|
|||||||
this.openButtonLoading()
|
this.openButtonLoading()
|
||||||
this.completeTask(this.$route.query.taskIds, query)
|
this.completeTask(this.$route.query.taskIds, query)
|
||||||
})
|
})
|
||||||
} else if (this.data.departmentType == 'productPlanning') {//产品规划部提交
|
} else if (this.dataForm.departmentType == 'productPlanning') {//产品规划部提交
|
||||||
this.$refs.productPlanningListRef.submit((row) => {
|
this.$refs.productPlanningListRef.submit((row) => {
|
||||||
const json = Object.assign(this.dataForm);
|
const json = Object.assign(this.dataForm);
|
||||||
json.commentText = this.commentText
|
json.commentText = this.commentText
|
||||||
@@ -706,7 +706,7 @@
|
|||||||
this.openButtonLoading()
|
this.openButtonLoading()
|
||||||
this.completeTask(this.$route.query.taskIds, query)
|
this.completeTask(this.$route.query.taskIds, query)
|
||||||
})
|
})
|
||||||
} else if (this.data.departmentType == 'productPlanning') {//产品规划部驳回
|
} else if (this.dataForm.departmentType == 'productPlanning') {//产品规划部驳回
|
||||||
this.$refs.productPlanningListRef.save((row) => {
|
this.$refs.productPlanningListRef.save((row) => {
|
||||||
const json = Object.assign(this.dataForm);
|
const json = Object.assign(this.dataForm);
|
||||||
json.commentText = this.commentText
|
json.commentText = this.commentText
|
||||||
@@ -863,9 +863,10 @@
|
|||||||
getData() {
|
getData() {
|
||||||
this.dataLoading = true
|
this.dataLoading = true
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
inboundLiaisonDetail({
|
queryZchgxxmscTaskDetail({
|
||||||
taskIds: this.$route.query.taskIds,
|
taskIds: this.$route.query.taskIds,
|
||||||
pId: this.$route.query.prcId
|
pId: this.$route.query.prcId,
|
||||||
|
taskDefinitionKey: this.taskKey
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res) {
|
if (res) {
|
||||||
const processForm = JSON.parse(res.mesg)
|
const processForm = JSON.parse(res.mesg)
|
||||||
@@ -879,6 +880,7 @@
|
|||||||
},
|
},
|
||||||
formProcessing(row) {
|
formProcessing(row) {
|
||||||
this.dataForm = row.form
|
this.dataForm = row.form
|
||||||
|
// this.dataForm.departmentType = 'productPlanning'
|
||||||
this.dataForm = {...this.dataForm}
|
this.dataForm = {...this.dataForm}
|
||||||
if (this.showPersonnel) {//拿到人员信息的数据
|
if (this.showPersonnel) {//拿到人员信息的数据
|
||||||
this.$refs.personnelInformationRef.getData(row.form)
|
this.$refs.personnelInformationRef.getData(row.form)
|
||||||
|
|||||||
Reference in New Issue
Block a user