| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <view class='extra'>
- <text>个人头像</text>
- <view class="avatar-content">
- <image wx:if="{{avatar}}" class='avatar' src='{{avatar}}' bindtap='changeImg'></image>
- <image class='arrow' src='{{imgServerUrl}}/images/happyjob/rightwjt.png'></image>
- </view>
- <!-- <image class='default' wx:else src='{{imgServerUrl}}/images/happyjob/photoslice.png'></image> -->
- </view>
- <view class='list'>
- <text>姓名</text>
- <view class="list-content">
- <input value="{{ name }}" placeholder="请填写" maxlength='10' placeholder-class="tips" bindinput="changeName" />
- </view>
- </view>
- <view class='list'>
- <text>性别</text>
- <view class="list-content">
- <picker bindchange="bindSexChange" value="{{sex_index}}" range="{{sex}}">
- <view class="picker">
- <view class="picker-view" wx:if='{{sex[sex_index]}}'>{{sex[sex_index]}}</view>
- <view class="tips" wx:else>请选择</view>
- <image class='arrow' src='{{imgServerUrl}}/images/happyjob/rightwjt.png'></image>
- </view>
- </picker>
- </view>
- </view>
- <!-- <view class='list'>
- <text>手机号码</text>
- <view class="list-content">
- <input value="{{ iphone }}" placeholder="请填写" maxlength='11' placeholder-class="tips" bindinput="changeIphone" />
- </view>
- </view> -->
- <view class='list'>
- <text>出生年份</text>
- <view class="list-content">
- <picker mode="date" fields="year" value="{{year}}" end="{{endDate}}" start="1900" bindchange="changeYear">
- <view class="picker">
- <view class="picker-view" wx:if='{{year}}'>{{year}}</view>
- <view class="tips" wx:else>请选择</view>
- <image class='arrow' src='{{imgServerUrl}}/images/happyjob/rightwjt.png'></image>
- </view>
- </picker>
- </view>
- </view>
- <view class='list'>
- <text>最高学历</text>
- <view class="list-content">
- <picker bindchange="bindPickerChange" value="{{eduIndex}}" range="{{eduList}}">
- <view class="picker">
- <view class="picker-view" wx:if='{{eduList[eduIndex]}}'>{{eduList[eduIndex]}}</view>
- <view class="tips" wx:else>请选择</view>
- <image class='arrow' src='{{imgServerUrl}}/images/happyjob/rightwjt.png'></image>
- </view>
- </picker>
- </view>
- </view>
- <!-- <view class='list'>
- <text>微信账号</text>
- <view class="list-content">
- <input value="{{ wechatNumber }}" placeholder="请填写" placeholder-class="tips" bindinput="changeWechatNumber" />
- </view>
- </view> -->
- <form bindsubmit="submit" report-submit='true' class="btn-group fixed-footer">
- <button class="distance selfBtn {{disabled?'':'opacity_5'}}" form-type="submit">保存</button>
- </form>
|