Browse Source

消耗退款待审核状态

zhangyong/feature-20260113094820-现金重构
ZhangYong 1 month ago
parent
commit
bed36e29f9
  1. 1
      src/components/locales/lang/en.js
  2. 1
      src/components/locales/lang/zh-CN.js
  3. 3
      src/views/consume/gold/coinConsumeDetail.vue

1
src/components/locales/lang/en.js

@ -633,6 +633,7 @@ export default {
refundModel: "Method", refundModel: "Method",
refundModelAll: "Full", refundModelAll: "Full",
refundModelPart: "Partial", refundModelPart: "Partial",
refundStatusPending: "Pending",
refundGoldCoin: "Refund Coins", refundGoldCoin: "Refund Coins",
refundCurrency: "Refund Curr", refundCurrency: "Refund Curr",
refundCurrencyPlaceholder: "Select currency", refundCurrencyPlaceholder: "Select currency",

1
src/components/locales/lang/zh-CN.js

@ -440,6 +440,7 @@ export default {
refundModel: "退款方式", refundModel: "退款方式",
refundModelAll: "全部退款", refundModelAll: "全部退款",
refundModelPart: "部分退款", refundModelPart: "部分退款",
refundStatusPending: "待审核",
refundCurrency: "退款币种", refundCurrency: "退款币种",
refundGoldCoin: "退款金币总数", refundGoldCoin: "退款金币总数",
refundAmount: "退款金额", refundAmount: "退款金额",

3
src/views/consume/gold/coinConsumeDetail.vue

@ -718,7 +718,8 @@ const getMarket = async function () {
> >
<div class="popover-content"> <div class="popover-content">
<div class="popover-title">{{ scope.row.refundModel == 0 ? $t('common_list.refundModelAll') : $t('common_list.refundModelPart') }}</div>
<div class="popover-title" v-if="scope.row.refundModel">{{ scope.row.refundModel == 0 ? $t('common_list.refundModelAll') : $t('common_list.refundModelPart') }}</div>
<div class="popover-title" v-else>{{ $t('common_list.refundStatusPending') }}</div>
<div class="popover-item"> <div class="popover-item">
<span class="label">{{ $t('common.totalGoldCoin') }}</span> <span class="label">{{ $t('common.totalGoldCoin') }}</span>
<span class="value">{{ scope.row.refundSumGold }}</span> <span class="value">{{ scope.row.refundSumGold }}</span>

Loading…
Cancel
Save