From 4f2c67e2fa0757e8c153453461b2c2ff4ed8a8ca Mon Sep 17 00:00:00 2001
From: yunuo970428 <405378304@qq.com>
Date: Wed, 28 Feb 2024 13:44:39 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E6=A1=88=E4=BB=B6=E4=B8=8A?=
=?UTF-8?q?=E8=AF=89=E7=AE=A1=E7=90=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/views/caseappeal/caseappealAdd.vue | 19 ++++++++++++++++++-
.../src/views/caseappeal/caseappealInfo.vue | 14 ++++++++++++++
.../workFlow/shangsuFlow/caseappealDaiBan.vue | 16 +++++++++++++++-
.../workFlow/shangsuFlow/caseappealEdit.vue | 13 +++++++++++--
.../workFlow/shangsuFlow/caseappealYiBan.vue | 16 +++++++++++++++-
5 files changed, 73 insertions(+), 5 deletions(-)
diff --git a/anrui-riskcenter-ui/src/views/caseappeal/caseappealAdd.vue b/anrui-riskcenter-ui/src/views/caseappeal/caseappealAdd.vue
index 8b288e7b66..1edf12aa44 100644
--- a/anrui-riskcenter-ui/src/views/caseappeal/caseappealAdd.vue
+++ b/anrui-riskcenter-ui/src/views/caseappeal/caseappealAdd.vue
@@ -128,7 +128,7 @@
判决资料
-
+
车辆信息
@@ -190,6 +190,7 @@ export default {
submitdisabled: false,
tableKey: 0,
index: 0,
+ image_list: [],
formobj: {
appealDueDate: '',
arrearsTotal: '',
@@ -249,6 +250,13 @@ export default {
req.init({ sid: sid, userSid: window.sessionStorage.getItem('userSid'), orgPath: window.sessionStorage.getItem('defaultOrgPath') }).then((res) => {
if (res.success) {
this.formobj = res.data
+ if (this.formobj.pjclFiles.length > 0) {
+ const aa = []
+ this.formobj.pjclFiles.forEach((e) => {
+ aa.push(e.url)
+ })
+ this.image_list = aa
+ }
}
})
},
@@ -260,6 +268,14 @@ export default {
req.fetchBySid(row.sid).then((res) => {
if (res.success) {
this.formobj = res.data
+ this.formobj.instanceId = res.data.procInstSid
+ if (this.formobj.pjclFiles.length > 0) {
+ const aa = []
+ this.formobj.pjclFiles.forEach((e) => {
+ aa.push(e.url)
+ })
+ this.image_list = aa
+ }
}
})
},
@@ -346,6 +362,7 @@ export default {
useOrgSid: '',
ysclFiles: []
}
+ this.image_list = []
this.submitdisabled = false
this.$emit('doback')
}
diff --git a/anrui-riskcenter-ui/src/views/caseappeal/caseappealInfo.vue b/anrui-riskcenter-ui/src/views/caseappeal/caseappealInfo.vue
index a656edb4f5..3d761fd807 100644
--- a/anrui-riskcenter-ui/src/views/caseappeal/caseappealInfo.vue
+++ b/anrui-riskcenter-ui/src/views/caseappeal/caseappealInfo.vue
@@ -242,6 +242,20 @@ export default {
req.fetchBySid(row.sid).then((res) => {
if (res.success) {
this.formobj = res.data
+ if (this.formobj.pjclFiles.length > 0) {
+ const aa = []
+ this.formobj.pjclFiles.forEach((e) => {
+ aa.push(e.url)
+ })
+ this.formobj.pjclFiles = aa
+ }
+ if (this.formobj.ysclFiles.length > 0) {
+ const aa = []
+ this.formobj.ysclFiles.forEach((e) => {
+ aa.push(e.url)
+ })
+ this.formobj.ysclFiles = aa
+ }
}
})
},
diff --git a/anrui-riskcenter-ui/src/views/workFlow/shangsuFlow/caseappealDaiBan.vue b/anrui-riskcenter-ui/src/views/workFlow/shangsuFlow/caseappealDaiBan.vue
index 667fcf7f43..7dffb61203 100644
--- a/anrui-riskcenter-ui/src/views/workFlow/shangsuFlow/caseappealDaiBan.vue
+++ b/anrui-riskcenter-ui/src/views/workFlow/shangsuFlow/caseappealDaiBan.vue
@@ -335,7 +335,7 @@ export default {
params: {
// 告诉父级页面,子页面的弹框高度。
code: 2,
- data: 400 + 'px'
+ data: 500 + 'px'
}
}, '*')
},
@@ -348,6 +348,20 @@ export default {
req.fetchBySid(sid).then((res) => {
if (res.success) {
this.formobj = res.data
+ if (this.formobj.pjclFiles.length > 0) {
+ const aa = []
+ this.formobj.pjclFiles.forEach((e) => {
+ aa.push(e.url)
+ })
+ this.formobj.pjclFiles = aa
+ }
+ if (this.formobj.ysclFiles.length > 0) {
+ const aa = []
+ this.formobj.ysclFiles.forEach((e) => {
+ aa.push(e.url)
+ })
+ this.formobj.ysclFiles = aa
+ }
}
})
selectStaffListss().then((res) => {
diff --git a/anrui-riskcenter-ui/src/views/workFlow/shangsuFlow/caseappealEdit.vue b/anrui-riskcenter-ui/src/views/workFlow/shangsuFlow/caseappealEdit.vue
index 6b993aa529..fbba81d110 100644
--- a/anrui-riskcenter-ui/src/views/workFlow/shangsuFlow/caseappealEdit.vue
+++ b/anrui-riskcenter-ui/src/views/workFlow/shangsuFlow/caseappealEdit.vue
@@ -127,7 +127,7 @@
判决资料
-
+
车辆信息
@@ -189,6 +189,7 @@ export default {
submitdisabled: false,
tableKey: 0,
index: 0,
+ image_list: [],
formobj: {
appealDueDate: '',
arrearsTotal: '',
@@ -252,7 +253,7 @@ export default {
params: {
// 告诉父级页面,子页面的弹框高度。
code: 2,
- data: 400 + 'px'
+ data: 500 + 'px'
}
}, '*')
},
@@ -265,6 +266,14 @@ export default {
req.fetchBySid(sid).then((res) => {
if (res.success) {
this.formobj = res.data
+ this.formobj.instanceId = res.data.procInstSid
+ if (this.formobj.pjclFiles.length > 0) {
+ const aa = []
+ this.formobj.pjclFiles.forEach((e) => {
+ aa.push(e.url)
+ })
+ this.image_list = aa
+ }
}
})
},
diff --git a/anrui-riskcenter-ui/src/views/workFlow/shangsuFlow/caseappealYiBan.vue b/anrui-riskcenter-ui/src/views/workFlow/shangsuFlow/caseappealYiBan.vue
index f593c43412..32d741d8e8 100644
--- a/anrui-riskcenter-ui/src/views/workFlow/shangsuFlow/caseappealYiBan.vue
+++ b/anrui-riskcenter-ui/src/views/workFlow/shangsuFlow/caseappealYiBan.vue
@@ -264,7 +264,7 @@ export default {
params: {
// 告诉父级页面,子页面的弹框高度。
code: 2,
- data: 400 + 'px'
+ data: 500 + 'px'
}
}, '*')
},
@@ -277,6 +277,20 @@ export default {
req.fetchBySid(sid).then((res) => {
if (res.success) {
this.formobj = res.data
+ if (this.formobj.pjclFiles.length > 0) {
+ const aa = []
+ this.formobj.pjclFiles.forEach((e) => {
+ aa.push(e.url)
+ })
+ this.formobj.pjclFiles = aa
+ }
+ if (this.formobj.ysclFiles.length > 0) {
+ const aa = []
+ this.formobj.ysclFiles.forEach((e) => {
+ aa.push(e.url)
+ })
+ this.formobj.ysclFiles = aa
+ }
}
})
},