Feat:咨询观看量,点赞数显示调整
This commit is contained in:
@@ -273,7 +273,7 @@
|
||||
:src="webUrl + '/20230803152147141807.png'"
|
||||
class="icon"
|
||||
/>
|
||||
<text class="seeNum-txt">{{ item.pv }}</text>
|
||||
<text class="seeNum-txt">{{ $formatCount(item.pv) }}</text>
|
||||
</view>
|
||||
<view class="flex">
|
||||
<image
|
||||
@@ -292,7 +292,7 @@
|
||||
v-show="item.zan > 0"
|
||||
:class="item.zanVo ? 'on' : ''"
|
||||
class="seeNum-txt"
|
||||
>{{ item.zan }}</text>
|
||||
>{{ $formatCount(item.zan) }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -272,7 +272,7 @@
|
||||
:src="webUrl + '/20230803152147141807.png'"
|
||||
class="icon"
|
||||
/>
|
||||
<text class="seeNum-txt">{{ item.pv }}</text>
|
||||
<text class="seeNum-txt">{{ $formatCount(item.pv) }}</text>
|
||||
</view>
|
||||
<view class="flex">
|
||||
<image
|
||||
@@ -291,7 +291,7 @@
|
||||
v-show="item.zan > 0"
|
||||
:class="item.zanVo ? 'on' : ''"
|
||||
class="seeNum-txt"
|
||||
>{{ item.zan }}</text>
|
||||
>{{ $formatCount(item.zan) }}</text>
|
||||
</view>
|
||||
<view class="flex" @click="infoClick(item)">
|
||||
<!-- <image
|
||||
@@ -299,7 +299,7 @@
|
||||
class="icon"
|
||||
/> -->
|
||||
<u-icon name="chat" size="24"></u-icon>
|
||||
<text class="seeNum-txt">{{ item.replyCount || 0 }}</text>
|
||||
<text class="seeNum-txt">{{ $formatCount(item.replyCount || 0) }}</text>
|
||||
</view>
|
||||
<view v-if="isMyInn" class="flex more-btn" @click="toggleMoreHandle(index)">
|
||||
<image
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
<view class="btns">
|
||||
<view class="flex">
|
||||
<image :src="webUrl + '/20230803152147141807.png'" class="icon" />
|
||||
<text class="seeNum-txt">{{ item.pv }}</text>
|
||||
<text class="seeNum-txt">{{ $formatCount(item.pv) }}</text>
|
||||
</view>
|
||||
<view class="flex">
|
||||
<image
|
||||
@@ -68,12 +68,12 @@
|
||||
v-show="item.zan > 0"
|
||||
:class="item.zanVo ? 'on' : ''"
|
||||
class="seeNum-txt"
|
||||
>{{ item.zan }}</text
|
||||
>{{ $formatCount(item.zan) }}</text
|
||||
>
|
||||
</view>
|
||||
<view class="flex">
|
||||
<u-icon name="chat" size="24"></u-icon>
|
||||
<text class="seeNum-txt">{{ item.replyCount || comments.length }}</text>
|
||||
<text class="seeNum-txt">{{ $formatCount(item.replyCount || comments.length) }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
Reference in New Issue
Block a user