Browse Source

新增提币记录中的撤销按钮

master
liaoxinyu 2 years ago
parent
commit
ccaeb747ca
  1. 1
      src/views/wallet/exchange-assets.vue
  2. 8
      src/views/wallet/funding.vue

1
src/views/wallet/exchange-assets.vue

@ -411,6 +411,7 @@
import InnerTransfer from "../components/inner-transfer.vue";
import Wallet from "@/api/wallet";
import Profile from "@/api/profile";
import Member from "@/api/member";
import ClipboardJS from "clipboard";
import getCode from "./getCode";
import vueQr from "vue-qr";

8
src/views/wallet/funding.vue

@ -84,7 +84,7 @@
<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>
</tr>
</thead>
<tbody>
@ -103,9 +103,9 @@
<!-- <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">
<button v-if="item.status==0" class="btn btn-danger btn-sm" @click="cancelWithdraw(item)">{{$t('contract.c2')}}</button>
</td> -->
<td class="text-right">
<button v-if="item.status==0" class="btn btn-danger btn-sm" style="color: black;" @click="cancelWithdraw(item)">{{$t('contract.c2')}}</button>
</td>
</tr>
</tbody>
</table>

Loading…
Cancel
Save