index.vue 14 KB

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