123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <view class="container" style="margin-bottom:100rpx">
- <view class="card_bj">
- <view class="p1">身份证上传</view>
- <view class="p2">上传身份证头像面</view>
- <image class="cardimg" mode="aspectFit" src="{{imgsrc}}" data-type='card' bindtap="uploadCard"></image>
- </view>
- <view class="card_bj">
- <view class="p1">照片上传</view>
- <view class="p2">上传本人照片呦</view>
- <image class="cardimg" mode="aspectFit" src="{{photo}}" data-type='photo' bindtap="uploadCard"></image>
- </view>
- <form bindsubmit='formSubmit'>
- <view style="display:none">
- <input name="idFront" type="text" value="{{form.idFront}}"></input>
- </view>
- <view style="display:none">
- <input name="idCard" type="text" value="{{form.idCard}}"></input>
- </view>
- <view style="display:none">
- <input name="photoUrl" type="text" value="{{form.photoUrl}}"></input>
- </view>
- <view class="block">
- <view class='left'>姓名</view>
- <view class='right'>
- <input name="name" value="{{form.name}}" placeholder="未填写" placeholder-class="iconfont icon-jianjiaohao1 icon-tubiaozhizuo-1"></input>
- </view>
- </view>
- <view class="block">
- <view class='left'>性别</view>
- <view class='right'>
- <radio-group class="parameter-wrap" bindchange="checkboxChange" name='sex' value="{{form.sex}}">
- <label class="checkbox my-choosebox {{ item.checked?'checkboxbox':''}}" wx:for-index="idx" wx:key="index" wx:for="{{questionList}}">
- <checkbox value="{{item.value}}" checked="{{item.checked}}" />{{item.name}}
- </label>
- </radio-group>
- </view>
- </view>
- <view class="block">
- <view class='left'>年龄</view>
- <view class='right'>
- <input name="age" value="{{form.age}}" placeholder="未填写" placeholder-class="iconfont icon-jianjiaohao1 icon-tubiaozhizuo-1"></input>
- </view>
- </view>
- <view class="block">
- <view class='left'>户籍</view>
- <view class='right'>
- <input name="nativePlace" value="{{form.nativePlace}}" placeholder="未填写" placeholder-class="iconfont icon-jianjiaohao1 icon-tubiaozhizuo-1"></input>
- </view>
- </view>
- <view class="block">
- <view class='left'>民族</view>
- <view class='right'>
- <picker bindchange="nationPicker" range="{{mzArr}}" name='nation' value="{{form.nation}}">
- <view style="text-align:right">
- <view wx:if="{{form.nation}}">{{form.nation}}</view>
- <view wx:else class='placeStyle'>
- <view class="redpoint"></view>
- <view class="placetext">未选择</view>
- <van-icon size="15px" name="arrow" />
- </view>
- </view>
- </picker>
- </view>
- </view>
- <view class="block">
- <view class='left'>生日</view>
- <view class='right'>
- <picker mode='date' bindchange="birthdayPicker" name='birthday' value="{{form.birthday}}">
- <view style="text-align:right">
- <view wx:if="{{form.birthday}}">{{form.birthday}}</view>
- <view wx:else class='placeStyle'>
- <view class="redpoint"></view>
- <view class="placetext">未选择</view>
- <van-icon size="15px" name="arrow" />
- </view>
- </view>
- </picker>
- </view>
- </view>
- <view class="block">
- <view class='left'>星座</view>
- <view class='right'>
- <picker bindchange="constellationPicker" range="{{constellationArr}}" name='constellation' value="{{form.constellation}}">
- <view style="text-align:right">
- <view wx:if="{{constellationLabel}}">{{constellationLabel}}</view>
- <view wx:else class='placeStyle'>
- <view class="redpoint"></view>
- <view class="placetext">未选择</view>
- <van-icon size="15px" name="arrow" />
- </view>
- </view>
- </picker>
- </view>
- </view>
- <view class="btn-area">
- <button form-type="submit" id="sunbmit">
- <span wx:if="{{myInfo&&myInfo.height}}">确认</span>
- <span wx:else>确认,快去完善详细信息吧</span>
- </button>
- </view>
- <!-- <view style="font-size:25rpx;display:flex;margin-left:120rpx">
- <checkbox-group bindchange="change">
- <label class="checkbox">
- <checkbox value="cb" />
- </label>
- </checkbox-group>
- <p bindtap='goxy'>同意并遵守《月合权益购买协议》</p>
- </view> -->
- </form>
- </view>
|