查看
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/discountpackagehandover/discountpackagehandoverInfo.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/discountpackagehandover/discountpackagehandoverInfo.vue
index 916a1e1a5a..a17e670eb9 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/views/discountpackagehandover/discountpackagehandoverInfo.vue
+++ b/anrui-buscenter/anrui-buscenter-ui/src/views/discountpackagehandover/discountpackagehandoverInfo.vue
@@ -124,7 +124,7 @@
交接确认单
-
+
@@ -142,6 +142,7 @@ export default {
viewTitle: '',
tableKey: 0,
index: 0,
+ images_list: [],
formobj: {
sid: '',
contractNo: '',
@@ -166,6 +167,11 @@ export default {
handover(row.sid).then((res) => {
if (res.success) {
this.formobj = res.data
+ if (this.formobj.busFiles.length > 0) {
+ this.formobj.busFiles.forEach((e) => {
+ this.images_list.push(e.filePath)
+ })
+ }
}
})
},
@@ -182,6 +188,7 @@ export default {
busDiscountpackageHandoverListVos: [],
busFiles: []
}
+ this.images_list = []
this.$refs['form_obj'].resetFields()
this.$emit('doback')
}