市北人才赋能平台 --小程序端
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.

44 lines
1.7 KiB

<!--pages/user/myInfo/index.wxml-->
6 years ago
<view class="container">
<mp-cells ext-class="page_bd">
<mp-cell
bindtap="onTapItem" data-type="userIcon"
title="头像"
link="true"
6 years ago
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" maxlength="120" bindinput="bindNickNameInput" value="{{nickName}}"></input>
6 years ago
</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>
6 years ago
</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" maxlength="45" bindinput="bindCompanyInput" value="{{company}}"></input>
6 years ago
</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" maxlength="45" bindinput="bindPositionInput" value="{{position}}"></input>
6 years ago
</mp-cell>
<view class="btnView">
6 years ago
<e-ibutton title="提交" bind:onTap="submit"/>
</view>
6 years ago
</mp-cells>
</view>