账户绑定增加用途说明

This commit is contained in:
donqi 2022-07-22 21:24:18 +08:00
parent e80100199f
commit ca67a097a1
2 changed files with 14 additions and 34 deletions

View File

@ -5,7 +5,7 @@
<view class="cu-dialog"> <view class="cu-dialog">
<view class="padding-xl"> <view class="padding-xl">
<view class="cuIcon-pay big-icon padding-tb text-main-color"></view> <view class="cuIcon-pay big-icon padding-tb text-main-color"></view>
<view>您还未完成账户绑定</view> <view>您还未完成账户绑定完成账户绑定后才能接收家政服务收益</view>
</view> </view>
<view class="cu-bar bg-white solid-top"> <view class="cu-bar bg-white solid-top">
<view class="action margin-0 flex-sub text-black" data-modal="showTakeCertifiedModal" <view class="action margin-0 flex-sub text-black" data-modal="showTakeCertifiedModal"

View File

@ -1,60 +1,40 @@
<template> <template>
<view> <view v-if="curUserInfo && curUserInfo.status != -1">
<!-- 顶部操作条 --> <!-- 顶部操作条 -->
<cu-custom :bgColor="'bg-main-color'" :isBack="true"> <cu-custom :bgColor="'bg-main-color'" :isBack="true">
<block slot="backText">返回</block> <block slot="backText">返回</block>
<block slot="content">帐号绑定/修改</block> <!-- <block slot="content"></block> -->
</cu-custom> </cu-custom>
<view class="margin-lr-sm margin-tb-lg shadow-warp"> <view class="margin-lr-sm margin-tb-lg shadow-warp">
<view class="bg-gray flex justify-start align-center text-xl padding-lr padding-top-xs"> <view class="bg-gray flex justify-start align-center text-xl padding-lr padding-top-xs">
<view class="padding-lr padding-tb-sm" :class="curAccountType === '0' ? 'curTab' : ''" data-type="0" @click="changAccountType">支付宝</view> <view class="padding-lr padding-tb-sm" :class="curAccountType === '1' ? 'curTab' : ''" data-type="1" @click="changAccountType">银行</view>
<view class="padding-lr padding-tb-sm" :class="curAccountType === '1' ? 'curTab' : ''" data-type="1" @click="changAccountType">银行卡</view>
</view> </view>
<!-- 支付宝 --> <view v-if="curAccountType === '1'" class="bg-white padding text-lg">
<view v-if="curAccountType == '0'" class="bg-white padding text-lg">
<view> <view>
<view class="margin-bottom-sm">开户人姓名</view> <view class="margin-bottom-sm">姓名</view>
<input type="digit" placeholder="请输入开户人姓名" placeholder-style="color:#989898" v-model="formData.name">
</view>
<view class="margin-top">
<view class="margin-bottom-sm">支付宝账户</view>
<input type="digit" placeholder="请输入支付宝账户" placeholder-style="color:#989898" v-model="formData.account">
</view>
</view>
<!-- 银行卡 -->
<view v-else-if="curAccountType === '1'" class="bg-white padding text-lg">
<view>
<view class="margin-bottom-sm">开户人姓名</view>
<input type="text" placeholder="请输入开户人姓名" placeholder-style="color:#989898" v-model="formData.name"> <input type="text" placeholder="请输入开户人姓名" placeholder-style="color:#989898" v-model="formData.name">
</view> </view>
<view class="margin-top"> <view class="margin-top">
<view class="margin-bottom-sm">身份证号</view> <view class="margin-bottom-sm">证件号码</view>
<input type="text" placeholder="请输入身份证号" placeholder-style="color:#989898" v-model="formData.certId"> <input type="text" placeholder="请输入证件号码" placeholder-style="color:#989898" v-model="formData.certId">
</view> </view>
<view class="margin-top"> <view class="margin-top">
<view class="margin-bottom-sm">手机号</view> <view class="margin-bottom-sm">手机号</view>
<input type="text" placeholder="请输入手机号" placeholder-style="color:#989898" v-model="formData.phone"> <input type="text" placeholder="请输入手机号" placeholder-style="color:#989898" v-model="formData.phone">
</view> </view>
<view class="margin-top"> <view class="margin-top">
<view class="margin-bottom-sm">银行卡</view> <view class="margin-bottom-sm"></view>
<input type="text" placeholder="请输入银行卡号" placeholder-style="color:#989898" v-model="formData.bankNum"> <input type="text" placeholder="请输入" placeholder-style="color:#989898" v-model="formData.bankNum">
</view> </view>
<!-- <view class="margin-top">
<view class="margin-bottom-sm">银行卡号开户城市</view>
<view class="flex">
<my-uni-combox class="flex-sub margin-right-xs" :candidates="provinceList"
:showField="'areaName'" placeholder="选择省份" v-model="formData.provinceObj"
@input="chooseRegion($event)"></my-uni-combox>
<my-uni-combox class="flex-sub margin-right-xs" :candidates="cityList"
:showField="'areaName'" placeholder="选择城市" v-model="formData.cityObj"></my-uni-combox>
</view>
</view> -->
</view> </view>
</view> </view>
<!-- 操作按钮 --> <!-- 操作按钮 -->
<view class="margin-lr"> <view class="margin-lr">
<button class="cu-btn lg bg-main-color long-btn shadow-blur" @click="submit">提交</button> <button class="cu-btn lg bg-main-color long-btn shadow-blur" @click="submit">提交</button>
</view> </view>
<view class="text-red padding">
工盟互联小程序承诺此账户只用于接收家政服务收益
</view>
</view> </view>
</template> </template>
@ -67,7 +47,7 @@
}, },
data() { data() {
return { return {
curAccountType: '0', curAccountType: '1',
provinceList: [], provinceList: [],
cityList: [], cityList: [],
formData: { formData: {