1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <view class="content{{suffix}}" style="overflow:{{modalStatus?'hidden':'visible'}}">
- <view class="header">
- <view>个人信息填写</view>
- <view>仅用于本业务办理,绝不泄露或他用</view>
- <image src="../../../icon/public/customer_header_e.png"></image>
- </view>
- <view class="personBox">
- <view class="personDetail">
- <view>
- <text>身份证信息</text>
- <text bindtap="openModal">拍摄要求</text>
- <image src="../../../icon/home/new_customer_info.png"></image>
- </view>
- <view>
- <view class="number">
- <view>1</view>
- <view>2</view>
- </view>
- <view class="smallCard">
- <view bindtap="{{firstImg?'previewImg':''}}" data-id="first">
- 身份证正面照
- <image src="{{firstImg?firstImg:'../../../icon/home/customer_idcard_front.png'}}"></image>
- </view>
- <view bindtap="{{secondImg?'previewImg':''}}" data-id="second">
- 身份证反面照
- <image src="{{secondImg?secondImg:'../../../icon/home/customer_idcard_back.png'}}"></image>
- </view>
- </view>
- <view >
- <image src="../../../icon/public/customer_camera.png" bindtap="goCamera" data-type="front"></image>
- <image src="../../../icon/public/customer_camera.png" bindtap="goCamera" data-type="back"></image>
- </view>
- </view>
- </view>
- </view>
- <view class="pBox">
- <view s-for="ui" class="{{index % 4 ==3 ? 'pItemMargin':''}}">
- <view class="pItem" bindtap="{{index==2&&!idCardStatus?'openCheckingModal':''}}">
- <view>{{item.t}}</view>
- <input s-if="{{index==3||index==4}}" value="{{item.v}}" placeholder="{{item.p}}" style="color:#666666" data-index="{{index}}" bindinput="inputAction" />
- <text s-if="{{index!=3&&index!=4}}" style="color:{{index==0||index==1?'#aaaaaa':'#666666'}}" data-index="{{index}}">{{item.v}}</text>
- </view>
- <view class="line" style="display:{{index % 4 ==3 ? 'none':'block'}}">
- <view></view>
- </view>
- </view>
- <view class="pItem" style="margin-bottom:24rpx;" bindtap="goBank">
- <view>银行卡号</view>
- <view>
- {{current.bank_code?card:'未添加'}}
- <image src="../../../icon/public/arrow_right.png"></image>
- </view>
- </view>
- <view class="pItem" s-if="{{current.shebao_card}}">
- <view>社保号</view>
- <view>
- {{current.shebao_card}}
- </view>
- </view>
- <view class="line">
- <view></view>
- </view>
- <view class="pItem" s-if="{{current.fund_card}}">
- <view>公积金号</view>
- <view>
- {{current.fund_card}}
- </view>
- </view>
- </view>
- <view class="save{{suffix}}"><view bindtap="btnAction">保存</view></view>
- <camera-modal id="camera-modal"></camera-modal>
- </view>
- <view class="checking modal" style="display:{{modalStatus?'block':'none'}}">
- <view catchtap="closeCheckingModal" class="tapClose"></view>
- <view class="detail">
- <view style="margin-bottom:32rpx">为保护你的信息安全,需验证手机号才能查看完整信息</view>
- <view style="margin-bottom:20rpx"><text style="color:#666666">验证手机</text><text style="color:#FF5E5E">{{phone}}</text></view>
- <view class="input" style="margin-bottom:46rpx">
- <input placeholder="验证码" bindinput="inputAction" data-type="checkingNum" value="{{code}}"/>
- <text bindtap="{{countDown?'':'getCode'}}">{{countDown?'还剩'+time+'秒':'获取验证码'}}</text>
- </view>
- <view class="btn">
- <view bindtap="sendCode">确定</view>
- </view>
- </view>
- </view>
|