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 () => { - + + - {{ row.status === 4 ? t('common_list.received') : t('common_list.rejected') }} + {{ row.status === 4 ? t('common_list.received') : t('common_list.refunded') }} + + + {{ t('common_list.refundDetail') }} + + {{ t('common_list.refundAmount') }}: + {{ row.refundAmount || '-' }} + + + {{ t('common_list.refundCurrency') }}: + {{ row.refundCurrency || '-' }} + + + + + + + @@ -630,7 +659,49 @@ onMounted(async () => { + + +