|
@@ -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: [],
|
|
|
});
|