|
@@ -560,7 +560,9 @@
|
|
|
@on-cancel="handleClose2"
|
|
|
>
|
|
|
<p>查看付款截图</p>
|
|
|
- <img width="100" height="100" :src="paymentScreenshot1" alt="" />
|
|
|
+ <div v-for="item in paymentScreenshot1">
|
|
|
+ <img style="width: 100px; height: 100px" :src="item" alt="" />
|
|
|
+ </div>
|
|
|
</WinseaContentModal>
|
|
|
</div>
|
|
|
<!-- </div> -->
|
|
@@ -1126,7 +1128,7 @@ export default {
|
|
|
} else {
|
|
|
this.paymentImg = true
|
|
|
}
|
|
|
- this.paymentScreenshot1 = row.paymentScreenshot
|
|
|
+ this.paymentScreenshot1 = row.paymentScreenshot.split('$')
|
|
|
},
|
|
|
//审核
|
|
|
audit(item, index, status, status2, reason) {
|