special.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <template>
  2. <view>
  3. <global-loading />
  4. <!-- 专题 -->
  5. <swiper class="banner" indicator-dots indicator-color="#FFFFFF" indicator-active-color="#FF7911" autoplay>
  6. <swiper-item v-for="(item, index) in bannerList" class="banner-item">
  7. <image :src="item" mode="widthFix" class="bannerImg"></image>
  8. </swiper-item>
  9. </swiper>
  10. <!-- <view class="flex-items-plus mar-top-20"> -->
  11. <!-- <image class="choiceness" src="../../static/images/origin/choiceness.png"></image> -->
  12. <!-- </view> -->
  13. <view>
  14. <!-- {{goodsList.productVOList}} -->
  15. </view>
  16. <view v-if="goodsList.productVOList.length > 0">
  17. <view
  18. v-for="(item, index) in goodsList.productVOList" :key="item.id"
  19. class="goodsDetails-box flex-display flex-column mar-left-30" @click="goodsDateils(item.id)"
  20. >
  21. <view class="goodsDetails flex-items-plus flex-row mar-top-30">
  22. <image class="goodsImg" :src="item.imgs[0]"></image>
  23. <view class="mar-left-30">
  24. <view class="goodsName-box overflowNoDot">
  25. <!-- <image class="img618-cion" src="../../static/images/origin/618.png"></image> -->
  26. <label class="goodsName fs26 mar-left-20">{{ item.productName }}</label>
  27. </view>
  28. <view class="priceBuyNum-box mar-top-20">
  29. <label class="fs24 font-color-C5AA7B">¥</label>
  30. <label class="fs36 font-color-C5AA7B mar-left-10">{{ item.price }}</label>
  31. <label v-if="item.buyCount != null" class="fs24 font-color-999 mar-left-10">{{ item.buyCount }}人付款</label>
  32. <label v-else class="fs24 font-color-999 mar-left-10">0人付款</label>
  33. </view>
  34. <view class="flex-display flex-sp-between flex-row mar-top-10 flex-items">
  35. <label class="fs22 font-color-999">{{ item.storeDTO.storeName }}</label>
  36. <image class="arrowImg" src="../../static/images/origin/arrow.png"></image>
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. </view>
  42. <!-- 为空 -->
  43. <view v-else class="emptyOrder-box flex-items-plus flex-column">
  44. <image class="emptyOrder-img" src="../../static/images/origin/bgnull.png"></image>
  45. <label class="font-color-999 fs26 mar-top-30">专题商品为空哦~</label>
  46. </view>
  47. </view>
  48. </template>
  49. <script>
  50. const NET = require('../../utils/request')
  51. const API = require('../../config/api')
  52. export default {
  53. data() {
  54. return {
  55. key: '',
  56. bannerList: [],
  57. goodsList: {
  58. productVOList: []
  59. },
  60. subject: {},
  61. current: 1,
  62. size: 10
  63. }
  64. },
  65. onLoad(options) {
  66. this.key = options.key
  67. this.getSubjectDetailByKeyList()
  68. },
  69. methods: {
  70. getSubjectDetailByKeyList() {
  71. const _this = this
  72. // uni.showLoading({
  73. // mask: true,
  74. // title: '加载中...'
  75. // })
  76. NET.request(API.SubjectWithProduct + this.key, {
  77. current: this.current,
  78. map: {},
  79. model: {},
  80. order: 'descending',
  81. size: this.size,
  82. sort: 'id'
  83. }, 'POST').then((res) => {
  84. uni.hideLoading()
  85. _this.bannerList.push(res.data.subject.banner)
  86. _this.goodsList = res.data.productPageVO
  87. _this.subject = res.data.subject
  88. uni.setNavigationBarTitle({
  89. title: res.data.subject.title
  90. })
  91. })
  92. .catch((res) => {
  93. uni.hideLoading()
  94. })
  95. },
  96. goodsDateils(id) {
  97. uni.navigateTo({
  98. url: `../goodsModule/goodsDetails?id=${id}`
  99. })
  100. }
  101. }
  102. }
  103. </script>
  104. <style lang="scss">
  105. page {
  106. background-color: #FBE7E0;
  107. }
  108. .bannerImg {
  109. height: 300upx;
  110. width: 100%;
  111. }
  112. .choiceness {
  113. height: 60upx;
  114. width: 300upx;
  115. }
  116. .goodsDetails-box {
  117. width: 690upx;
  118. background: #fff;
  119. margin-top: 10upx;
  120. border-radius: 10upx;
  121. padding: 0 20upx;
  122. box-sizing: border-box;
  123. .goodsDetails {
  124. padding-bottom: 30upx;
  125. .goodsName-box {
  126. width: 389upx;
  127. height: 85upx;
  128. .img618-cion {
  129. width: 70upx;
  130. height: 36upx;
  131. }
  132. }
  133. .goodsImg {
  134. width: 260upx;
  135. height: 260upx;
  136. }
  137. .discounts-box {
  138. margin-left: -10upx;
  139. margin-top: 20upx;
  140. .discounts-text {
  141. margin-left: 10upx;
  142. color: #C5AA7B;
  143. background-color: #FFE4CC;
  144. padding: 6upx 12upx;
  145. border-radius: 4upx;
  146. }
  147. }
  148. .arrowImg {
  149. width: 20upx;
  150. height: 20upx;
  151. }
  152. }
  153. }
  154. .emptyOrder-box {
  155. .emptyOrder-img {
  156. width: 113rpx;
  157. height: 98rpx;
  158. }
  159. }
  160. </style>