|
|
@ -3,26 +3,34 @@ |
|
|
<view class="head"> |
|
|
<view class="head"> |
|
|
<view> |
|
|
<view> |
|
|
<uni-group mode="card"> |
|
|
<uni-group mode="card"> |
|
|
<uni-icons type="paperplane-filled" size="20"></uni-icons><text class="textstyle">小贴士:</text><br/> |
|
|
<uni-icons custom-prefix="iconfont" type="icon-dengpao" :color="iconColor" size="20"></uni-icons><text class="textstyle text-white">小贴士:</text><br/> |
|
|
<text class="textstyle">1.为了您的资金安全及合规,体现将通过第三方支付提供安全通道实现。</text><br/> |
|
|
<text class="textstyle">1. 为了您的资金安全及合规,体现将通过第三方支付提供安全通道实现。</text><br/> |
|
|
<text class="textstyle">2.应银行监管要求,每人每月限额10万元,最多绑定4个收款账户。</text><br/> |
|
|
<text class="textstyle">2. 应银行监管要求,每人每月限额10万元,最多绑定4个收款账户。</text><br/> |
|
|
<text class="textstyle">3.一旦提现成功,设置的收款账户不可更改。</text> |
|
|
<text class="textstyle">3. 一旦提现成功,设置的收款账户不可更改。</text> |
|
|
</uni-group> |
|
|
</uni-group> |
|
|
</view> |
|
|
</view> |
|
|
<view> |
|
|
<view> |
|
|
<uni-group mode="card"> |
|
|
<uni-group mode="card"> |
|
|
<uni-forms validate-trigger='blur' :modelValue="accountInfo" label-position="top" labelWidth="80" ref="form"> |
|
|
<uni-forms validate-trigger='blur' :modelValue="accountInfo" label-position="top" labelWidth="80" ref="form"> |
|
|
<uni-forms-item label="真实姓名" required name="name"> |
|
|
<uni-forms-item label="真实姓名" required name="name"> |
|
|
<uni-easyinput v-model="accountInfo.name" placeholder="请输入真实姓名" /> |
|
|
<uni-easyinput v-model="accountInfo.name" placeholder="请输入真实姓名" |
|
|
|
|
|
:clearable="false" |
|
|
|
|
|
:inputBorder="false"/> |
|
|
</uni-forms-item> |
|
|
</uni-forms-item> |
|
|
<uni-forms-item label="身份证号" required name="idNo"> |
|
|
<uni-forms-item label="身份证号" required name="idNo"> |
|
|
<uni-easyinput v-model="accountInfo.idNo" placeholder="请输入身份证号" /> |
|
|
<uni-easyinput v-model="accountInfo.idNo" placeholder="请输入身份证号" |
|
|
|
|
|
:clearable="false" |
|
|
|
|
|
:inputBorder="false" /> |
|
|
</uni-forms-item> |
|
|
</uni-forms-item> |
|
|
<uni-forms-item label="支付宝账号" required name="accountNo"> |
|
|
<uni-forms-item label="支付宝账号" required name="accountNo"> |
|
|
<uni-easyinput v-model="accountInfo.accountNo" placeholder="请输入支付宝账号" /> |
|
|
<uni-easyinput v-model="accountInfo.accountNo" placeholder="请输入支付宝账号" |
|
|
|
|
|
:clearable="false" |
|
|
|
|
|
:inputBorder="false" /> |
|
|
</uni-forms-item> |
|
|
</uni-forms-item> |
|
|
<uni-forms-item label="预留电话" required name="phone"> |
|
|
<uni-forms-item label="预留电话" required name="phone"> |
|
|
<uni-easyinput v-model="accountInfo.phone" placeholder="请输入预留电话" /> |
|
|
<uni-easyinput v-model="accountInfo.phone" placeholder="请输入预留电话" |
|
|
|
|
|
:clearable="false" |
|
|
|
|
|
:inputBorder="false" /> |
|
|
</uni-forms-item> |
|
|
</uni-forms-item> |
|
|
<!-- <uni-forms-item label="请选择" required> |
|
|
<!-- <uni-forms-item label="请选择" required> |
|
|
|
|
|
|
|
|
@ -52,6 +60,7 @@ |
|
|
export default { |
|
|
export default { |
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { |
|
|
|
|
|
iconColor: '#0b6375', |
|
|
userInfo: {}, |
|
|
userInfo: {}, |
|
|
existFlag: false, |
|
|
existFlag: false, |
|
|
upToFourFlag: false, |
|
|
upToFourFlag: false, |
|
|
@ -261,27 +270,57 @@ |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
<style lang="less"> |
|
|
<style lang="scss" scoped> |
|
|
.confirmBtn{ |
|
|
.container { |
|
|
width: 710rpx; |
|
|
width: 670rpx; |
|
|
height: 60rpx; |
|
|
height: 100vh; |
|
|
background-color: royalblue; |
|
|
margin: 0 auto; |
|
|
color: #ffffff; |
|
|
position: relative; |
|
|
font-size: 30rpx; |
|
|
} |
|
|
line-height: 62rpx; |
|
|
|
|
|
border-radius: 17rpx; |
|
|
.head { |
|
|
margin-top:100rpx; |
|
|
|
|
|
} |
|
|
::v-deep .uni-group--card { |
|
|
.foot{ |
|
|
margin: 0 0 40rpx 0 !important; |
|
|
margin-top:100rpx; |
|
|
background: $uni-bg-base-color; |
|
|
} |
|
|
} |
|
|
.textstyle{ |
|
|
|
|
|
font-size: 25rpx; |
|
|
::v-deep .uni-tag { |
|
|
} |
|
|
border-width: 2rpx !important; |
|
|
.specialText{ |
|
|
} |
|
|
color: blue; |
|
|
|
|
|
// display: inline-block; |
|
|
::v-deep .uni-forms-item__label { |
|
|
font-size: 25rpx; |
|
|
color: $uni-white; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
::v-deep input { |
|
|
|
|
|
background: $uni-bg-base-color !important; |
|
|
|
|
|
border: 0 !important; |
|
|
|
|
|
color: $uni-white !important; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.foot { |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.confirmBtn{ |
|
|
|
|
|
color: $uni-btn-text-color; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.textstyle{ |
|
|
|
|
|
font-size: 26rpx; |
|
|
|
|
|
color: $uni-secondary-color; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.text-white { |
|
|
|
|
|
color: $uni-white !important; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.specialText{ |
|
|
|
|
|
color: $uni-primary; |
|
|
|
|
|
font-size: 26rpx; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
</style> |
|
|
</style> |
|
|
|