Initial Commit
This commit is contained in:
commit
1d71a02738
237 changed files with 64293 additions and 0 deletions
41
work.txt
Normal file
41
work.txt
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
<view class="profile-tags">
|
||||
<!-- 性别 -->
|
||||
<view class="tag-item" wx:if="{{!userInfo.user.verified}}" bindtap="goVerify"><!--测试期加了"!",实际是要删掉-->
|
||||
<text class="tag-value">{{userInfo.user.gender === 'male' ? '♂️' : userInfo.user.gender === 'female' ? '♀️' : '?'}}</text>
|
||||
</view>
|
||||
<!-- 年龄 -->
|
||||
<view class="tag-item" wx:if="{{!userInfo.user.verified}}" bindtap="goVerify"><!--测试期加了"!",实际是要删掉-->
|
||||
<text class="tag-label">年龄</text>
|
||||
<text class="tag-value">{{userInfo.age}} </text>
|
||||
</view>
|
||||
<!-- 心情 -->
|
||||
<view class="tag-item" wx:if="{{!userInfo.user.verified}}" bindtap="goVerify"><!--测试期加了"!",实际是要删掉-->
|
||||
<text class="tag-label">心情</text>
|
||||
<text class="tag-value">{{userInfo.mood}}</text>
|
||||
</view>
|
||||
<!-- 人格 -->
|
||||
<view class="tag-item" wx:if="{{!userInfo.user.verified}}" bindtap="goVerify"><!--测试期加了"!",实际是要删掉-->
|
||||
<text class="tag-label">人格</text>
|
||||
<text class="tag-value">{{userInfo.personality}}</text>
|
||||
</view>
|
||||
<!-- 身份 -->
|
||||
<view class="tag-item" wx:if="{{!userInfo.user.verified}}" bindtap="goVerify"><!--测试期加了"!",实际是要删掉-->
|
||||
<text class="tag-label">身份</text>
|
||||
<text class="tag-value">{{userInfo.identity}}</text>
|
||||
</view>
|
||||
<!-- 星座 -->
|
||||
<view class="tag-item" wx:if="{{!userInfo.user.verified}}" bindtap="goVerify"><!--测试期加了"!",实际是要删掉-->
|
||||
<text class="tag-label">星座</text>
|
||||
<text class="tag-value">{{userInfo.constellation}}</text>
|
||||
</view>
|
||||
<!-- 学校 -->
|
||||
<view class="tag-item" wx:if="{{!userInfo.user.verified}}" bindtap="goVerify"><!--测试期加了"!",实际是要删掉-->
|
||||
<text class="tag-label">学校</text>
|
||||
<text class="tag-value">{{userInfo.school}}</text>
|
||||
</view>
|
||||
<!-- 职业 -->
|
||||
<view class="tag-item" wx:if="{{!userInfo.user.verified}}" bindtap="goVerify"><!--测试期加了"!",实际是要删掉-->
|
||||
<text class="tag-label">职业</text>
|
||||
<text class="tag-value">{{userInfo.occupation}}</text>
|
||||
</view>
|
||||
</view>
|
||||
Loading…
Add table
Add a link
Reference in a new issue