Browse Source

提币记录新增撤销和拒绝理由

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

3
src/i18n/en.json

@ -35,7 +35,8 @@
"c6": "Time of issue",
"c7": "White paper address",
"c8": "Official website address",
"c9": "brief introduction"
"c9": "brief introduction",
"rejection":"Reason for rejection"
},
"common": {
"a3": "Purchase records",

3
src/i18n/tw.json

@ -35,7 +35,8 @@
"c6": "發行時間",
"c7": "白皮書地址",
"c8": "官網地址",
"c9": "簡介"
"c9": "簡介",
"rejection":"拒絕理由"
},
"common": {
"a3": "申購記錄",

10
src/views/wallet/funding.vue

@ -84,7 +84,8 @@
<th>{{$t('wallet.num')}}</th>
<th>{{$t('wallet.handlingFee1')}}</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>
</thead>
<tbody>
@ -103,9 +104,12 @@
<!-- <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==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>
</td> -->
</td>
<td style="word-wrap: break-word;width: 200px;">
<div style="width: 200px;" v-if="item.remark">{{item.remark}}</div>
</td>
</tr>
</tbody>
</table>

Loading…
Cancel
Save