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

<view class="container">
<form catchsubmit="formSubmit" catchreset="formReset">
<view class="page-body">
<view class="formlistimg">
<text>头像</text>
<view wx:if="{{hasAva}}">
<view class="upload" wx:for="{{uploaderList}}" wx:key="upimag">
<icon class='ui_uploader_item_icon' bindtap='clearImg' data-index="{{index}}" type="clear" size="20"
color="red" />
<image bindtap='showImg' data-index="{{index}}" src='{{item}}' mode='aspectFill'></image>
</view>
<image src="../../../images/imgadd.png" bindtap='upload' wx:if="{{showUpload}}"></image>
</view>
<view wx:else class="hasava">
<image src="{{userPhoto}}"></image>
<icon class='ui_uploader_item_icon' bindtap='removeold' type="clear" size="20" color="red" />
</view>
</view>
<view class="formlist">
<text>昵称</text>
<input type="text" placeholder="请输入昵称" bindinput="nameInput" value="{{nickname}}" />
</view>
<view class="formlist">
<text>手机号</text>
<input type="text" placeholder="请输入手机号码" bindinput="phoneInput" value="{{phone}}" />
</view>
</view>
</form>
<view class="bottom" bindtap="editCenteruserInfo">保存</view>
</view>