personziliao.wxml
1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<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>