From c865d7849368bec0808eb186dfa79948f1c2cf95 Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期日, 17 八月 2025 10:32:36 +0800
Subject: [PATCH] 修改查询参数
---
src/views/wel/components/TodolistLeft.vue | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/src/views/wel/components/TodolistLeft.vue b/src/views/wel/components/TodolistLeft.vue
index cebf9ff..67bb578 100644
--- a/src/views/wel/components/TodolistLeft.vue
+++ b/src/views/wel/components/TodolistLeft.vue
@@ -42,6 +42,7 @@
},
data() {
return {
+ fileType: '',
showContentId: '',
attForm: {
att: '',
@@ -68,11 +69,14 @@
prop: 'att',
type: 'upload',
multiple: true,
- action: '/api/blade-mdm/flow/mgr/ncupload',
+ action: '/api/blade-mdm/flow/replace/upload',
span: 24,
data: {
- processInstanceId: this.row.processInstanceId,
- fileType: 'program',
+ drawingNo: this.drawingNo,
+ processNo: this.processNo,
+ processEdition: this.processEdition,
+ processInstanceId: this.replaceDataId,
+ fileType: this.fileType,
},
}
]
@@ -130,6 +134,8 @@
'attForm.fileType': {
handler(newVal) {
this.attOption.column[1].data.fileType = newVal;
+ this.fileType = newVal;
+ console.log(this.fileType)
},
immediate: true,
},
--
Gitblit v1.9.3