no message

This commit is contained in:
2025-09-08 12:52:42 +08:00
parent d3202d2a3b
commit e12623d607
4 changed files with 14 additions and 15 deletions
@@ -112,12 +112,11 @@ export default {
if (result && result.bizcode === 100) {
const data = result.data;
this.userInfo = result.data || {};
this.form = {
name:this.userInfo.name,
certNo:this.userInfo.certNo,
certType:this.userInfo.certType,
certName: this.userInfo.certType == 1?'居民身份证' : '护照',
certType:this.userInfo.certType != null ? this.userInfo.certType : 1,
certName: this.userInfo.certType == 2? '护照' :'居民身份证',
certFimg:this.userInfo.certFimg,
certBimg:this.userInfo.certBimg,
}
@@ -1,6 +1,6 @@
<template>
<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" />
<view class="rwa_withdrawal_content">
<view class="_content">
@@ -9,16 +9,16 @@
<view>{{ categotyObj.curAmount || 0 }}</view>
</view>
<view class="_content_item">
<view class="_content_item_title">提现金额</view>
<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_title">行权金额</view>
<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>
</view>
<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 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" />
</view>
</view>
@@ -97,14 +97,14 @@ export default {
if (!params.amount) {
this.$refs.uToastRef.show({
type: 'error',
message: "请输入提现金额",
message: "请输入行权金额",
});
return;
}
if (!params.acctId) {
this.$refs.uToastRef.show({
type: 'error',
message: "请选择提现账户",
message: "请选择行权账户",
});
return;
}
@@ -1,9 +1,9 @@
<template>
<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_title">
<view>提现账户邮箱/时间</view>
<view>行权账户邮箱/时间</view>
<view>金额/状态</view>
</view>
<scroll-view scroll-y="true" @scrolltolower="loadMore" style="height:calc(100vh - 300rpx)">
@@ -28,7 +28,7 @@
<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"
bgColor="#f1f6ff00"></up-image>
<view class="not_order_msg_warp">暂无提现数据~</view>
<view class="not_order_msg_warp">暂无行权数据~</view>
</view>
<view v-if="loading" style="text-align: center;">加载中...</view>
</scroll-view>
+1 -1
View File
@@ -266,7 +266,7 @@ export const BALANCE_TYPE = [
export const CERT_OPTION = [
{
key: 1,
name: "居民身份证"
value: "居民身份证"
}
// , {
// key: 2,