| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <view class='group'>
- <view class='extra'>
- <image wx:if="{{avatar}}" class='avatar' src='{{avatar}}' bindtap='changeImg'></image>
- <image class='default' wx:else src='{{imgServerUrl}}/images/happyjob/photoslice.png'></image>
- </view>
- <text>靓照,一份好工作的开始</text>
- </view>
- <view class='list'>
- <text>姓名</text>
- <view >
- <input value="{{ name }}" placeholder="请输入姓名" maxlength='10' bindchange="changeName" />
- </view>
- </view>
- <view class='list'>
- <text>性别</text>
- <view>
- <picker bindchange="bindSexChange" value="{{sex_index}}" range="{{sex}}">
- {{sex[sex_index]}}
- </picker>
- </view>
- </view>
- <view class='list'>
- <text>手机号码</text>
- <view>
- <input value="{{ iphone }}" placeholder="请输入手机号" maxlength='11' bindchange="changeIphone" />
- </view>
- </view>
- <view class='list'>
- <text>出生年份</text>
- <view>
- <picker mode="date" fields="year" value="{{year}}" end="{{endDate}}" start="1900" bindchange="changeYear">
- {{year}}
- </picker>
- </view>
- </view>
- <view class='list'>
- <text>最高学历</text>
- <view>
- <picker bindchange="bindPickerChange" value="{{eduIndex}}" range="{{eduList}}">
- {{eduList[eduIndex]}}
- </picker>
- </view>
- </view>
- <form bindsubmit="submit" report-submit='true' class="btn-group fixed-footer">
- <button class="distance selfBtn" form-type="submit">保存</button>
- </form>
|