业务交流通
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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!-- components/listItem/listItem.wxml -->
  2. <!-- 平台认证 -->
  3. <view class="list-certification" wx:if="{{ item.isPartner }}">
  4. <image class="certification-img" src="/images/home/certification-icon.png" />
  5. 平台认证
  6. </view>
  7. <!-- 头部 -->
  8. <view class="list-avatar">
  9. <view class="list-chatHeads fl">
  10. <image class="chatHeads-img" src="{{ item.chatHeads }}" />
  11. </view>
  12. <view class="list-nick-name fl">{{ item.nickName }}</view>
  13. <view class="list-home fl">
  14. <image class="home-img" src="{{ item.isPartner ? '/images/home/company-icon.png' : '/images/home/personal-icon.png' }}" />
  15. 主页
  16. </view>
  17. </view>
  18. <!-- 内容 -->
  19. <view class="list-content">
  20. <view bindtap="goDetails" data-item="{{ item }}">
  21. <!-- 详情 -->
  22. <view>
  23. <text space class="list-details-text need">{{ item.info }}</text>
  24. </view>
  25. <!-- 标签 -->
  26. <view class="list-tag-view">
  27. <view class="list-tag" wx:for="{{ item.type }}" wx:for-item="tag" wx:key="*this">
  28. {{ tag }}
  29. </view>
  30. </view>
  31. </view>
  32. <!-- 底部 -->
  33. <view class="list-foot {{ pageStatus == 'detatil' ? 'is-details-page' : '' }}">
  34. <view class="fl list-foot-text-lf">
  35. <image class="time-img" src="/images/home/time-icon.png" />
  36. {{ item.createdOn }}
  37. </view>
  38. <view class="fl list-foot-text-lf">
  39. <image class="browse-img" src="/images/home/browse-icon.png" />
  40. {{ item.pageView }}浏览量
  41. </view>
  42. <view class="fl list-collect-view" wx:if="{{ pageStatus == 'detatil' }}">
  43. <image class="collect-img" src="/images/home/is-collect.png" wx:if="{{ isCollect }}"/>
  44. <image class="collect-img" src="/images/home/not-collect.png" wx:else/>
  45. 收藏
  46. </view>
  47. <view class="fr list-foot-text-chat">
  48. <image class="chat-img" src="/images/home/chat-icon.png" />
  49. 聊一聊
  50. </view>
  51. </view>
  52. </view>