personziliao.wxml 1.3 KB
<view class="headtop">
  <view class="headitem flextwo">
    <view class="headitemleft">
      头像
    </view>
    <view class="headitemright flexone" bindtap="chooseImage">
      <view class="headimg">
        <image src="{{avatar==''?'/img/touxiang.png':avatar}}"></image>
      </view>
      <view class="yourow">
        <image src="/img/yourow.png"></image>
      </view>
    </view>

  </view>
  <view class="headitem flextwo">
    <view class="headitemleft">
      昵称
    </view>
    <view class="headitemright flexone">
      <view class="headitemleft nicheg">
        <!-- 微信昵称 -->
        <input placeholder='' value="{{nickname}}" bindinput="entername"/>
      </view>
      <!-- <view class="yourow">
        <image src="/img/yourow.png"></image>
      </view> -->
    </view>

  </view>
</view>
<view class="entertext">
    <view class="textyop">用户简介</view>
    <view class="textarea">
    <textarea  placeholder='这个人什么都没写…' value="{{brief}}" bindinput="entermark" maxlength="50"></textarea>

    <view class="textlen">{{brief.length}}/50</view>
 
    <!-- <input placeholder='这个人什么都没写…' value="{{brief}}" bindinput="entermark" maxlength="50"/> -->
      
        
    </view>
</view>

<view class="sub" bindtap="sub">提交</view>