Bläddra i källkod

feat: 提款 账户类型筛选

叶静 3 veckor sedan
förälder
incheckning
2ae043fc3b

+ 6 - 6
src/app/shop/admin/finance/withdraw/index.vue

@@ -158,14 +158,14 @@ const searchFields = computed(() => ({
     placeholder: t('modules.withdraw.enterOrderNo'),
     width: 180,
   },
-  channel: {
+  accountType: {
     type: 'select',
-    label: t('modules.withdraw.channel'),
-    placeholder: t('modules.withdraw.selectChannel'),
+    label: t('modules.withdraw.accountType'),
+    placeholder: t('form.pleaseSelect') + t('modules.withdraw.accountType'),
     width: 120,
     options: [
-      { label: 'TKPAY', value: 1 },
-      { label: '3QPAY', value: 2 },
+      { label: t('modules.finance.walletBalance'), value: 1 },
+      { label: t('modules.finance.accountEarnings'), value: 2 },
     ],
   },
   timeType: {
@@ -191,7 +191,7 @@ const defaultSearchValues = reactive({
   userName: '',
   userPhone: '',
   orderNo: '',
-  channel: '',
+  accountType: '',
   timeType: 1, // 默认下单时间
   date_range: [],
 });

+ 2 - 2
src/locales/en-US/index.json

@@ -726,8 +726,8 @@
       "title": "Finance",
       "commissionManagement": "Commission Management",
       "financialReport": "Financial Report",
-      "walletBalance": "Wallet Balance",
-      "accountEarnings": "Account Earnings",
+      "walletBalance": "Wallet Account",
+      "accountEarnings": "Earnings Account",
       "unknownOperation": "Unknown Operation",
       "unsettled": "Unsettled",
       "settled": "Settled",

+ 2 - 2
src/locales/zh-CN/index.json

@@ -919,8 +919,8 @@
       "title": "财务",
       "commissionManagement": "佣金管理",
       "financialReport": "财务报表",
-      "walletBalance": "钱包余额",
-      "accountEarnings": "账户收益",
+      "walletBalance": "钱包账户",
+      "accountEarnings": "收益账户",
       "unknownOperation": "未知操作",
       "unsettled": "未结算",
       "settled": "已结算",