Browse Source

新增撤销按钮

master
liaoxinyu 3 days ago
parent
commit
a57bf2626c
  1. 3
      src/i18n/en.json
  2. 3
      src/i18n/tw.json
  3. 10
      src/views/wallet/funding.vue

3
src/i18n/en.json

@ -36,7 +36,8 @@
"c7": "White paper address", "c7": "White paper address",
"c8": "Official website address", "c8": "Official website address",
"c9": "brief introduction", "c9": "brief introduction",
"c10": "Minimum recharge amount: {num}. Recharge less than the minimum amount will not be posted and cannot be returned." "c10": "Minimum recharge amount: {num}. Recharge less than the minimum amount will not be posted and cannot be returned.",
"rejection":"Reason for rejection"
}, },
"common": { "common": {
"million": "million", "million": "million",

3
src/i18n/tw.json

@ -36,7 +36,8 @@
"c7": "白皮書地址", "c7": "白皮書地址",
"c8": "官網地址", "c8": "官網地址",
"c9": "簡介", "c9": "簡介",
"c10": "最小充值金額:{num},小於最小金額的充值將不會上帳且無法返回。" "c10": "最小充值金額:{num},小於最小金額的充值將不會上帳且無法返回。",
"rejection":"拒絕理由"
}, },
"common": { "common": {
"million": "幾百萬", "million": "幾百萬",

10
src/views/wallet/funding.vue

@ -84,7 +84,8 @@
<th>{{$t('wallet.num')}}</th> <th>{{$t('wallet.num')}}</th>
<th>{{$t('wallet.handlingFee1')}}</th> <th>{{$t('wallet.handlingFee1')}}</th>
<th class="text-right">{{$t('wallet.status')}}</th> <th class="text-right">{{$t('wallet.status')}}</th>
<!-- <th class="text-right">{{$t('contract.c0')}}</th> --> <th class="text-right">{{$t('contract.c0')}}</th>
<th>{{$t('nav.rejection')}}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -103,9 +104,12 @@
<!-- <td v-if="item.status==0" class="text-right">{{$t('wallet.processing')}}</td> <!-- <td v-if="item.status==0" class="text-right">{{$t('wallet.processing')}}</td>
<td v-if="item.status==1" class="text-right">{{$t('wallet.success')}}</td> <td v-if="item.status==1" class="text-right">{{$t('wallet.success')}}</td>
<td v-if="item.status==2" class="text-right">{{$t('wallet.error')}}</td> --> <td v-if="item.status==2" class="text-right">{{$t('wallet.error')}}</td> -->
<!-- <td class="text-right"> <td class="text-right">
<button v-if="item.status==0" class="btn btn-danger btn-sm" @click="cancelWithdraw(item)">{{$t('contract.c2')}}</button> <button v-if="item.status==0" class="btn btn-danger btn-sm" @click="cancelWithdraw(item)">{{$t('contract.c2')}}</button>
</td> --> </td>
<td style="word-wrap: break-word;width: 200px;">
<div style="width: 200px;" v-if="item.remark">{{item.remark}}</div>
</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>

Loading…
Cancel
Save