|
|
- <template>
- <view class="bottom">
- <!-- 浏览 -->
- <view class="browse">
- {{ item.isBrowse }}
- <view class="bontt">
- <uv-icon name="eye-fill"></uv-icon>
- </view>
- </view>
- <!-- 评论 -->
- <view class="browse">
- {{ item.isComment }}
- <view class="bontt">
- <uv-icon name="chat-fill"></uv-icon>
- </view>
- </view>
- <!-- 点赞 -->
- <view class="browse">
- {{ item.isUp || 0 }}
- <view class="bontt">
- <uv-icon name="thumb-up-fill"></uv-icon>
- </view>
- </view>
- <!-- 分享 -->
- <view class="browse">
- {{ item.isDown || 0 }}
- <view class="bontt">
- <uv-icon name="attach"></uv-icon>
- </view>
- </view>
- <callPhone :phone="item.phone" :sexName="item.sex" />
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
-
- }
- },
- props: {
- item: {},
- },
- methods: {
-
- }
- }
- </script>
-
- <style scoped lang="scss">
- .bottom {
- display: flex;
- margin-top: 20rpx;
- font-size: 24rpx;
-
- .browse {
- display: flex;
- justify-content: center;
- align-items: center;
- margin: 0rpx 30rpx;
- color: rgb(132, 132, 132);
- margin-left: 10rpx;
- }
-
- .bontt {
- margin: 0rpx 5rpx;
- }
- }
- </style>
|