update 标准入库/变更、标准征求意见、法规采购流程参数调整

This commit is contained in:
赵霄
2024-01-10 09:53:52 +08:00
parent b16f1cd3a3
commit e2646e7be5
3 changed files with 7 additions and 5 deletions
@@ -450,7 +450,8 @@ export default {
this.loading = true
const params = {
taskId: this.$route.query.taskId,
processInstanceId: this.$route.query.processInstanceId
processInstanceId: this.$route.query.processInstanceId,
projectId: this.$route.query.projectId
}
queryConsultationProcessDetail(params).then(res => {
if (res.success) {
@@ -170,8 +170,8 @@ export default {
*/
initProcessData () {
this.loading = true
const { processInstanceId, taskId } = this.$route.query
queryStandardECProcessData({ processInstanceId, taskId }).then(async res => {
const { processInstanceId, taskId, projectId } = this.$route.query
queryStandardECProcessData({ processInstanceId, taskId, projectId }).then(async res => {
if (res.success) {
const { result = {} } = res
this.processInfo = Object.assign({}, result.basicProcessInfoDTO)
@@ -190,7 +190,8 @@ export default {
const params = {
processInstanceId: this.$route.query.processInstanceId,
draftId: this.$route.query.draftId,
taskId: this.$route.query.taskId
taskId: this.$route.query.taskId,
projectId: this.$route.query.projectId
}
queryProcurementProcessInfo(params).then(res => {
if (res.success) {
@@ -344,4 +345,4 @@ export default {
.export-btn {
margin: 0 0.32rem;
}
</style>
</style>