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.
		
		
		
		
		
			
		
			
				
					
					
						
							38 lines
						
					
					
						
							1.3 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							38 lines
						
					
					
						
							1.3 KiB
						
					
					
				| <!--pages/user/myInfo/index.wxml--> | |
| <view class="container"> | |
|   <mp-cells ext-class="page_bd"> | |
|     <mp-cell  | |
|       bindtap="onTapItem" data-type="userIcon" | |
|       title="头像" | |
|       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"> | |
|       <input slot="footer" class="msg_footer" bindinput="bindNikeNameInput" value="{{nikeName}}"></input> | |
|     </mp-cell> | |
|     <mp-cell  | |
|       bindtap="onTapItem" data-type="userPhone" | |
|       title="手机号" | |
|       ext-class="cell-item"> | |
|       <input slot="footer" class="msg_footer" bindinput="bindPhoneInput" value="{{phone}}"></input> | |
|     </mp-cell> | |
|     <mp-cell | |
|       bindtap="onTapItem" data-type="workUnit" | |
|       title="工作单位" | |
|       ext-class="cell-item"> | |
|       <input slot="footer" class="msg_footer" bindinput="bindCompanyInput" value="{{company}}"></input> | |
|     </mp-cell> | |
|     <mp-cell  | |
|       bindtap="onTapItem" data-type="position" | |
|       title="职务" | |
|       ext-class="cell-item"> | |
|       <input slot="footer" class="msg_footer" bindinput="bindPositionInput" value="{{position}}"></input> | |
|     </mp-cell> | |
|     <view class="btnView"> | |
|       <e-ibutton title="提交" bind:onTap="submit"/> | |
|     </view> | |
|   </mp-cells> | |
| </view>
 | |
| 
 |