You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.7 KiB
43 lines
1.7 KiB
<!--pages/user/myInfo/index.wxml-->
|
|
<view class="container">
|
|
<mp-cells ext-class="page_bd">
|
|
<mp-cell
|
|
bindtap="onTapItem" data-type="userIcon"
|
|
title="头像"
|
|
link="true"
|
|
ext-class="cell-item">
|
|
<image slot="footer" class="user_logo" src="{{avatarUrl}}" />
|
|
</mp-cell>
|
|
<mp-cell
|
|
bindtap="onTapItem" data-type="userName"
|
|
title="名字"
|
|
ext-class="cell-item">
|
|
<!-- <view slot="footer" class="msg_footer" >{{nikeName}}</view> -->
|
|
<input slot="footer" class="footer_input_phone" maxlength="120" bindinput="bindNickNameInput" value="{{nickName}}" disabled></input>
|
|
</mp-cell>
|
|
<mp-cell
|
|
bindtap="onTapItem" data-type="userPhone"
|
|
title="手机号"
|
|
ext-class="cell-item">
|
|
<!-- <view slot="footer" class="msg_footer" >{{phone}}</view> -->
|
|
<input slot="footer" class="footer_input_phone" maxlength="45" bindinput="bindPhoneInput" value="{{phone}}" disabled></input>
|
|
</mp-cell>
|
|
<mp-cell
|
|
bindtap="onTapItem" data-type="workUnit"
|
|
title="工作单位"
|
|
ext-class="cell-item">
|
|
<!-- <view slot="footer" class="msg_footer" >{{company}}</view> -->
|
|
<input slot="footer" class="footer_input_phone" maxlength="45" bindinput="bindCompanyInput" value="{{company}}" disabled></input>
|
|
</mp-cell>
|
|
<mp-cell
|
|
bindtap="onTapItem" data-type="position"
|
|
title="职务"
|
|
ext-class="cell-item">
|
|
<!-- <view slot="footer" class="msg_footer" >{{position}}</view> -->
|
|
<input slot="footer" class="footer_input_phone" maxlength="45" bindinput="bindPositionInput" value="{{position}}" disabled></input>
|
|
</mp-cell>
|
|
<view class="btnView">
|
|
<e-ibutton title="提交" bind:onTap="submit"/>
|
|
</view>
|
|
</mp-cells>
|
|
</view>
|
|
|