activity.vue 9.4 KB

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