diff --git a/src/views/financialManagement/arriveAndInvoicing/modules/ArriveStageModule.vue b/src/views/financialManagement/arriveAndInvoicing/modules/ArriveStageModule.vue
index 070e429..b32189e 100644
--- a/src/views/financialManagement/arriveAndInvoicing/modules/ArriveStageModule.vue
+++ b/src/views/financialManagement/arriveAndInvoicing/modules/ArriveStageModule.vue
@@ -197,7 +197,6 @@ export default {
this.$refs.previewImg.title = '缴费凭证'
this.$refs.previewImg.imgId = imgId
this.$refs.previewImg.visible = true
- console.log()
}
}
}
diff --git a/src/views/financialManagement/arriveAndInvoicing/modules/AuditProofModule.vue b/src/views/financialManagement/arriveAndInvoicing/modules/AuditProofModule.vue
index 8ca36ec..1c4cb04 100644
--- a/src/views/financialManagement/arriveAndInvoicing/modules/AuditProofModule.vue
+++ b/src/views/financialManagement/arriveAndInvoicing/modules/AuditProofModule.vue
@@ -36,7 +36,7 @@
-
![]()
+
@@ -80,6 +80,9 @@
+
+
+
@@ -90,10 +93,11 @@ import Vue from 'vue'
import { USER_INFO } from '../../../../store/mutation-types'
import { getLastProofInfo, getStanderMemberLastProofInfo, getCertificateLastProofInfo } from '../../../../api/incomePaymentsApi'
import PreviewFile from '../../../../components/jero/PreviewFile.vue'
+import PreviewImgModal from '@/components/PreviewImgModal'
export default {
name: 'AuditProofModule',
- components: { PreviewFile },
+ components: { PreviewFile, PreviewImgModal },
data() {
return {
title: '来款信息',
@@ -266,6 +270,14 @@ export default {
*/
proofSrc(imgId) {
return `${ window._CONFIG['domianURL'] }/sys/common/download/${ imgId }`
+ },
+ /**
+ * 预览缴费凭证
+ */
+ previewImg(imgId) {
+ this.$refs.previewImg.title = '缴费凭证'
+ this.$refs.previewImg.imgId = imgId
+ this.$refs.previewImg.visible = true
}
}
}
@@ -312,11 +324,11 @@ h3.title::before {
.proof-img {
&-item {
- width: calc(100% - 6rem);
-
+
img {
max-width: 100%;
max-height: 200px;
+ cursor: pointer;
}
}
}