|
@@ -19,8 +19,12 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="state" data-uid='{{item.user.uid}}' data-isEachOther="{{item.isEachOther}}" bindtap="setFans">
|
|
|
- <view class="stateText {{currentType==1||item.isEachOther?'already':'yet'}}">{{
|
|
|
- currentType==1?'已关注':item.isEachOther?'互相关注':'回关'}}</view>
|
|
|
+ <view class="stateText already" wx:if="{{currentType==1}}">
|
|
|
+ {{item.isEachOther?'互相关注':'已关注'}}
|
|
|
+ </view>
|
|
|
+ <view class="stateText {{item.isEachOther?'already':'yet'}}" wx:else>
|
|
|
+ {{item.isEachOther?'互相关注':'回关'}}
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<emptyBg wx:if="{{nullList}}" message='快去寻找小伙伴吧!' />
|