You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.7 KiB
Plaintext
64 lines
2.7 KiB
Plaintext
|
2 years ago
|
<include src="../../../include.wxml" />
|
||
|
|
<form bindsubmit="formSubmit">
|
||
|
|
<view class="wx-text-list mt10 mb10 wx-border-tb">
|
||
|
|
<view wx:if="{{updateTag == 0}}" class='wx-list-li'>
|
||
|
|
<!-- <view class='f18 mw-label'>
|
||
|
|
修改昵称
|
||
|
|
</view> -->
|
||
|
|
<view class="section flex-left">
|
||
|
|
<input type="text" class='f18 input-pl' placeholder-class="pce" placeholder="请填写" name="userName" value='{{userName}}' />
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view wx:elif="{{updateTag == 1}}" class='wx-list-li'>
|
||
|
|
<!-- <view class='f18 mw-label'>
|
||
|
|
身高(cm)
|
||
|
|
</view> -->
|
||
|
|
<view class="section flex-left">
|
||
|
|
<input type="number" confirm-type="done" class='f18 input-pl' placeholder-class="pce" placeholder="请填写" name="height" value='{{height}}' />
|
||
|
|
</view>
|
||
|
|
<view class='f18 c8'>cm</view>
|
||
|
|
</view>
|
||
|
|
<view wx:elif="{{updateTag == 2}}" class='wx-list-li'>
|
||
|
|
<view class="section flex-left">
|
||
|
|
<input type="number" confirm-type="done" class='f18 input-pl' placeholder-class="pce" placeholder="请填写" name="weight" value='{{weight}}' />
|
||
|
|
</view>
|
||
|
|
<view class='f18 c8'>kg</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view wx:elif="{{updateTag == 4}}">
|
||
|
|
<textarea placeholder='请填写现住址' name="liveAddress" value="{{liveAddress}}" auto-height placeholder-style="color:#ccc" style='border:0;' maxlength='40'>
|
||
|
|
</textarea>
|
||
|
|
</view>
|
||
|
|
<view wx:elif="{{updateTag == 5}}" class='wx-list-li'>
|
||
|
|
<view class="section flex-left">
|
||
|
|
<input type="text" confirm-type="done" class='f18 input-pl' placeholder-class="pce" placeholder="请填写" name="emergencyName" value='{{emergencyName}}' />
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view wx:elif="{{updateTag == 6}}" class='wx-list-li'>
|
||
|
|
<view class="section flex-left">
|
||
|
|
<input type="text" confirm-type="done" class='f18 input-pl' placeholder-class="pce" placeholder="请填写" name="emergencyRelation" value='{{emergencyRelation}}' />
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view wx:elif="{{updateTag == 7}}" class='wx-list-li'>
|
||
|
|
<view class="section flex-left">
|
||
|
|
<input type="number" confirm-type="done" class='f18 input-pl' placeholder-class="pce" placeholder="请填写" name="emergencyTel" value='{{emergencyTel}}' />
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view class="onlyBtn mt40">
|
||
|
|
<button type='primary' formType="submit">确定</button>
|
||
|
|
</view>
|
||
|
|
<!-- <view class="ui-btn-wrap piece">
|
||
|
|
<view class="ui-row-flex">
|
||
|
|
<view class="ui-col">
|
||
|
|
<button class="ui-btn-lg ui-btn-primary" hover-class='btn-primary-hover' formType="submit" >
|
||
|
|
确定
|
||
|
|
</button>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view> -->
|
||
|
|
|
||
|
|
</form>
|