12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <view>
- <view class='setting-info'>
- <form bindsubmit="formSubmit" class='form'>
- <view class='nickname-box'>
- <text class='setting-title'>昵称</text>
- <view class='user-action'>
- <input name='nickname' class='nickname' type='text' placeholder='{{user.wechatName}}' placeholder-class='placeholderStyle' focus='{{ true }}' value='{{user.wechatName}}' bindblur='saveNickName'>
- </input>
- </view>
- <view class='edit-img'>
- <image src='../../../static/image/edit.png' class='icon'></image>
- </view>
- </view>
- <view class='sex-box'>
- <view class='setting-title'>性别</view>
- <radio-group name='radioGroup1' class="radio-group" bindchange="optionAction">
- <label class="radio" wx:for="{{ sexs }}" wx:key="{{ index }}">
- <text class='sex-title'>{{ item.sex }}</text>
- <radio value="{{ item.value }}" checked="{{ item.checked }}" color='#fff' />
- </label>
- </radio-group>
- </view>
- <view class='birthday-box'>
- <picker name='picker' mode="date" value="{{ date }}" start="1900-01-01" end="2020-09-01" bindchange="bindDateChange">
- <view class="picker">
- <text class='setting-title'>生日</text>
- <text>{{ date }}</text>
- </view>
- </picker>
- <view class='edit-img'>
- <image src='../../../static/image/edit.png' class='icon'></image>
- </view>
- </view>
- <view class='occupation-box'>
- <text class='setting-title'>职业</text>
- <radio-group name='radioGroup2' class="radio-group" bindchange="optionSetting">
- <label class="radio" wx:for="{{ occupations }}" wx:key="{{ index }}">
- <text class='sex-title'>{{ item.value }}</text>
- <radio value="{{ item.value }}" checked="{{ item.checked }}" color='#fff' />
- </label>
- </radio-group>
- </view>
- <view class='school-box'>
- <text class='setting-title'>学校</text>
- <input name='address' class='address' type='text' placeholder='{{user.schoolName}}' value='{{ user.schoolName }}' bindblur='saveAddress'></input>
- <view class='edit-image'>
- <image src='../../../static/image/edit.png' class='icon'></image>
- </view>
- </view>
- <view class="submit-btn">
- <button class='btn' formType="submit">保存</button>
- </view>
- </form>
- </view>
- </view>
|