activity.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. <template>
  2. <!-- #ifdef H5 -->
  3. <zj-page-layout
  4. :hasFooter="false"
  5. :isScroll="true"
  6. :refresherTriggered="refresherTriggered"
  7. @refresherrefresh="refresherrefresh"
  8. @scrolltolower="scrolltolower">
  9. <view class="all-container" :style="'background:' + ((pageConfig[2] && dataList.length > 0) ? pageConfig[2] : 'unset')">
  10. <view class="banner-container" v-if="pageConfig[1]">
  11. <image :src="pageConfig[1]" mode="widthFix"></image>
  12. </view>
  13. <view class="top-container">
  14. <view class="tab">
  15. <view class="item" :class="screenType === 0 ? 'current':''" @tap="changeScreen(0)">综合</view>
  16. <view class="item" :class="screenType === 1 ? 'current':''" @tap="changeScreen(1)">销量</view>
  17. <view class="item" :class="screenType === 2 || screenType === 3 ? 'current':''" @tap="changeScreen(2)">价格
  18. <image src="@/static/icon/price_1.png" v-if="screenType === 2"></image>
  19. <image src="@/static/icon/price_2.png" v-if="screenType === 3"></image>
  20. <image src="@/static/icon/price_0.png" v-if="screenType != 2 && screenType != 3"></image>
  21. </view>
  22. <view class="item" :class="screenType === 4 ? 'current':''" @tap="changeScreen(4)">上架时间</view>
  23. </view>
  24. <view class="icon">
  25. <image src="@/static/icon/show_1.png" v-if="showType == 1" @tap="showType = 2"></image>
  26. <image src="@/static/icon/show_2.png" v-if="showType == 2" @tap="showType = 1"></image>
  27. </view>
  28. </view>
  29. <view class="goods-waterfall-list" v-show="showType == 1">
  30. <view class="left">
  31. <block v-for="(item, index) in dataList" :key='index'>
  32. <view class="item" v-if="index%2==0" @tap="toGoodsDetail(item.goodsId)">
  33. <view class="image">
  34. <image :src="item.imgUrl" mode="aspectFill" class="img"></image>
  35. <image :src="item.logo" mode="aspectFill" class="water" v-if="item.isShowWater"></image>
  36. </view>
  37. <view class="content">
  38. <view class="title ellipsis-2">{{item.goodsName}}</view>
  39. <view class="tags" v-if="item.tags1 && item.tags1.length > 0">
  40. <view class="it" v-for="(it, idx) in item.tags1" :key="idx">{{it}}</view>
  41. </view>
  42. <view class="tags2" v-if="(item.tags2 && item.tags2.length > 0) || item.promotionFullPiece || item.isTrade == 'YES'">
  43. <view class="it" v-if="item.promotionFullPiece">满件打折</view>
  44. <view class="it" v-if="item.isTrade == 'YES'">以旧换新</view>
  45. <view class="it" v-for="(it, idx) in item.tags2" :key="idx">{{it}}</view>
  46. </view>
  47. <view class="price">
  48. <view class="price-1">¥{{item.goodsPrice | priceFilter}}</view>
  49. <view class="price-2">¥{{item.orgGoodsPrice | priceFilter}}</view>
  50. </view>
  51. <view class="text">销量:{{item.soldNum}}</view>
  52. </view>
  53. </view>
  54. </block>
  55. </view>
  56. <view class="right">
  57. <block v-for="(item, index) in dataList" :key='index'>
  58. <view class="item" v-if="index%2==1" @tap="toGoodsDetail(item.goodsId)">
  59. <view class="image">
  60. <image :src="item.imgUrl" mode="aspectFill" class="img"></image>
  61. <image :src="item.logo" mode="aspectFill" class="water" v-if="item.isShowWater"></image>
  62. </view>
  63. <view class="content">
  64. <view class="title ellipsis-2">{{item.goodsName}}</view>
  65. <view class="tags" v-if="item.tags1 && item.tags1.length > 0">
  66. <view class="it" v-for="(it, idx) in item.tags1" :key="idx">{{it}}</view>
  67. </view>
  68. <view class="tags2" v-if="(item.tags2 && item.tags2.length > 0) || item.promotionFullPiece || item.isTrade == 'YES'">
  69. <view class="it" v-if="item.promotionFullPiece">满件打折</view>
  70. <view class="it" v-if="item.isTrade == 'YES'">以旧换新</view>
  71. <view class="it" v-for="(it, idx) in item.tags2" :key="idx">{{it}}</view>
  72. </view>
  73. <view class="price">
  74. <view class="price-1">¥{{item.goodsPrice | priceFilter}}</view>
  75. <view class="price-2">¥{{item.orgGoodsPrice | priceFilter}}</view>
  76. </view>
  77. <view class="text">销量:{{item.soldNum}}</view>
  78. </view>
  79. </view>
  80. </block>
  81. </view>
  82. </view>
  83. <view class="goods-row-list" v-show="showType == 2">
  84. <block v-for="(item, index) in dataList" :key='index'>
  85. <view class="item" @tap="toGoodsDetail(item.goodsId)">
  86. <view class="image">
  87. <image :src="item.imgUrl" mode="aspectFill" class="img"></image>
  88. <image :src="item.logo" mode="aspectFill" class="water" v-if="item.isShowWater"></image>
  89. </view>
  90. <view class="right">
  91. <view>
  92. <view class="title ellipsis-2">{{item.goodsName}}</view>
  93. <view class="tags" v-if="item.tags1 && item.tags1.length > 0">
  94. <view class="it" v-for="(it, idx) in item.tags1" :key="idx">{{it}}</view>
  95. </view>
  96. </view>
  97. <view>
  98. <view class="bottom">
  99. <view class="price">
  100. <view class="price-1">¥{{item.goodsPrice | priceFilter}}</view>
  101. <view class="price-2">¥{{item.orgGoodsPrice | priceFilter}}</view>
  102. </view>
  103. <view class="text">销量:{{item.soldNum}}</view>
  104. </view>
  105. </view>
  106. </view>
  107. </view>
  108. </block>
  109. </view>
  110. <Loading :loadStatus="loadStatus" :dataList="dataList" />
  111. </view>
  112. </zj-page-layout>
  113. <!-- #endif -->
  114. <!-- #ifndef H5 -->
  115. <web-view :src="webViewHref(`/packageGoods/pages/activity`, pam,crossPagePam)" @message="crossPage.$listener"></web-view>
  116. <!-- #endif -->
  117. </template>
  118. <script>
  119. // #ifdef H5
  120. import { compareTime } from '@/common/utils/util.js'
  121. export default {
  122. data() {
  123. return {
  124. type: null,
  125. screenType: '',
  126. dataList: [],
  127. pageNum: 1,
  128. loadStatus: 0,
  129. refresherTriggered: false,
  130. showType: 1,
  131. templateInfo: {},
  132. pageConfig: ['','',''],
  133. }
  134. },
  135. onShow() {
  136. this.crossPage.$on('hanbleShare', () => {
  137. this.clickShare();
  138. })
  139. },
  140. onHide() {
  141. this.crossPage.$off('hanbleShare');
  142. },
  143. async onLoad({type}) {
  144. this.type = type;
  145. let tif = await this.$getTemplateInfo();
  146. this.templateInfo = tif;
  147. const MAP = {
  148. 2: ['首页弹窗', tif.popupHeadImage, tif.popupBackgroundColor],
  149. 3: ['活动专区1', tif.active1HeadImage, tif.active1BackgroundColor],
  150. 4: ['活动专区2左侧', tif.active2LeftHeadImage, tif.active2LeftBackgroundColor],
  151. 5: ['活动专区2右侧', tif.active2RightHeadImage, tif.active2RightBackgroundColor],
  152. 6: ['专场专区1', tif.only1HeadImage, tif.only1BackgroundColor],
  153. 7: ['专场专区2', tif.only2HeadImage, tif.only2BackgroundColor],
  154. 8: ['专场专区3', tif.only3HeadImage, tif.only3BackgroundColor],
  155. 9: ['专场专区4', tif.only4HeadImage, tif.only4BackgroundColor],
  156. 10: ['专题精选1', tif.topics1HeadImage, tif.topics1BackgroundColor],
  157. 11: ['专题精选2', tif.topics2HeadImage, tif.topics2BackgroundColor],
  158. 12: ['专题精选3', tif.topics3HeadImage, tif.topics3BackgroundColor],
  159. 13: ['底部广告图', tif.bottomBannerHeadImage, tif.bottomBannerBackgroundColor],
  160. }
  161. console.log(this.type ? MAP[this.type] : ['','','']);
  162. this.pageConfig = this.type ? MAP[this.type] : ['','',''];
  163. this.getList();
  164. },
  165. methods: {
  166. // 获取商品列表
  167. getList() {
  168. this.$api.get('/renovation/goods/list', {
  169. pageNo: this.pageNum,
  170. pageSize: 10,
  171. type: this.type,
  172. objId: this.templateInfo.companyWechatTemplateId,
  173. sort: this.screenType
  174. }).then(res => {
  175. res.data.records.forEach(item => {
  176. if(item.logo && item.logoStartTime) {
  177. item.isShowWater = compareTime(item.logoStartTime, item.logoEndTime);
  178. }else {
  179. item.isShowWater = false;
  180. }
  181. })
  182. this.loadStatus = 0;
  183. let list = res.data.records;
  184. if (list.length < 10) {
  185. this.loadStatus = 2;
  186. }
  187. this.dataList = this.dataList.concat(list);
  188. }).catch(() => {
  189. this.loadStatus = 2;
  190. }).finally(res => {
  191. this.refresherTriggered = false;
  192. })
  193. },
  194. // 滚动到底部
  195. scrolltolower(e) {
  196. if (this.loadStatus === 0) {
  197. this.pageNum++;
  198. this.getList();
  199. }
  200. },
  201. // 触发下拉刷新
  202. refresherrefresh(e) {
  203. this.refresherTriggered = true;
  204. this.refreshList();
  205. },
  206. refreshList() {
  207. this.dataList = [];
  208. this.pageNum = 1;
  209. this.getList();
  210. },
  211. // 切换筛选类型
  212. changeScreen(type) {
  213. if(type != 2) {
  214. if(this.screenType !== type) {
  215. this.screenType = type;
  216. }else {
  217. this.screenType = '';
  218. }
  219. }else {
  220. if(this.screenType != 2 && this.screenType != 3) {
  221. this.screenType = 2;
  222. }else if(this.screenType == 2) {
  223. this.screenType = 3;
  224. }else {
  225. this.screenType = '';
  226. }
  227. }
  228. this.refreshList();
  229. },
  230. toGoodsDetail(id) {
  231. this.$navToPage({
  232. url: '/packageGoods/pages/detail?id=' + id
  233. })
  234. }
  235. }
  236. }
  237. // #endif
  238. // #ifndef H5
  239. export default {
  240. data() {
  241. return {
  242. pam: {},
  243. }
  244. },
  245. onLoad(pam) {
  246. this.pam = pam;
  247. },
  248. }
  249. // #endif
  250. </script>
  251. <style lang="scss" scoped>
  252. .all-container {
  253. box-sizing: border-box;
  254. &.noBg {
  255. background: unset !important;
  256. }
  257. }
  258. .banner-container {
  259. image {
  260. width: 100%;
  261. display: block;
  262. }
  263. }
  264. .top-container {
  265. position: sticky;
  266. top: 0;
  267. left: 0;
  268. z-index: 99;
  269. width: 100%;
  270. background: #FFFFFF;
  271. display: flex;
  272. padding: 0 20rpx;
  273. align-items: center;
  274. box-sizing: border-box;
  275. .tab {
  276. flex: 1;
  277. display: flex;
  278. padding: 0 80rpx 0 30rpx;
  279. box-sizing: border-box;
  280. justify-content: space-between;
  281. .item {
  282. height: 88rpx;
  283. display: flex;
  284. align-items: center;
  285. justify-content: center;
  286. font-size: 30rpx;
  287. color: #666666;
  288. &.current {
  289. color: $theme-color;
  290. }
  291. image {
  292. width: 18rpx;
  293. height: 30rpx;
  294. display: block;
  295. margin-left: 10rpx;
  296. }
  297. }
  298. }
  299. .icon {
  300. padding-right: 10rpx;
  301. image {
  302. width: 36rpx;
  303. height: 36rpx;
  304. display: block;
  305. }
  306. }
  307. }
  308. </style>