Browse Source

修改提币记录的联系客服需跳转

master
liaoxinyu 10 months ago
parent
commit
dabffc408b
  1. 2
      pages/assets/draw1.vue
  2. 16
      pages/assets/records.vue

2
pages/assets/draw1.vue

@ -30,7 +30,7 @@
<template slot="description">
<view style="margin: 10px 0px;width: 540rpx;">
<v-input @input="addressnum" v-model="form.address" class="bg-form-panel-3 color-light w-max fn-13 rounded-xs" :placeholder="$t('assets.b9')"></v-input>
<el-select v-model="form.addressType" @change="enteraddressType" style="margin-top: 10px;width: 100%;" class="addressType" v-if="coin=='USDT'">
<el-select v-model="form.addressType" @change="enteraddressType" style="margin-top: 10px;width: 100%;" class="addressType" v-if="coin=='USDT'" :placeholder="$t('common.select')">
<el-option v-for="(item, index) in network" :key="index" :label="item.name" :value="item.id">
<span>{{ item.name }}</span>
</el-option>

16
pages/assets/records.vue

@ -49,7 +49,9 @@
</view>
<view class="p-l-md" v-if="item.remark" style="color:red;word-wrap: break-word;width:680rpx;">
<view>{{$t('common.rejection')}}{{item.remark}}</view>
<view style="color: #4381F6;" v-if="!remarktext(item.updated_at)">{{$t('common.c20')}}</view>
<view style="display: flex;">
<view class="updated" v-if="!remarktext(item.updated_at)" @click="onservice">{{$t('common.c20')}}</view>
</view>
</view>
</tr>
<!-- <tr v-if="loadMore">
@ -118,6 +120,9 @@ import formData from "@/utils/class/date";
this.depositHistory();
}
},
onservice(){
this._router.push("/pages/oncs/onservice");
},
cancelWithdraw(item) {
Wallet.cancelWithdraw({ withdraw_id: item.id }).then(res => {
this.$toast(this.$t('otc.d4'));
@ -183,4 +188,13 @@ import formData from "@/utils/class/date";
font-size: 14px;
color: #D31027;
}
.updated{
color: #fff;
display: flex;
padding: 5px;
cursor: pointer;
border-radius: 5px;
background-color: #0089ff;
text-align: center;
}
</style>

Loading…
Cancel
Save