问星数据小程序

shopDetail.wxml 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <!--pages/shopDetail/shopDetail.wxml-->
  2. <wxs module="filter" src="../../assets/js/common.wxs"></wxs>
  3. <scroll-view class="liveDetail" scroll-y="true" style="height:{{scrollHeight}}px;" bindscrolltolower="bindDownLoad" bindscroll="scroll">
  4. <view class="item">
  5. <view class="coverImg">
  6. <image class="videoImg" style="height:180rpx;" mode="widthFix" wx:if="{{shopObj.shop_icon}}" src="{{shopObj.shop_icon}}"></image>
  7. </view>
  8. <view class="infoText">
  9. <text class="name" style="color:{{!shopObj.shop_name?'rgb(204, 204, 204)':'#000'}}">
  10. {{shopObj.shop_name?shopObj.shop_name:'-'}}
  11. </text>
  12. <view class="date">
  13. 粉丝{{shopObj.fan?shopObj.fan:'-'}}
  14. </view>
  15. </view>
  16. </view>
  17. <view class="tabList {{isFix?'toTop':''}}" id="tabItem">
  18. <view class="tab {{tab==1?'active':''}}" data-id="1" bindtap="check">推广商品</view>
  19. <view class="tab {{tab==2?'active':''}}" data-id="2" bindtap="check">关联直播</view>
  20. <view class="tab {{tab==3?'active':''}}" data-id="3" bindtap="check">关联达人</view>
  21. </view>
  22. <view wx:if="{{isFix}}" style="width:100%;height:56rpx;background:#fff;"></view>
  23. <view class="tabItem" wx:if="{{tab==1}}">
  24. <view class="total" wx:if="{{!hasAunoTotal}}">
  25. <view class="ul">
  26. <view class="li">
  27. <text class="text">
  28. 关联达人数
  29. </text>
  30. <text>
  31. {{shopObj.user_count||shopObj.user_count==0?shopObj.user_count:'-'}}
  32. </text>
  33. </view>
  34. <view class="li">
  35. <text class="text">
  36. 关联直播数
  37. </text>
  38. <text>
  39. {{shopObj.show_count||shopObj.show_count==0?shopObj.show_count:'-'}}
  40. </text>
  41. </view>
  42. <view class="li">
  43. <text class="text">
  44. 商品销量
  45. </text>
  46. <text>
  47. {{shopObj.sell_count||shopObj.sell_count==0?shopObj.sell_count:'-'}}
  48. </text>
  49. </view>
  50. </view>
  51. </view>
  52. <nopermission wx:if="{{hasAunoTotal}}"></nopermission>
  53. <view class="proItem hotItem" wx:for="{{productList}}" wx:key="productList">
  54. <image class="img" style="border-radius:0" wx:if="{{item.img}}" src="{{item.img}}"></image>
  55. <view class="info">
  56. <text class="title">{{item.title}}</text>
  57. <view class="bottom">
  58. <view class="twice">
  59. <text class="number" style="display:inline;">{{item.price?'¥'+item.price:'-'}}</text>
  60. </view>
  61. <view class="twice">
  62. 销量<text class="number" style="display:inline;">{{item.sell_count?item.sell_count:'-'}}</text>
  63. </view>
  64. </view>
  65. </view>
  66. </view>
  67. <nopermission wx:if="{{hasAunoPro}}"></nopermission>
  68. </view>
  69. <view class="tabItem" wx:if="{{tab==2}}">
  70. <view class="proItem hotItem" wx:for="{{liveList}}" wx:key="allPro">
  71. <image class="img" wx:if="{{item.headurl}}" src="{{item.headurl}}" style="border-radius: 50%;" mode="widthFix"></image>
  72. <view class="info">
  73. <text class="title">{{item.user_name}}</text>
  74. <view class="date">{{item.start_time?item.start_time:'-'}}</view>
  75. <view class="bottom">
  76. <view class="twice" style="text-align:left;">
  77. 销量 <text class="number" style="display:inline;">{{item.sell_count?item.sell_count:'-'}}</text>
  78. </view>
  79. </view>
  80. </view>
  81. </view>
  82. <nopermission wx:if="{{hasAunoLive}}"></nopermission>
  83. </view>
  84. <!-- 关联达人 -->
  85. <view class="tabItem" wx:if="{{tab==3}}">
  86. <view class="proItem hotItem" wx:for="{{hotList}}" wx:key="allPro" bindtap="goHrDetail" data-userid='{{item.kwai_user_id}}'>
  87. <image class="img" wx:if="{{item.headurl}}" src="{{item.headurl}}" style="border-radius: 50%;" mode="widthFix"></image>
  88. <view class="info">
  89. <text class="title">{{item.user_name}}</text>
  90. <view class="bottom">
  91. <view class="twice">
  92. 粉丝 <text class="number" style="display:inline;">{{item.fan?item.fan:'-'}}</text>
  93. </view>
  94. <view class="twice">
  95. 销量 <text class="number" style="display:inline;">{{item.sell_count?item.sell_count:'-'}}</text>
  96. </view>
  97. </view>
  98. </view>
  99. </view>
  100. <nopermission wx:if="{{hasAunoHot}}"></nopermission>
  101. </view>
  102. </scroll-view>
  103. <text class="desc">更多数据请登录www.data.kuxuan.com进行查看</text>