From 78cea9064d50a29f18a1097ae1870a13a5c5009c Mon Sep 17 00:00:00 2001 From: ZhangYong Date: Mon, 19 Jan 2026 17:59:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E9=80=80=E6=AC=BE=E4=BB=A5=E5=8F=8A?= =?UTF-8?q?=E5=A4=9A=E8=AF=AD=E8=A8=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/locales/lang/en.js | 4 ++ src/components/locales/lang/zh-CN.js | 4 ++ .../moneyManage/financialAccount/cashFlow.vue | 77 +++++++++++++++++++++- 3 files changed, 82 insertions(+), 3 deletions(-) diff --git a/src/components/locales/lang/en.js b/src/components/locales/lang/en.js index 55cf245..8cf3183 100644 --- a/src/components/locales/lang/en.js +++ b/src/components/locales/lang/en.js @@ -530,6 +530,10 @@ export default { disable: "Disable", received: "Received", rejected: "Rejected", + refunded: "Refunded", + refundDetail: "Refund Detail", + refundAmount: "Refund Amt", + refundCurrency: "Refund Curr", }, // Common Export Fields common_export: { diff --git a/src/components/locales/lang/zh-CN.js b/src/components/locales/lang/zh-CN.js index c6ecbae..71a1969 100644 --- a/src/components/locales/lang/zh-CN.js +++ b/src/components/locales/lang/zh-CN.js @@ -530,6 +530,10 @@ export default { disable: "禁用", received: "已到账", rejected: "已驳回", + refunded: "已退款", + refundDetail: "退款明细", + refundAmount: "退款金额", + refundCurrency: "退款币种", }, // 通用导出字段组 common_export: { diff --git a/src/views/moneyManage/financialAccount/cashFlow.vue b/src/views/moneyManage/financialAccount/cashFlow.vue index 8c7caeb..583f695 100644 --- a/src/views/moneyManage/financialAccount/cashFlow.vue +++ b/src/views/moneyManage/financialAccount/cashFlow.vue @@ -34,7 +34,7 @@ const payPlatformOptions = ref([...paytypeList]) const statusOptions = [ { label: t('common_list.received'), value: 4 }, - { label: t('common_list.rejected'), value: 6 } + { label: t('common_list.refunded'), value: 6 } ] // 地区树 @@ -448,11 +448,40 @@ onMounted(async () => { - + @@ -630,7 +659,49 @@ onMounted(async () => { + + +