|
@@ -12,6 +12,7 @@
|
|
|
<el-button type="danger" plain @click="handleReject">{{ t('modules.withdraw.reject') }}</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <!-- 第一行 - 提现订单基本信息 -->
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="6">
|
|
|
<div class="info-item" :style="{ '--label-width': formLabelWidth }">
|
|
@@ -29,82 +30,85 @@
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<div class="info-item" :style="{ '--label-width': formLabelWidth }">
|
|
|
- <span class="label">{{ t('modules.withdraw.receivingBank') }}:</span>
|
|
|
- <span class="value">{{ withdrawDetail.bank || '--' }}</span>
|
|
|
+ <span class="label">{{ t('modules.withdraw.amount') }}:</span>
|
|
|
+ <span class="value">৳{{ withdrawDetail.amount || 0 }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<div class="info-item" :style="{ '--label-width': formLabelWidth }">
|
|
|
- <span class="label">{{ t('modules.withdraw.userName') }}:</span>
|
|
|
- <span class="value">{{ withdrawDetail.userName || '--' }}</span>
|
|
|
+ <span class="label">{{ t('modules.withdraw.currency') }}:</span>
|
|
|
+ <span class="value">{{ getCurrencyText(withdrawDetail.currency) }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+ <!-- 第二行 - 用户信息+余额信息 -->
|
|
|
<el-row :gutter="20" class="sa-m-t-12">
|
|
|
<el-col :span="6">
|
|
|
<div class="info-item" :style="{ '--label-width': formLabelWidth }">
|
|
|
- <span class="label">{{ t('modules.withdraw.accountType') }}:</span>
|
|
|
- <el-tag :type="withdrawDetail.accountType === 1 ? 'primary' : 'success'">
|
|
|
- {{ getAccountTypeTextLocal(withdrawDetail.accountType) }}
|
|
|
- </el-tag>
|
|
|
+ <span class="label">{{ t('modules.withdraw.userName') }}:</span>
|
|
|
+ <span class="value">{{ withdrawDetail.userName || '--' }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<div class="info-item" :style="{ '--label-width': formLabelWidth }">
|
|
|
- <span class="label">{{ t('modules.withdraw.accountName') }}:</span>
|
|
|
- <span class="value">{{ withdrawDetail.bankAccountName || '--' }}</span>
|
|
|
+ <span class="label">{{ t('modules.withdraw.phoneNo') }}:</span>
|
|
|
+ <span class="value">{{ withdrawDetail.userPhone || '--' }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<div class="info-item" :style="{ '--label-width': formLabelWidth }">
|
|
|
- <span class="label">{{ t('modules.withdraw.phoneNo') }}:</span>
|
|
|
- <span class="value">{{ withdrawDetail.userPhone || '--' }}</span>
|
|
|
+ <span class="label">{{ t('modules.withdraw.accountName') }}:</span>
|
|
|
+ <span class="value">{{ withdrawDetail.bankAccountName || '--' }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<div class="info-item" :style="{ '--label-width': formLabelWidth }">
|
|
|
- <span class="label">{{ t('modules.withdraw.channel') }}:</span>
|
|
|
- <span class="value">{{ withdrawDetail.channel || '--' }}</span>
|
|
|
+ <span class="label">{{ t('modules.withdraw.walletBalance') }}:</span>
|
|
|
+ <span class="value">৳{{ withdrawDetail.walletBalance || 0 }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+ <!-- 第三行 - 银行账户信息 -->
|
|
|
<el-row :gutter="20" class="sa-m-t-12">
|
|
|
<el-col :span="6">
|
|
|
<div class="info-item" :style="{ '--label-width': formLabelWidth }">
|
|
|
- <span class="label">{{ t('modules.withdraw.method') }}:</span>
|
|
|
- <span class="value">{{ withdrawDetail.bank || '--' }}</span>
|
|
|
+ <span class="label">{{ t('modules.withdraw.accountType') }}:</span>
|
|
|
+ <el-tag :type="withdrawDetail.accountType === 1 ? 'primary' : 'success'">
|
|
|
+ {{ getAccountTypeTextLocal(withdrawDetail.accountType) }}
|
|
|
+ </el-tag>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<div class="info-item" :style="{ '--label-width': formLabelWidth }">
|
|
|
- <span class="label">{{ t('modules.withdraw.receivingAccount') }}:</span>
|
|
|
- <span class="value">{{ withdrawDetail.bankAccount || '--' }}</span>
|
|
|
+ <span class="label">{{ t('modules.withdraw.earningsBalance') }}:</span>
|
|
|
+ <span class="value">৳{{ withdrawDetail.earningsBalance || 0 }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<div class="info-item" :style="{ '--label-width': formLabelWidth }">
|
|
|
- <span class="label">{{ t('modules.withdraw.walletBalance') }}:</span>
|
|
|
- <span class="value">৳{{ withdrawDetail.walletBalance || 0 }}</span>
|
|
|
+ <span class="label">{{ t('modules.withdraw.receivingBank') }}:</span>
|
|
|
+ <span class="value">{{ withdrawDetail.bank || '--' }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<div class="info-item" :style="{ '--label-width': formLabelWidth }">
|
|
|
- <span class="label">{{ t('modules.withdraw.currency') }}:</span>
|
|
|
- <span class="value">{{ getCurrencyText(withdrawDetail.currency) }}</span>
|
|
|
+ <span class="label">{{ t('modules.withdraw.receivingAccount') }}:</span>
|
|
|
+ <span class="value">{{ withdrawDetail.bankAccount || '--' }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+ <!-- 第四行 - 提现渠道信息 -->
|
|
|
<el-row :gutter="20" class="sa-m-t-12">
|
|
|
<el-col :span="6">
|
|
|
<div class="info-item" :style="{ '--label-width': formLabelWidth }">
|
|
|
- <span class="label">{{ t('modules.withdraw.earningsBalance') }}:</span>
|
|
|
- <span class="value">৳{{ withdrawDetail.earningsBalance || 0 }}</span>
|
|
|
+ <span class="label">{{ t('modules.withdraw.channel') }}:</span>
|
|
|
+ <span class="value">{{ withdrawDetail.channel || '--' }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<div class="info-item" :style="{ '--label-width': formLabelWidth }">
|
|
|
- <span class="label">{{ t('modules.withdraw.amount') }}:</span>
|
|
|
- <span class="value">৳{{ withdrawDetail.amount || 0 }}</span>
|
|
|
+ <span class="label">{{ t('modules.withdraw.method') }}:</span>
|
|
|
+ <span class="value">{{ withdrawDetail.bank || '--' }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|