diff --git a/src/views/Transfers.vue b/src/views/Transfers.vue index 8c65209..8a4b18d 100644 --- a/src/views/Transfers.vue +++ b/src/views/Transfers.vue @@ -93,21 +93,14 @@ style="width: 100%" > - - - @@ -116,14 +109,20 @@ + + + - + @@ -237,15 +244,6 @@ - - - - -
- 转账凭证 -
-
- @@ -466,11 +464,6 @@ const pagination = ref({ total: 0 }); -const proofDialog = ref({ - visible: false, - imageUrl: '' -}); - const detailDialog = ref({ visible: false, transfer: null @@ -760,11 +753,6 @@ const confirmForceChange = async () => { } } -const viewProof = (imageUrl) => { - proofDialog.value.imageUrl = imageUrl - proofDialog.value.visible = true -} - const viewDetails = (transfer) => { detailDialog.value.transfer = transfer detailDialog.value.visible = true @@ -1072,6 +1060,11 @@ onMounted(async () => { color: #67c23a; } +.amount-red { + font-weight: bold; + color: #ff4949; +} + .pagination-container { margin-top: 20px; text-align: right; @@ -1118,6 +1111,13 @@ onMounted(async () => { text-decoration: underline; } +.avatar { + width: 100px; + height: 100px; + display: block; + object-fit: cover; +} + .pay-detail-text { white-space: pre-line; word-break: break-word;