瑶都万能墙
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.1 KiB

6 months ago
  1. <template>
  2. <view class="bottom">
  3. <!-- 浏览 -->
  4. <view class="browse">
  5. {{ item.isBrowse }}
  6. <view class="bontt">
  7. <uv-icon name="eye-fill"></uv-icon>
  8. </view>
  9. </view>
  10. <!-- 评论 -->
  11. <view class="browse">
  12. {{ item.isComment }}
  13. <view class="bontt">
  14. <uv-icon name="chat-fill"></uv-icon>
  15. </view>
  16. </view>
  17. <!-- 点赞 -->
  18. <view class="browse">
  19. {{ item.isUp || 0 }}
  20. <view class="bontt">
  21. <uv-icon name="thumb-up-fill"></uv-icon>
  22. </view>
  23. </view>
  24. <!-- 分享 -->
  25. <view class="browse">
  26. {{ item.isDown || 0 }}
  27. <view class="bontt">
  28. <uv-icon name="attach"></uv-icon>
  29. </view>
  30. </view>
  31. <callPhone :phone="item.phone" :sexName="item.sex" />
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. }
  39. },
  40. props: {
  41. item: {},
  42. },
  43. methods: {
  44. }
  45. }
  46. </script>
  47. <style scoped lang="scss">
  48. .bottom {
  49. display: flex;
  50. margin-top: 20rpx;
  51. font-size: 24rpx;
  52. .browse {
  53. display: flex;
  54. justify-content: center;
  55. align-items: center;
  56. margin: 0rpx 30rpx;
  57. color: rgb(132, 132, 132);
  58. margin-left: 10rpx;
  59. }
  60. .bontt {
  61. margin: 0rpx 5rpx;
  62. }
  63. }
  64. </style>