|
@@ -21,7 +21,7 @@
|
|
</view>
|
|
</view>
|
|
<view class='mine-category'>
|
|
<view class='mine-category'>
|
|
<view class='play-count'>
|
|
<view class='play-count'>
|
|
- <view>{{ myData.user.playAmount }}</view>
|
|
|
|
|
|
+ <view>{{ myData.user.playAmount || 0 }}</view>
|
|
<view class='border-right'>
|
|
<view class='border-right'>
|
|
<view class='play-img'>
|
|
<view class='play-img'>
|
|
<image src='../../static/image/play.png'></image>
|
|
<image src='../../static/image/play.png'></image>
|
|
@@ -30,7 +30,7 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class='follow-count'>
|
|
<view class='follow-count'>
|
|
- <view class='color'>{{ myData.user.fansAmount }}</view>
|
|
|
|
|
|
+ <view class='color'>{{ myData.user.fansAmount || 0 }}</view>
|
|
<view class='border-right'>
|
|
<view class='border-right'>
|
|
<view class='play-img'>
|
|
<view class='play-img'>
|
|
<image src='../../static/image/follow.png'></image>
|
|
<image src='../../static/image/follow.png'></image>
|
|
@@ -39,7 +39,7 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class='point-count'>
|
|
<view class='point-count'>
|
|
- <view class='color'>{{ myData.user.likeAmount }}</view>
|
|
|
|
|
|
+ <view class='color'>{{ myData.user.likeAmount || 0 }}</view>
|
|
<view class='border-right'>
|
|
<view class='border-right'>
|
|
<view class='play-img'>
|
|
<view class='play-img'>
|
|
<image src='../../static/image/point.png'></image>
|
|
<image src='../../static/image/point.png'></image>
|
|
@@ -48,7 +48,7 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class='flower-count'>
|
|
<view class='flower-count'>
|
|
- <view class='color'>{{ myData.user.pointAmount }}</view>
|
|
|
|
|
|
+ <view class='color'>{{ myData.user.pointAmount || 0 }}</view>
|
|
<view class='border-right'>
|
|
<view class='border-right'>
|
|
<view class='play-img'>
|
|
<view class='play-img'>
|
|
<image src='../../static/image/flower.png'></image>
|
|
<image src='../../static/image/flower.png'></image>
|