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