no message
This commit is contained in:
@@ -112,12 +112,11 @@ export default {
|
|||||||
if (result && result.bizcode === 100) {
|
if (result && result.bizcode === 100) {
|
||||||
const data = result.data;
|
const data = result.data;
|
||||||
this.userInfo = result.data || {};
|
this.userInfo = result.data || {};
|
||||||
|
|
||||||
this.form = {
|
this.form = {
|
||||||
name:this.userInfo.name,
|
name:this.userInfo.name,
|
||||||
certNo:this.userInfo.certNo,
|
certNo:this.userInfo.certNo,
|
||||||
certType:this.userInfo.certType,
|
certType:this.userInfo.certType != null ? this.userInfo.certType : 1,
|
||||||
certName: this.userInfo.certType == 1?'居民身份证' : '护照',
|
certName: this.userInfo.certType == 2? '护照' :'居民身份证',
|
||||||
certFimg:this.userInfo.certFimg,
|
certFimg:this.userInfo.certFimg,
|
||||||
certBimg:this.userInfo.certBimg,
|
certBimg:this.userInfo.certBimg,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="rwa_withdrawal">
|
<view class="rwa_withdrawal">
|
||||||
<Header leftTitle="提现" left-path-type="navigateTo" left-path="/pages/rwa_package/rwa/rwa" rightTitle="记录"
|
<Header leftTitle="行权" left-path-type="navigateTo" left-path="/pages/rwa_package/rwa/rwa" rightTitle="记录"
|
||||||
rightPath="/pages/rwa_package/rwa_withdrawal_log/rwa_withdrawal_log?back=withdrawal" rightPathType="navigateTo" />
|
rightPath="/pages/rwa_package/rwa_withdrawal_log/rwa_withdrawal_log?back=withdrawal" rightPathType="navigateTo" />
|
||||||
<view class="rwa_withdrawal_content">
|
<view class="rwa_withdrawal_content">
|
||||||
<view class="_content">
|
<view class="_content">
|
||||||
@@ -9,16 +9,16 @@
|
|||||||
<view>{{ categotyObj.curAmount || 0 }}</view>
|
<view>{{ categotyObj.curAmount || 0 }}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="_content_item">
|
<view class="_content_item">
|
||||||
<view class="_content_item_title">提现金额</view>
|
<view class="_content_item_title">行权金额</view>
|
||||||
<up-input placeholder="请输入提现金额" border="surround" v-model="form.amount" :customStyle="inputCss"></up-input>
|
<up-input placeholder="请输入行权金额" border="surround" v-model="form.amount" :customStyle="inputCss"></up-input>
|
||||||
<view class="_content_item_msg">当前可提现余额 {{ categotyObj.curAmount || 0 }} {{ categotyObj.name || 'USDT' }}
|
<view class="_content_item_msg">当前可行权余额 {{ categotyObj.curAmount || 0 }} {{ categotyObj.name || 'USDT' }}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="_content_item" @click="accountShowCheck(true)">
|
<view class="_content_item" @click="accountShowCheck(true)">
|
||||||
<view class="_content_item_title">提现账户</view>
|
<view class="_content_item_title">行权账户</view>
|
||||||
<view class="_content_item_account">
|
<view class="_content_item_account">
|
||||||
<view v-if="accountName">{{ accountName }}</view>
|
<view v-if="accountName">{{ accountName }}</view>
|
||||||
<view v-else style="color: #30313363;">请选择提现账户</view>
|
<view v-else style="color: #30313363;">请选择行权账户</view>
|
||||||
<up-image src="/static/common/right.png" width="20" height="20" bgColor="#f1f6ff00" />
|
<up-image src="/static/common/right.png" width="20" height="20" bgColor="#f1f6ff00" />
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -97,14 +97,14 @@ export default {
|
|||||||
if (!params.amount) {
|
if (!params.amount) {
|
||||||
this.$refs.uToastRef.show({
|
this.$refs.uToastRef.show({
|
||||||
type: 'error',
|
type: 'error',
|
||||||
message: "请输入提现金额",
|
message: "请输入行权金额",
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!params.acctId) {
|
if (!params.acctId) {
|
||||||
this.$refs.uToastRef.show({
|
this.$refs.uToastRef.show({
|
||||||
type: 'error',
|
type: 'error',
|
||||||
message: "请选择提现账户",
|
message: "请选择行权账户",
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="rwa_withdrawal_log">
|
<view class="rwa_withdrawal_log">
|
||||||
<Header leftTitle="提现记录" left-path-type="navigateTo" :leftPath="leftPath" />
|
<Header leftTitle="行权记录" left-path-type="navigateTo" :leftPath="leftPath" />
|
||||||
<view class="_log_content">
|
<view class="_log_content">
|
||||||
<view class="_log_content_title">
|
<view class="_log_content_title">
|
||||||
<view>提现账户邮箱/时间</view>
|
<view>行权账户邮箱/时间</view>
|
||||||
<view>金额/状态</view>
|
<view>金额/状态</view>
|
||||||
</view>
|
</view>
|
||||||
<scroll-view scroll-y="true" @scrolltolower="loadMore" style="height:calc(100vh - 300rpx)">
|
<scroll-view scroll-y="true" @scrolltolower="loadMore" style="height:calc(100vh - 300rpx)">
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
<view v-else class="not_order_warp">
|
<view v-else class="not_order_warp">
|
||||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/kzt.png" width="100" height="100"
|
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/kzt.png" width="100" height="100"
|
||||||
bgColor="#f1f6ff00"></up-image>
|
bgColor="#f1f6ff00"></up-image>
|
||||||
<view class="not_order_msg_warp">暂无提现数据~</view>
|
<view class="not_order_msg_warp">暂无行权数据~</view>
|
||||||
</view>
|
</view>
|
||||||
<view v-if="loading" style="text-align: center;">加载中...</view>
|
<view v-if="loading" style="text-align: center;">加载中...</view>
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
|
|||||||
+1
-1
@@ -266,7 +266,7 @@ export const BALANCE_TYPE = [
|
|||||||
export const CERT_OPTION = [
|
export const CERT_OPTION = [
|
||||||
{
|
{
|
||||||
key: 1,
|
key: 1,
|
||||||
name: "居民身份证"
|
value: "居民身份证"
|
||||||
}
|
}
|
||||||
// , {
|
// , {
|
||||||
// key: 2,
|
// key: 2,
|
||||||
|
|||||||
Reference in New Issue
Block a user