index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  1. <template>
  2. <view>
  3. <s-layout :onShareAppMessage="shareInfo" navbar="goods">
  4. <!-- 标题栏 -->
  5. <detailNavbar v-model="state.goodsInfo" />
  6. <!-- 骨架屏 -->
  7. <detailSkeleton v-if="state.skeletonLoading" />
  8. <!-- 下架/售罄提醒 -->
  9. <s-empty v-else-if="state.goodsInfo === null" text="商品不存在或已下架" icon="/static/soldout-empty.png" showAction
  10. actionText="再逛逛" actionUrl="/pages/goods/list" />
  11. <block v-else>
  12. <view class="detail-swiper-selector">
  13. <!-- 商品轮播图 -->
  14. <su-swiper class="ss-m-b-14" isPreview :list="formatGoodsSwiper(state.goodsInfo.sliderPicUrls)"
  15. otStyle="tag" imageMode="widthFix" dotCur="bg-mask-40" :seizeHeight="750" />
  16. <!-- 价格+标题 -->
  17. <view class="title-card detail-card ss-p-y-40 ss-p-x-20">
  18. <view class="ss-flex ss-row-between ss-col-center ss-m-b-26">
  19. <view class="price-box ss-flex ss-col-bottom">
  20. <view class="price-text ss-m-r-16">
  21. {{ fen2yuan(state.selectedSku.price || state.goodsInfo.price) }}
  22. </view>
  23. <view class="origin-price-text" v-if="state.goodsInfo.marketPrice > 0">
  24. {{ fen2yuan(state.selectedSku.marketPrice || state.goodsInfo.marketPrice) }}
  25. </view>
  26. </view>
  27. <view class="sales-text">
  28. {{ formatSales('exact', state.goodsInfo.salesCount) }}
  29. </view>
  30. </view>
  31. <view class="discounts-box ss-flex ss-row-between ss-m-b-28">
  32. <!-- 满减送/限时折扣活动的提示 -->
  33. <div class="tag-content">
  34. <view class="tag-box ss-flex">
  35. <view class="tag ss-m-r-10" v-for="promos in state.activityInfo" :key="promos.id"
  36. @tap="onActivity">
  37. {{ promos.name }}
  38. </view>
  39. </view>
  40. </div>
  41. <!-- 优惠劵 -->
  42. <view class="get-coupon-box ss-flex ss-col-center ss-m-l-20" @tap="state.showModel = true"
  43. v-if="state.couponInfo.length">
  44. <view class="discounts-title ss-m-r-8">领券</view>
  45. <text class="cicon-forward"></text>
  46. </view>
  47. </view>
  48. <view class="title-text ss-line-2 ss-m-b-6">{{ state.goodsInfo.name }}</view>
  49. <view class="subtitle-text ss-line-1">{{ state.goodsInfo.introduction }}</view>
  50. </view>
  51. <!-- 功能卡片 -->
  52. <view class="detail-cell-card detail-card ss-flex-col">
  53. <detail-cell-sku v-model="state.selectedSku.goods_sku_text" :sku="state.selectedSku"
  54. @tap="state.showSelectSku = true" />
  55. </view>
  56. <!-- 规格与数量弹框 -->
  57. <s-select-sku :goodsInfo="state.goodsInfo" :show="state.showSelectSku" @addCart="onAddCart"
  58. @buy="onBuy" @change="onSkuChange" @close="state.showSelectSku = false" />
  59. </view>
  60. <!-- 评价 -->
  61. <detail-comment-card class="detail-comment-selector" :goodsId="state.goodsId" />
  62. <!-- 详情 -->
  63. <detail-content-card class="detail-content-selector" :content="state.goodsInfo.description" />
  64. <!-- 活动跳转:拼团/秒杀/砍价活动 -->
  65. <detail-activity-tip v-if="state.activityList.length > 0" :activity-list="state.activityList" />
  66. <!-- 详情 tabbar -->
  67. <detail-tabbar v-model="state.goodsInfo">
  68. <view class="buy-box ss-flex ss-col-center ss-p-r-20" v-if="state.goodsInfo.stock > 0">
  69. <button class="ss-reset-button add-btn ui-Shadow-Main" @tap="state.showSelectSku = true">
  70. 加入购物车
  71. </button>
  72. <button class="ss-reset-button buy-btn ui-Shadow-Main" @tap="state.showSelectSku = true">
  73. 立即购买
  74. </button>
  75. </view>
  76. <view class="buy-box ss-flex ss-col-center ss-p-r-20" v-else>
  77. <button class="ss-reset-button disabled-btn" disabled> 已售罄 </button>
  78. </view>
  79. </detail-tabbar>
  80. <!-- 优惠劵弹窗 -->
  81. <s-coupon-get v-model="state.couponInfo" :show="state.showModel" @close="state.showModel = false"
  82. @get="onGet" />
  83. <!-- 满减送/限时折扣活动弹窗 -->
  84. <s-activity-pop v-model="state.activityInfo" :show="state.showActivityModel"
  85. @close="state.showActivityModel = false" />
  86. </block>
  87. </s-layout>
  88. </view>
  89. </template>
  90. <script setup>
  91. import {
  92. reactive,
  93. computed,
  94. provide,
  95. watchEffect,
  96. watch
  97. } from 'vue';
  98. import {
  99. onLoad,
  100. onPageScroll
  101. } from '@dcloudio/uni-app';
  102. import sheep from '@/sheep';
  103. import CouponApi from '@/sheep/api/promotion/coupon';
  104. import ActivityApi from '@/sheep/api/promotion/activity';
  105. import FavoriteApi from '@/sheep/api/product/favorite';
  106. import {
  107. formatSales,
  108. formatGoodsSwiper,
  109. fen2yuan
  110. } from '@/sheep/hooks/useGoods';
  111. import detailNavbar from './components/detail/detail-navbar.vue';
  112. import detailCellSku from './components/detail/detail-cell-sku.vue';
  113. import detailTabbar from './components/detail/detail-tabbar.vue';
  114. import detailSkeleton from './components/detail/detail-skeleton.vue';
  115. import detailCommentCard from './components/detail/detail-comment-card.vue';
  116. import detailContentCard from './components/detail/detail-content-card.vue';
  117. import detailActivityTip from './components/detail/detail-activity-tip.vue';
  118. import {
  119. isEmpty
  120. } from 'lodash';
  121. import SpuApi from '@/sheep/api/product/spu';
  122. import ShareApi from '@/sheep/api/distri/share';
  123. onPageScroll(() => {});
  124. const state = reactive({
  125. goodsId: 0,
  126. skeletonLoading: true, // SPU 加载中
  127. goodsInfo: {}, // SPU 信息
  128. showSelectSku: false, // 是否展示 SKU 选择弹窗
  129. selectedSku: {}, // 选中的 SKU
  130. showModel: false, // 是否展示 Coupon 优惠劵的弹窗
  131. couponInfo: [], // 可领取的 Coupon 优惠劵的列表
  132. showActivityModel: false, // 【满减送/限时折扣】是否展示 Activity 营销活动的弹窗
  133. activityInfo: [], // 【满减送/限时折扣】可参与的 Activity 营销活动的列表
  134. activityList: [], // 【秒杀/拼团/砍价】可参与的 Activity 营销活动的列表
  135. linkId:0, // 分享时的id
  136. });
  137. // 规格变更
  138. function onSkuChange(e) {
  139. state.selectedSku = e;
  140. }
  141. // 添加购物车
  142. function onAddCart(e) {
  143. if (!e.id) {
  144. sheep.$helper.toast('请选择商品规格');
  145. return;
  146. }
  147. sheep.$store('cart').add(e);
  148. }
  149. // 立即购买
  150. function onBuy(e) {
  151. if (!state.selectedSku.id) {
  152. sheep.$helper.toast('请选择商品规格');
  153. return;
  154. }
  155. sheep.$router.go('/pages/order/confirm', {
  156. data: JSON.stringify({
  157. items: [{
  158. skuId: e.id,
  159. count: e.goods_num
  160. }],
  161. // TODO 芋艿:后续清理掉这 2 参数
  162. deliveryType: 1,
  163. pointStatus: false,
  164. }),
  165. });
  166. }
  167. // 营销活动
  168. function onActivity() {
  169. state.showActivityModel = true;
  170. }
  171. // 立即领取
  172. async function onGet(id) {
  173. const {
  174. code
  175. } = await CouponApi.takeCoupon(id);
  176. if (code !== 0) {
  177. return;
  178. }
  179. uni.showToast({
  180. title: '领取成功',
  181. });
  182. setTimeout(() => {
  183. getCoupon();
  184. }, 1000);
  185. }
  186. // TODO 芋艿:待测试
  187. const shareInfo = computed(() => {
  188. if (isEmpty(state.goodsInfo)) return {};
  189. return sheep.$platform.share.getShareInfo({
  190. title: state.goodsInfo.name,
  191. image: sheep.$url.cdn(state.goodsInfo.image),
  192. desc: state.goodsInfo.subtitle,
  193. params: {
  194. page: '2',
  195. query: state.linkId,
  196. },
  197. }, {
  198. type: 'goods', // 商品海报
  199. title: state.goodsInfo.name, // 商品标题
  200. introduction:state.goodsInfo.introduction,
  201. // image: sheep.$url.cdn(state.goodsInfo.image), // 商品主图
  202. image: sheep.$url.cdn(state.goodsInfo.picUrl), // 商品主图
  203. price: fen2yuan(state.goodsInfo.price), // 商品价格
  204. original_price: fen2yuan(state.goodsInfo.maretPrice), // 商品原价
  205. }, );
  206. });
  207. async function getCoupon() {
  208. const {
  209. code,
  210. data
  211. } = await CouponApi.getCouponTemplateList(state.goodsId, 2, 10);
  212. if (code === 0) {
  213. state.couponInfo = data;
  214. }
  215. }
  216. async function getSpuDetail(id){
  217. SpuApi.getSpuDetail(id).then((res) => {
  218. // 未找到商品
  219. if (res.code !== 0 || !res.data) {
  220. state.goodsInfo = null;
  221. return;
  222. }
  223. // 加载到商品
  224. state.skeletonLoading = false;
  225. state.goodsInfo = res.data;
  226. // 加载是否收藏
  227. FavoriteApi.isFavoriteExists(state.goodsId, 'goods').then((res) => {
  228. if (res.code !== 0) {
  229. return;
  230. }
  231. state.goodsInfo.favorite = res.data;
  232. });
  233. });
  234. }
  235. async function getLink(){
  236. //加载分享时用到的linkId
  237. ShareApi.getLinkId(3,state.goodsId).then((res) => {
  238. if (res.code !== 0) {
  239. return;
  240. }
  241. state.linkId = res.data.linkId
  242. // console.log(state.linkId)
  243. });
  244. }
  245. const isLogin = computed(() => sheep.$store('user').isLogin);
  246. watchEffect(() => {
  247. if (isLogin.value) {
  248. getLink()
  249. }
  250. })
  251. onLoad((options) => {
  252. console.log("options.id",options.id,"options.linkId",options.linkId)
  253. // 没有spuId和linkId的话 就有问题
  254. if (!options.id && !options.linkId) {
  255. state.goodsInfo = null;
  256. return;
  257. }
  258. state.goodsId = options.id || 0;
  259. // 如果只是没有spuId有linkId的话 要去linkId对应的spuId
  260. if(!options.id && options.linkId){
  261. console.log("如果只是没有spuId有linkId的话 要去linkId对应的spuId")
  262. const linkId = options.linkId.toString()
  263. ShareApi.getObjectIdByLinkId(linkId).then((res) => {
  264. if (res.code !== 0) {
  265. return;
  266. }
  267. state.goodsId = res.data
  268. getSpuDetail(state.goodsId)
  269. getLink()
  270. });
  271. uni.setStorageSync("linkId",options.linkId)
  272. }else{
  273. // 1. 加载商品信息
  274. getSpuDetail(state.goodsId)
  275. }
  276. // 2. 加载优惠劵信息
  277. getCoupon();
  278. // 3. 加载营销活动信息
  279. ActivityApi.getActivityListBySpuId(state.goodsId).then((res) => {
  280. if (res.code !== 0) {
  281. return;
  282. }
  283. res.data.forEach(activity => {
  284. if ([1, 2, 3].includes(activity.type)) { // 情况一:拼团/秒杀/砍价
  285. state.activityList.push(activity);
  286. } else if (activity.type === 5) { // 情况二:满减送
  287. state.activityInfo.push(activity);
  288. } else { // 情况三:限时折扣 TODO 芋艿
  289. console.log('待实现!优先级不高');
  290. }
  291. })
  292. });
  293. getLink()
  294. });
  295. </script>
  296. <style lang="scss" scoped>
  297. .detail-card {
  298. background-color: #ffff;
  299. margin: 14rpx 20rpx;
  300. border-radius: 10rpx;
  301. overflow: hidden;
  302. }
  303. // 价格标题卡片
  304. .title-card {
  305. .price-box {
  306. .price-text {
  307. font-size: 42rpx;
  308. font-weight: 500;
  309. color: #ff3000;
  310. line-height: 30rpx;
  311. font-family: OPPOSANS;
  312. &::before {
  313. content: '¥';
  314. font-size: 30rpx;
  315. }
  316. }
  317. .origin-price-text {
  318. font-size: 26rpx;
  319. font-weight: 400;
  320. text-decoration: line-through;
  321. color: $gray-c;
  322. font-family: OPPOSANS;
  323. &::before {
  324. content: '¥';
  325. }
  326. }
  327. }
  328. .sales-text {
  329. font-size: 26rpx;
  330. font-weight: 500;
  331. color: $gray-c;
  332. }
  333. .discounts-box {
  334. .tag-content {
  335. flex: 1;
  336. min-width: 0;
  337. white-space: nowrap;
  338. }
  339. .tag-box {
  340. overflow: hidden;
  341. text-overflow: ellipsis;
  342. }
  343. .tag {
  344. flex-shrink: 0;
  345. padding: 4rpx 10rpx;
  346. font-size: 24rpx;
  347. font-weight: 500;
  348. border-radius: 4rpx;
  349. color: var(--ui-BG-Main);
  350. background: var(--ui-BG-Main-tag);
  351. }
  352. .discounts-title {
  353. font-size: 24rpx;
  354. font-weight: 500;
  355. color: var(--ui-BG-Main);
  356. line-height: normal;
  357. }
  358. .cicon-forward {
  359. color: var(--ui-BG-Main);
  360. font-size: 24rpx;
  361. line-height: normal;
  362. margin-top: 4rpx;
  363. }
  364. }
  365. .title-text {
  366. font-size: 30rpx;
  367. font-weight: bold;
  368. line-height: 42rpx;
  369. }
  370. .subtitle-text {
  371. font-size: 26rpx;
  372. font-weight: 400;
  373. color: $dark-9;
  374. line-height: 42rpx;
  375. }
  376. }
  377. // 购买
  378. .buy-box {
  379. .add-btn {
  380. width: 180rpx;
  381. height: 72rpx;
  382. font-weight: 500;
  383. font-size: 28rpx;
  384. border-radius: 40rpx 0 0 40rpx;
  385. background-color: var(--ui-BG-Main-light);
  386. color: var(--ui-BG-Main);
  387. }
  388. .buy-btn {
  389. width: 180rpx;
  390. height: 72rpx;
  391. font-weight: 500;
  392. font-size: 28rpx;
  393. border-radius: 0 40rpx 40rpx 0;
  394. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  395. color: $white;
  396. }
  397. .disabled-btn {
  398. width: 428rpx;
  399. height: 72rpx;
  400. border-radius: 40rpx;
  401. background: #999999;
  402. color: $white;
  403. }
  404. }
  405. .model-box {
  406. height: 60vh;
  407. .model-content {
  408. height: 56vh;
  409. }
  410. .title {
  411. font-size: 36rpx;
  412. font-weight: bold;
  413. color: #333333;
  414. }
  415. .subtitle {
  416. font-size: 26rpx;
  417. font-weight: 500;
  418. color: #333333;
  419. }
  420. }
  421. </style>