From 74cecdc6d1fd56a346a0e79a6b463c9caa755dac Mon Sep 17 00:00:00 2001 From: woody Date: Fri, 11 Jul 2025 10:17:28 +0800 Subject: [PATCH] =?UTF-8?q?feat(onlinePayDetail):=20=E5=9C=A8=E7=BA=BF?= =?UTF-8?q?=E6=94=AF=E4=BB=98=E6=98=8E=E7=BB=86=E6=B7=BB=E5=8A=A0=E8=B4=A6?= =?UTF-8?q?=E6=88=B7=E9=87=91=E9=A2=9D=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../financial/onlinePayDetails/index.vue | 426 ++++++++++-------- 1 file changed, 240 insertions(+), 186 deletions(-) diff --git a/src/views/financial/onlinePayDetails/index.vue b/src/views/financial/onlinePayDetails/index.vue index e294a73..cbbca37 100644 --- a/src/views/financial/onlinePayDetails/index.vue +++ b/src/views/financial/onlinePayDetails/index.vue @@ -6,228 +6,280 @@ --> @@ -251,16 +305,16 @@ import { userCountryList } from '@/api/user' export default { name: 'Bzpz', components: { - topBar, + topBar }, filters: { - isAgree(val) { + isAgree(val) { if (!val) { - return '允许'; + return '允许' } else { - return '禁止'; + return '禁止' } - }, + } }, data() { return { @@ -269,7 +323,7 @@ export default { // 查询参数 queryParams: { pageNum: 1, - pageSize: 50, + pageSize: 50 }, total: 0, dialogVisible: false, @@ -280,26 +334,26 @@ export default { peyTypeList: [ { value: '1', - label: '支付宝', + label: '支付宝' }, { value: '2', - label: '微信', + label: '微信' }, { value: '3', - label: '银行卡', - }, + label: '银行卡' + } ], tradeTypeList: [], moren: 'onlinePayDetails', topList: [ { name: '在线支付明细', - path: 'onlinePayDetails', - }, + path: 'onlinePayDetails' + } ], - countryList: [], + countryList: [] } }, mounted() { @@ -329,7 +383,7 @@ export default { // this.select.startDate = val[0] // this.select.endDate = val[1] }, - reset(){ + reset() { this.select = {} this.getDataList() }, @@ -359,10 +413,10 @@ export default { handleSelectionChange(val) {}, /** 导出按钮操作 */ handleExport() { - this.$confirm( '是否确认导出所有数据项?', '警告', { + this.$confirm('是否确认导出所有数据项?', '警告', { confirmButtonText: '确定', cancelButtonText: '取消', - type: 'warning', + type: 'warning' }).then((_) => { this.download( '/pay/manage/online-payment/export', @@ -378,8 +432,8 @@ export default { return 'success-row' } return '' - }, - }, + } + } }