index.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <template>
  2. <page nav-color="transparent" ref="pageRef">
  3. <top
  4. v-if="data"
  5. :depositData="data"
  6. :data="data.spu"
  7. :cover="data.spu.cover"
  8. :price="data.price"
  9. :subjectPrice="data.subjectPrice"
  10. />
  11. <!-- <activity v-if="data && data.coupon && data.coupon.length > 0" :data="data" /> -->
  12. <argument v-if="data" :depositData="data" :data="data.spu" />
  13. <moli
  14. v-if="data && data.recommendedLuckPool && data.recommendedLuckPool.length > 0"
  15. :data="data.recommendedLuckPool"
  16. />
  17. <recommend
  18. v-if="data && data.recommendedMallGoods && data.recommendedMallGoods.length > 0"
  19. :data="data.recommendedMallGoods"
  20. <detail v-if="data" :data="data.spu" />
  21. />
  22. <view class="fill-height marginT10"></view>
  23. <view class="bottom paddingX14 flex-align bgcolor-white">
  24. <!-- <button class="kefu flex-align-center" @click="$common.showKefu()">
  25. <view class="cuIcon-service"></view>
  26. <view class="font6 marginL10">客服</view>
  27. </button> -->
  28. <!-- <view class="btn" @click="showCheckout">{{ data.sellFlag === 0 ? `预售时间${formatD(data.sellTime)}` : data.sellType == 2 ? '支付定金' : '立即购买' }}</view> -->
  29. <view class="btn" @click="showCheckout" v-if="data">
  30. <view v-if="data.sellFlag === 0" class="flex-align-center">
  31. <text class="font1 marginB5">距预售开始:</text>
  32. <timer class="paddingB5" :targetTime="data.sellTime" @timeDone="timeDone" />
  33. </view>
  34. <view v-if="skipeType === '1'" class="flex-align-center">
  35. <text class="font1 marginB5">距秒杀开始:</text>
  36. <timer class="paddingB5" :targetTime="startTime" @timeDone="timeDone" />
  37. </view>
  38. <view v-else>
  39. {{ data.sellType == 2 ? '支付定金' : '立即购买' }}
  40. </view>
  41. </view>
  42. </view>
  43. <checkout
  44. ref="checkoutRef"
  45. v-if="data"
  46. :data="data"
  47. :goodsId="goodsId"
  48. :subjectId="subjectId"
  49. />
  50. <image
  51. v-if="topVisible"
  52. :src="resource.top"
  53. webp
  54. class="fixed"
  55. style="right: 30rpx; bottom: 400rpx; width: 72rpx; height: 72rpx"
  56. @click="$common.scrollTop()"
  57. />
  58. </page>
  59. </template>
  60. <script>
  61. import top from './top'
  62. import activity from './activity'
  63. import argument from './argument'
  64. import moli from './moli'
  65. import recommend from './recommend'
  66. import detail from './detail'
  67. import checkout from './checkout'
  68. import resource from '@/utils/resource'
  69. import loginMixin from '@/mixin/login'
  70. import dayjs from 'dayjs'
  71. import timer from '@/components/timer'
  72. export default {
  73. mixins: [loginMixin],
  74. components: { top, activity, argument, moli, recommend, detail, checkout, timer },
  75. data() {
  76. return {
  77. dayjs,
  78. resource,
  79. goodsId: '',
  80. data: null,
  81. topVisible: false,
  82. subjectId: '',
  83. skipeType: '',
  84. startTime: ''
  85. }
  86. },
  87. onLoad(options) {
  88. this.goodsId = options.id
  89. this.subjectId = options.subjectId || ''
  90. this.skipeType = options.skipeType
  91. console.log(this.skipeType)
  92. this.startTime = options.startTime
  93. },
  94. mounted() {
  95. this.getData(true)
  96. },
  97. onPageScroll(e) {
  98. this.topVisible = e.scrollTop > 800
  99. },
  100. methods: {
  101. init() {
  102. this.getData()
  103. },
  104. timeDone() {
  105. this.skipeType = 2
  106. },
  107. async getData(loading = false) {
  108. let res = null
  109. if (this.subjectId === '') {
  110. res = await this.$service.mall.detail({ goodsId: this.goodsId }, loading)
  111. } else {
  112. res = await this.$service.mall.detail(
  113. { goodsId: this.goodsId, subjectId: this.subjectId },
  114. loading
  115. )
  116. }
  117. this.data = res
  118. },
  119. async showCheckout() {
  120. if (!this.$common.isLogin()) {
  121. this.$router.push('login')
  122. return
  123. }
  124. if (this.data.sellFlag !== 0) {
  125. const res = await this.$service.mall.previewSubmit({
  126. goodsId: this.goodsId,
  127. subjectId: this.subjectId,
  128. quantity: 1
  129. })
  130. res && this.$refs.checkoutRef.show(res)
  131. }
  132. },
  133. formatD(value) {
  134. return dayjs(value).format('YYYY-MM-DD')
  135. }
  136. }
  137. }
  138. </script>
  139. <style lang="scss" scoped>
  140. .fill-height {
  141. height: 140rpx;
  142. }
  143. .bottom {
  144. position: fixed;
  145. left: 0;
  146. right: 0;
  147. bottom: 0;
  148. height: 120rpx;
  149. padding-bottom: 36rpx;
  150. .kefu {
  151. margin-top: 30rpx;
  152. height: 88rpx;
  153. padding: 0 54rpx;
  154. background: #fff7e3;
  155. border-radius: 44rpx;
  156. color: #000000;
  157. .icon {
  158. width: 48rpx;
  159. height: 48rpx;
  160. }
  161. &::after {
  162. border: none;
  163. }
  164. }
  165. .btn {
  166. margin-top: 30rpx;
  167. flex: 1;
  168. margin-left: 30rpx;
  169. color: #000;
  170. font-size: 32rpx;
  171. height: 88rpx;
  172. line-height: 88rpx;
  173. text-align: center;
  174. border-radius: 44rpx;
  175. background: #FEC433;
  176. }
  177. }
  178. </style>