2023-11-14 17:21:03 +08:00
|
|
|
|
<template>
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<view class="goodsDetail">
|
2024-02-22 18:37:23 +08:00
|
|
|
|
<!-- <view :style="computedHeightStyle"></view>-->
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<Header
|
2024-02-22 18:37:23 +08:00
|
|
|
|
circle-back
|
2024-02-08 21:01:37 +08:00
|
|
|
|
ref="headerRef"
|
|
|
|
|
:propUp="false"
|
2024-02-22 18:37:23 +08:00
|
|
|
|
:scroll-top="scrollTop">
|
|
|
|
|
<template #right>
|
|
|
|
|
<view
|
|
|
|
|
class="share-icon"
|
|
|
|
|
@click="doShare(detailData.storeInfo)"
|
|
|
|
|
:style="computedShareIconStyle">
|
|
|
|
|
<uv-icon
|
|
|
|
|
color="#000"
|
|
|
|
|
name="share-square"
|
|
|
|
|
size="16"
|
|
|
|
|
/>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
</Header>
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<view v-if="!showEmpty">
|
|
|
|
|
<view v-if="detailData">
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<swiper
|
|
|
|
|
autoplay
|
|
|
|
|
circular
|
|
|
|
|
class="swiper detail"
|
|
|
|
|
indicator-dots>
|
|
|
|
|
<swiper-item
|
|
|
|
|
v-for="(item, index) in sliderImageData"
|
|
|
|
|
:key="index">
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<view class="swiper-item">
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<image
|
|
|
|
|
:src="item"
|
|
|
|
|
class="image"
|
|
|
|
|
mode="aspectFill" />
|
2023-11-22 18:55:55 +08:00
|
|
|
|
</view>
|
|
|
|
|
</swiper-item>
|
|
|
|
|
</swiper>
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<!-- 商品信息展示 -->
|
|
|
|
|
<DetailInfoExhibition
|
|
|
|
|
:goods-detail="detailData"
|
|
|
|
|
:sku="storeAttr"
|
|
|
|
|
@time-over="handleTimeOver" />
|
2023-11-14 17:21:03 +08:00
|
|
|
|
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<view class="row-context">
|
|
|
|
|
<view class="label-row">
|
|
|
|
|
<view class="left">
|
|
|
|
|
<view class="label">运费:</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="value">
|
|
|
|
|
{{
|
|
|
|
|
detailData.tempName !== "规定运费"
|
2024-02-08 21:01:37 +08:00
|
|
|
|
? detailData.tempName
|
|
|
|
|
: storeInfo.postage + "元"
|
2023-11-22 18:55:55 +08:00
|
|
|
|
}}
|
2023-11-14 17:21:03 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<view
|
2024-02-22 18:37:23 +08:00
|
|
|
|
v-if="detailData.couponSplicing"
|
2024-02-08 21:01:37 +08:00
|
|
|
|
class="label-row"
|
|
|
|
|
@click="discountCouponSelect('select')">
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<view class="label">
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<view class="text"> 促销:{{ detailData.couponSplicing }}</view>
|
2023-11-22 18:55:55 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="value">
|
|
|
|
|
领券
|
|
|
|
|
<uv-icon name="arrow-right" />
|
|
|
|
|
</view>
|
2023-11-14 17:21:03 +08:00
|
|
|
|
</view>
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<view
|
|
|
|
|
class="label-row"
|
|
|
|
|
@click="handleOpenSelect('select')">
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<view class="label">
|
|
|
|
|
<view class="text">
|
|
|
|
|
选择: {{ !storeAttr ? "请选择商品规格" : storeAttr.sku }}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="value">
|
|
|
|
|
<uv-icon name="arrow-right" />
|
2023-11-14 17:21:03 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<!-- 拼团成团展示 -->
|
|
|
|
|
<GroupByOrderList
|
|
|
|
|
:list="canGroupByList"
|
|
|
|
|
@active-list-item-time-over="handleActiveListItemTimeOver"
|
|
|
|
|
@do-group-by="handleDoGroupBy" />
|
|
|
|
|
|
|
|
|
|
<!-- 商品评价 -->
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<view class="card full">
|
2023-11-14 17:21:03 +08:00
|
|
|
|
<view
|
2024-02-08 21:01:37 +08:00
|
|
|
|
:style="{
|
2023-11-22 18:55:55 +08:00
|
|
|
|
borderBottom:
|
|
|
|
|
detailData.replyCount <= 0 ? 'none' : '1rpx solid #e6e6e6',
|
|
|
|
|
}"
|
2024-02-08 21:01:37 +08:00
|
|
|
|
class="card-head"
|
2023-11-22 18:55:55 +08:00
|
|
|
|
>
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<view
|
|
|
|
|
class="card-title"
|
|
|
|
|
>商品评价({{ detailData.replyCount }})
|
|
|
|
|
</view
|
2023-11-22 18:55:55 +08:00
|
|
|
|
>
|
|
|
|
|
<view
|
2024-02-08 21:01:37 +08:00
|
|
|
|
class="card-more"
|
|
|
|
|
@click="
|
2023-11-22 18:55:55 +08:00
|
|
|
|
push(
|
|
|
|
|
{ url: '/pages/goodsReply/goodsReply' },
|
|
|
|
|
{ data: { id: detailData.storeInfo.id } }
|
|
|
|
|
)
|
|
|
|
|
"
|
2024-02-08 21:01:37 +08:00
|
|
|
|
><span> 查看更多 </span>
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<uv-icon
|
2024-02-08 21:01:37 +08:00
|
|
|
|
color="rgb(187, 187, 187)"
|
|
|
|
|
name="arrow-right"
|
|
|
|
|
size="10"
|
2023-11-22 18:55:55 +08:00
|
|
|
|
/>
|
|
|
|
|
</view>
|
2023-11-14 17:21:03 +08:00
|
|
|
|
</view>
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<view
|
|
|
|
|
v-if="detailData.reply"
|
|
|
|
|
class="card-content">
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<detail-reply :data="detailData.reply"></detail-reply>
|
2023-11-14 17:21:03 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-02-08 21:01:37 +08:00
|
|
|
|
|
|
|
|
|
<blank size="15" />
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<view class="card full">
|
|
|
|
|
<view class="card-head">
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<view class="card-title"> 商品详情</view>
|
2023-11-22 18:55:55 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="goods-detail-content">
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<rich-text
|
|
|
|
|
:nodes="storeInfo.description"
|
|
|
|
|
bindtap="onOpenLink" />
|
2023-11-22 18:55:55 +08:00
|
|
|
|
</view>
|
2023-11-14 17:21:03 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<view class="coupon-select">
|
|
|
|
|
<good-coupon-select
|
2024-02-08 21:01:37 +08:00
|
|
|
|
:id="storeInfo.id"
|
|
|
|
|
ref="selectCouponPanel"
|
|
|
|
|
@select="handleSelectCoupon"
|
2023-11-22 18:55:55 +08:00
|
|
|
|
/>
|
|
|
|
|
</view>
|
2023-11-14 17:21:03 +08:00
|
|
|
|
</view>
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<view
|
2024-02-08 21:01:37 +08:00
|
|
|
|
v-if="detailData"
|
|
|
|
|
:class="detailData.storeInfo.isShow === 0 && 'off'"
|
|
|
|
|
class="action-bar"
|
2023-11-22 18:55:55 +08:00
|
|
|
|
>
|
|
|
|
|
<view class="off-tip">商品已经下架了啦~要不要瞧瞧别的~</view>
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<view class="action-cont flex flex-ai__center flex-jc__sb">
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<view class="action-icons">
|
|
|
|
|
<view class="action-icons-item">
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<view
|
|
|
|
|
class="action-icon"
|
|
|
|
|
@click="goToService">
|
|
|
|
|
<img
|
|
|
|
|
:src="productCustomerIcon"
|
|
|
|
|
class="action-icon-img" />
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<text class="action-icon-label">客服</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="action-icons-item">
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<view
|
|
|
|
|
class="action-icon"
|
|
|
|
|
@click="goToShopCart">
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<view class="action-icon-badge">
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<uv-badge
|
|
|
|
|
:value="cardCount"
|
|
|
|
|
max="99"
|
|
|
|
|
type="error"></uv-badge>
|
2023-11-22 18:55:55 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<image
|
|
|
|
|
:src="productCartIcon"
|
|
|
|
|
class="action-icon-img" />
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<text class="action-icon-label">购物车</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="action-icons-item">
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<view
|
|
|
|
|
class="action-icon"
|
|
|
|
|
@click="handleCollect">
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<image
|
2024-02-08 21:01:37 +08:00
|
|
|
|
v-if="!storeInfo?.userCollect"
|
|
|
|
|
:src="productCollectIcon"
|
|
|
|
|
class="action-icon-img"
|
2023-11-22 18:55:55 +08:00
|
|
|
|
/>
|
|
|
|
|
<image
|
2024-02-08 21:01:37 +08:00
|
|
|
|
v-if="storeInfo?.userCollect"
|
|
|
|
|
:src="productAffirmCollectIcon"
|
|
|
|
|
class="action-icon-img"
|
2023-11-22 18:55:55 +08:00
|
|
|
|
/>
|
|
|
|
|
<text class="action-icon-label">收藏</text>
|
|
|
|
|
</view>
|
2023-11-14 17:21:03 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<view class="action-btns">
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<!-- 普通商品 -->
|
|
|
|
|
<template v-if="!skuIsActivity">
|
|
|
|
|
<uv-button
|
|
|
|
|
:disabled="detailData.storeInfo.isShow === 0"
|
|
|
|
|
plain
|
|
|
|
|
text="加入购物车"
|
|
|
|
|
type="info"
|
|
|
|
|
@click="handleOpenSelect('cart')"
|
|
|
|
|
></uv-button>
|
|
|
|
|
<uv-button
|
|
|
|
|
:disabled="detailData.storeInfo.isShow === 0"
|
|
|
|
|
text="立即购买"
|
|
|
|
|
type="primary"
|
|
|
|
|
@click="handleOpenSelect('buy')"
|
|
|
|
|
></uv-button>
|
|
|
|
|
</template>
|
|
|
|
|
<!-- 活动商品 -->
|
|
|
|
|
<template v-else>
|
|
|
|
|
<!-- 拼团 -->
|
|
|
|
|
<template v-if="activityType===1">
|
|
|
|
|
<uv-button
|
|
|
|
|
:disabled="detailData.storeInfo.isShow === 0"
|
|
|
|
|
plain
|
|
|
|
|
text="单独购买"
|
|
|
|
|
type="info"
|
|
|
|
|
@click="handleOpenSelect('singleBuy')"
|
|
|
|
|
></uv-button>
|
|
|
|
|
<uv-button
|
|
|
|
|
v-if="storeAttr&&storeAttr.campaignState===1"
|
|
|
|
|
:disabled="detailData.storeInfo.isShow === 0"
|
|
|
|
|
text="立即开团"
|
|
|
|
|
type="primary"
|
|
|
|
|
@click="handleOpenSelect('activeBuy')"
|
|
|
|
|
></uv-button>
|
|
|
|
|
</template>
|
|
|
|
|
<!-- 秒杀 -->
|
|
|
|
|
<template v-if="activityType===2">
|
|
|
|
|
<uv-button
|
|
|
|
|
:disabled="detailData.storeInfo.isShow === 0"
|
|
|
|
|
plain
|
|
|
|
|
text="单独购买"
|
|
|
|
|
type="info"
|
|
|
|
|
@click="handleOpenSelect('singleBuy')"
|
|
|
|
|
></uv-button>
|
|
|
|
|
<uv-button
|
|
|
|
|
v-if="storeAttr&&storeAttr.campaignState===1"
|
|
|
|
|
:disabled="detailData.storeInfo.isShow === 0"
|
|
|
|
|
text="立即秒杀"
|
|
|
|
|
type="primary"
|
|
|
|
|
@click="handleOpenSelect('activeBuy')"
|
|
|
|
|
></uv-button>
|
|
|
|
|
</template>
|
|
|
|
|
<!-- 限时折扣 -->
|
|
|
|
|
<template v-if="activityType===3">
|
|
|
|
|
<uv-button
|
|
|
|
|
:disabled="detailData.storeInfo.isShow === 0"
|
|
|
|
|
plain
|
|
|
|
|
text="单独购买"
|
|
|
|
|
type="info"
|
|
|
|
|
@click="handleOpenSelect('singleBuy')"
|
|
|
|
|
></uv-button>
|
|
|
|
|
<uv-button
|
|
|
|
|
v-if="storeAttr&&storeAttr.campaignState===1"
|
|
|
|
|
:disabled="detailData.storeInfo.isShow === 0"
|
|
|
|
|
text="立享优惠"
|
|
|
|
|
type="primary"
|
|
|
|
|
@click="handleOpenSelect('activeBuy')"
|
|
|
|
|
></uv-button>
|
|
|
|
|
</template>
|
|
|
|
|
</template>
|
2023-11-14 17:21:03 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2023-11-22 18:55:55 +08:00
|
|
|
|
<ReturnTop :scroll-top="scrollTop" />
|
2023-11-14 17:21:03 +08:00
|
|
|
|
</view>
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<GoodEmpty v-else />
|
|
|
|
|
<Recommend />
|
2024-02-22 18:37:23 +08:00
|
|
|
|
<view style="height: 100rpx;"></view>
|
2024-02-08 21:01:37 +08:00
|
|
|
|
<GoodAttrSelect
|
|
|
|
|
v-if="detailData && storeAttr"
|
|
|
|
|
ref="selectAttrPanel"
|
|
|
|
|
:goods-detail="detailData"
|
|
|
|
|
:sku-id="storeAttr.id"
|
|
|
|
|
@select="handleSelectAttr"
|
|
|
|
|
/>
|
2024-02-22 18:37:23 +08:00
|
|
|
|
<GoodsSharePopup
|
|
|
|
|
ref="goodsShare"
|
|
|
|
|
@share="shareConfirm" />
|
|
|
|
|
|
|
|
|
|
<GoodsPoster ref="goodsPoster" />
|
2024-02-08 21:01:37 +08:00
|
|
|
|
</view>
|
2023-11-14 17:21:03 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2024-02-08 21:01:37 +08:00
|
|
|
|
import Recommend from '@/components/Recommend/index.vue'
|
|
|
|
|
import { productAffirmCollectIcon, productCartIcon, productCollectIcon, productCustomerIcon } from "@/utils/images";
|
|
|
|
|
import { computed, ref, unref } from 'vue'
|
2023-11-14 17:21:03 +08:00
|
|
|
|
import { collectSingle, getProductDetail, unCollectSingle } from '@/api/product'
|
|
|
|
|
import { getCartAdd, getCartCount } from '@/api/cart'
|
2024-02-22 18:37:23 +08:00
|
|
|
|
import { onLoad, onPageScroll, onShareAppMessage, onShareTimeline } from '@dcloudio/uni-app'
|
2023-11-14 17:21:03 +08:00
|
|
|
|
import { useRouter } from "@/hooks/useRouter";
|
|
|
|
|
import { useInterface } from "@/hooks/useInterface";
|
2023-11-22 18:55:55 +08:00
|
|
|
|
import Header from "@/components/Header/index.vue";
|
2023-11-14 17:21:03 +08:00
|
|
|
|
import GoodCouponSelect from "@/components/good-coupon-select/good-coupon-select.vue";
|
|
|
|
|
import UvIcon from "@/uni_modules/uv-icon/components/uv-icon/uv-icon.vue";
|
2023-11-15 19:59:37 +08:00
|
|
|
|
import { useScroll } from "@/hooks/useScroll";
|
2023-11-17 20:55:32 +08:00
|
|
|
|
import ReturnTop from "@/components/ReturnTop/index.vue"
|
2023-11-22 18:55:55 +08:00
|
|
|
|
import GoodEmpty from "@/pages/goodsDetail/components/GoodEmpty.vue";
|
2024-02-08 21:01:37 +08:00
|
|
|
|
import { SharePathKey, useShare } from "@/hooks/useShare";
|
|
|
|
|
import GoodAttrSelect from "@/components/good-attr-select/good-attr-select.vue";
|
|
|
|
|
import DetailInfoExhibition from "@/pages/goodsDetail/components/DetailInfoExhibition.vue";
|
|
|
|
|
import Blank from "@/components/blank/blank.vue";
|
|
|
|
|
import GroupByOrderList from "@/pages/goodsDetail/components/GroupByOrderList.vue";
|
|
|
|
|
import { getCanGroupByList } from "@/api/goods";
|
|
|
|
|
import { useService } from "@/hooks/useService";
|
2024-02-22 18:37:23 +08:00
|
|
|
|
import { useMainStore } from "@/store/modules/useMainStore";
|
2024-02-08 21:01:37 +08:00
|
|
|
|
import { storeToRefs } from "pinia";
|
2024-02-22 18:37:23 +08:00
|
|
|
|
import { useGlobalRequestStore } from "@/store/modules/useGlobalRequestStore";
|
|
|
|
|
import GoodsPoster from "@/components/Poster/Goods.vue";
|
|
|
|
|
import GoodsSharePopup from "@/components/Share/Goods.vue";
|
2023-11-22 18:55:55 +08:00
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
const {push, getParams, pushToTab, goBack} = useRouter();
|
|
|
|
|
const {toast} = useInterface();
|
|
|
|
|
const mainStore = useMainStore();
|
2024-02-22 18:37:23 +08:00
|
|
|
|
const globalRequestStore = useGlobalRequestStore();
|
|
|
|
|
const {user} = storeToRefs(mainStore)
|
2024-02-08 21:01:37 +08:00
|
|
|
|
// =========================== 分享 =================================
|
2024-02-22 18:37:23 +08:00
|
|
|
|
const {shareAppMessage, shareTimeline, goodsDetailShare, shareH5} = useShare()
|
2024-02-08 21:01:37 +08:00
|
|
|
|
onShareAppMessage(shareAppMessage)
|
|
|
|
|
onShareTimeline(shareTimeline)
|
2024-02-22 18:37:23 +08:00
|
|
|
|
const goodsShare = ref()
|
|
|
|
|
const goodsPoster = ref()
|
|
|
|
|
|
|
|
|
|
function doShare(goods) {
|
|
|
|
|
console.log(goods)
|
|
|
|
|
goodsShare.value.open('分享商品', goods)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function shareConfirm(shareItem, goods) {
|
|
|
|
|
await globalRequestStore.doShareToAddIntegral()
|
|
|
|
|
goodsDetailShare(goods)
|
|
|
|
|
if (shareItem.value === 'photo') {
|
|
|
|
|
goodsPoster.value.open(goods)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if (shareItem.value === 'wechat') {
|
|
|
|
|
shareH5()
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-11-15 19:59:37 +08:00
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
// =========================== hooks 生命周期 =================================
|
|
|
|
|
const {scrollTop} = useScroll()
|
2024-02-22 18:37:23 +08:00
|
|
|
|
onPageScroll(() => {
|
|
|
|
|
})
|
2024-02-08 21:01:37 +08:00
|
|
|
|
const paramsObj = ref({})
|
|
|
|
|
onLoad((options) => {
|
|
|
|
|
const params = getParams(options)
|
|
|
|
|
// teamworkId id skuId
|
|
|
|
|
paramsObj.value = params
|
|
|
|
|
// 从拼团参团跳入
|
|
|
|
|
handleJumpFromGroupByInvite(params)
|
|
|
|
|
// 处理从分销商商品分享进入
|
|
|
|
|
handleJumpFromDistributionInvite(params)
|
|
|
|
|
handleGetDetail({productId: params.id, skuId: params.skuId ? params.skuId : ''})
|
2024-02-22 18:37:23 +08:00
|
|
|
|
if (user.value) {
|
2024-02-08 21:01:37 +08:00
|
|
|
|
handleGetCartCount(params.id)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 处理从拼团跳转进入
|
|
|
|
|
* @param params
|
|
|
|
|
*/
|
|
|
|
|
function handleJumpFromGroupByInvite(params) {
|
|
|
|
|
if (!params.teamworkId) return
|
|
|
|
|
groupByOrderInfo.value = {
|
|
|
|
|
id: params.teamworkId,
|
|
|
|
|
skuId: params.skuId
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 分销商ID
|
|
|
|
|
const distributorId = ref()
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 处理分销商品
|
|
|
|
|
* @param params
|
|
|
|
|
*/
|
|
|
|
|
function handleJumpFromDistributionInvite(params) {
|
|
|
|
|
if (!(params.t && params.t === SharePathKey.DISTRIBUTION_GOODS)) return
|
|
|
|
|
distributorId.value = params.uid
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// =========================== 计算属性 =================================
|
|
|
|
|
const headerRef = ref();
|
|
|
|
|
/** 获取头部高度 */
|
2023-11-15 19:59:37 +08:00
|
|
|
|
const computedHeightStyle = computed(() => {
|
2024-02-08 21:01:37 +08:00
|
|
|
|
const style = {width: '100 %', height: 0, background: '#f5f5f5'}
|
2023-11-15 19:59:37 +08:00
|
|
|
|
if (!headerRef.value || !headerRef.value.heightInfo) return style
|
|
|
|
|
return {...style, height: `${ headerRef.value.heightInfo.statusBarHeight }px`}
|
|
|
|
|
})
|
|
|
|
|
|
2024-02-22 18:37:23 +08:00
|
|
|
|
const computedShareIconStyle = computed(() => {
|
|
|
|
|
const style = {width: '32px', height: '32px'}
|
|
|
|
|
if (!headerRef.value || headerRef.value?.menuInfo.height === 0) return style
|
|
|
|
|
return {
|
|
|
|
|
width: headerRef.value.menuInfo.height + 'px',
|
|
|
|
|
height: headerRef.value.menuInfo.height + 'px',
|
|
|
|
|
}
|
|
|
|
|
})
|
2024-02-08 21:01:37 +08:00
|
|
|
|
/** 选中的sku是否是活动sku */
|
|
|
|
|
const skuIsActivity = computed(() => {
|
|
|
|
|
if (!storeAttr.value) return false
|
|
|
|
|
return [1, 2, 3].includes(Number(storeAttr.value.campaignType))
|
2023-11-15 19:59:37 +08:00
|
|
|
|
})
|
2023-11-14 17:21:03 +08:00
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
/** 活动类型 1、拼团,2、秒杀,3、限时折扣 */
|
|
|
|
|
const activityType = computed(() => Number(storeAttr.value && storeAttr.value.campaignType))
|
2023-11-22 18:55:55 +08:00
|
|
|
|
|
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
// ======================== 数据相关 ===================================
|
|
|
|
|
const detailData = ref(null); // 商品详情(包括详细信息、sku信息、满减信息等)
|
|
|
|
|
const sliderImageData = ref([]); // 商品轮播图信息
|
|
|
|
|
const storeInfo = ref(null); // 当前商品的详细信息
|
|
|
|
|
const cardCount = ref(null);
|
|
|
|
|
const showEmpty = ref(false)
|
2023-11-22 18:55:55 +08:00
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
/**
|
|
|
|
|
* 获取商品详情
|
|
|
|
|
* @param data
|
|
|
|
|
* @param data.skuId skuId
|
|
|
|
|
* @param data.productId productId
|
|
|
|
|
* @return {Promise<void>}
|
|
|
|
|
*/
|
|
|
|
|
const handleGetDetail = async (data) => {
|
2023-11-14 17:21:03 +08:00
|
|
|
|
try {
|
2024-02-08 21:01:37 +08:00
|
|
|
|
const detail = await getProductDetail(data);
|
|
|
|
|
if (!detail) return showEmpty.value = true
|
|
|
|
|
console.log(detail)
|
|
|
|
|
// 设置商品分享
|
|
|
|
|
goodsDetailShare(detail.storeInfo)
|
|
|
|
|
setGoodsDetail(detail)
|
|
|
|
|
setDefaultAttr(detail)
|
|
|
|
|
await handleGetCanGroupByList()
|
2023-11-14 17:21:03 +08:00
|
|
|
|
} catch (error) {
|
2024-02-22 18:37:23 +08:00
|
|
|
|
console.dir(error)
|
2023-11-14 17:21:03 +08:00
|
|
|
|
}
|
2023-11-22 18:55:55 +08:00
|
|
|
|
};
|
2023-11-14 17:21:03 +08:00
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
/**
|
|
|
|
|
* 处理商品详情逻辑
|
|
|
|
|
* @param detail
|
|
|
|
|
*/
|
|
|
|
|
const setGoodsDetail = (detail) => {
|
|
|
|
|
detailData.value = detail;
|
|
|
|
|
sliderImageData.value = detail.storeInfo.sliderImage.split(",");
|
|
|
|
|
storeInfo.value = detail.storeInfo
|
|
|
|
|
storeInfo.value.description = detail.storeInfo.description.replace(
|
|
|
|
|
/<img /g,
|
|
|
|
|
"<img style='width:100%;' "
|
|
|
|
|
);
|
|
|
|
|
}
|
2023-11-14 17:21:03 +08:00
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
/**
|
|
|
|
|
* 处理sku逻辑
|
|
|
|
|
* @param detail
|
|
|
|
|
*/
|
|
|
|
|
const setDefaultAttr = (detail) => {
|
|
|
|
|
// 是否有skuId,有skuId就选择skuId对应属性,没有就默认选择第一个
|
|
|
|
|
const defaultSkuId = paramsObj.value.skuId || undefined
|
|
|
|
|
// 带SKU属性
|
|
|
|
|
let defaultSku
|
|
|
|
|
if (!!defaultSkuId) {
|
|
|
|
|
for (const skuName in detail.productValue) {
|
|
|
|
|
const sku = detail.productValue[skuName]
|
|
|
|
|
if (sku.id === defaultSkuId) {
|
|
|
|
|
defaultSku = sku
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// 找到了sku
|
|
|
|
|
if (defaultSku && defaultSku.stock > 0) {
|
|
|
|
|
return handleSelectAttr({
|
|
|
|
|
store: defaultSku,
|
|
|
|
|
num: 1
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
toast({title: '当前活动规格售罄拉~看看其他的规格吧'})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// 没找到走普通sku逻辑
|
|
|
|
|
// 获取到所有sku key 直接选择有库存的第一个
|
|
|
|
|
const skuNameList = Reflect.ownKeys(detail.productValue)
|
|
|
|
|
if (skuNameList.length > 0) {
|
|
|
|
|
for (const skuName of skuNameList) {
|
|
|
|
|
const sku = detail.productValue[skuName];
|
|
|
|
|
if (sku.stock > 0) {
|
|
|
|
|
defaultSku = sku
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!defaultSku) return
|
|
|
|
|
handleSelectAttr({
|
|
|
|
|
store: defaultSku,
|
|
|
|
|
num: 1
|
|
|
|
|
})
|
2023-11-22 18:55:55 +08:00
|
|
|
|
}
|
2024-02-08 21:01:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取购物车数量
|
|
|
|
|
* @return {Promise<void>}
|
|
|
|
|
*/
|
|
|
|
|
const handleGetCartCount = async () => {
|
|
|
|
|
const count = await getCartCount();
|
|
|
|
|
cardCount.value = count.count;
|
2023-11-22 18:55:55 +08:00
|
|
|
|
};
|
2023-11-14 17:21:03 +08:00
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
// =========================== 优惠券相关 ==================================
|
|
|
|
|
const selectCouponPanel = ref(false); // 优惠券选择器
|
|
|
|
|
const selectCoupon = ref(false); // 选中的优惠券
|
2023-11-14 17:21:03 +08:00
|
|
|
|
const discountCouponSelect = () => {
|
2023-11-22 18:55:55 +08:00
|
|
|
|
selectCouponPanel.value.open();
|
|
|
|
|
};
|
2024-02-08 21:01:37 +08:00
|
|
|
|
const handleSelectCoupon = (coupon) => {
|
|
|
|
|
selectCoupon.value = coupon;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// =========================== Sku相关 ==================================
|
|
|
|
|
const actionType = ref(''); // 打开sku选择器的类型
|
|
|
|
|
const storeAttr = ref(); // 选中的sku
|
|
|
|
|
const storeNum = ref(0); // sku的库存数量
|
|
|
|
|
const selectAttrPanel = ref(); // sku选择器
|
|
|
|
|
const groupByOrderInfo = ref(); // 去拼团信息,没有就是开团
|
|
|
|
|
/**
|
|
|
|
|
* 打开sku选择器
|
|
|
|
|
* @param action select:普通选择 cart:购物车选择 buy:普通下单 activeBuy:活动下单 singleBuy:单独购买
|
|
|
|
|
*/
|
|
|
|
|
const handleOpenSelect = (action) => {
|
|
|
|
|
if (unref(detailData).storeInfo.isShow !== 1) return
|
|
|
|
|
actionType.value = action;
|
|
|
|
|
selectAttrPanel.value.open(storeNum.value, action);
|
|
|
|
|
}
|
2023-11-14 17:21:03 +08:00
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
/**
|
|
|
|
|
* sku选择器确认
|
|
|
|
|
* @param attr sku
|
|
|
|
|
*/
|
2023-11-14 17:21:03 +08:00
|
|
|
|
const handleSelectAttr = (attr) => {
|
2023-11-22 18:55:55 +08:00
|
|
|
|
storeAttr.value = attr.store;
|
|
|
|
|
storeNum.value = attr.num;
|
2023-11-14 17:21:03 +08:00
|
|
|
|
switch (actionType.value) {
|
2023-11-22 18:55:55 +08:00
|
|
|
|
case "select":
|
2024-02-08 21:01:37 +08:00
|
|
|
|
handleGetCanGroupByList();
|
2023-11-14 17:21:03 +08:00
|
|
|
|
break;
|
2023-11-22 18:55:55 +08:00
|
|
|
|
case "cart":
|
|
|
|
|
handleCardAdd();
|
2024-02-08 21:01:37 +08:00
|
|
|
|
handleGetCanGroupByList()
|
|
|
|
|
break;
|
|
|
|
|
case "singleBuy": // 单独购买
|
|
|
|
|
// 点击了普通下单但是规格是活动
|
|
|
|
|
handleBuy(1);
|
|
|
|
|
break;
|
|
|
|
|
case "buy": // 普通下单
|
|
|
|
|
// 点击了普通下单但是规格是活动
|
|
|
|
|
if (attr.store.campaignType) {
|
|
|
|
|
handleBuy(2)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
handleBuy(1);
|
|
|
|
|
break;
|
|
|
|
|
case "activeBuy": // 活动下单
|
|
|
|
|
// 限制拼团切换sku
|
|
|
|
|
if (!!groupByOrderInfo.value && attr.store.id !== groupByOrderInfo.value.skuId) {
|
|
|
|
|
toast({title: '检测到您正在和他人拼团,请勿选择其他规格'})
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
// 活动下单但是切换了sku
|
|
|
|
|
if (!attr.store.campaignType) {
|
|
|
|
|
toast({title: '检测切换了其他规格,可能不享受活动优惠'})
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
handleBuy(1)
|
|
|
|
|
}, 1500)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
handleBuy(2)
|
2023-11-14 17:21:03 +08:00
|
|
|
|
break;
|
2024-02-08 21:01:37 +08:00
|
|
|
|
default:
|
|
|
|
|
handleGetCanGroupByList();
|
2023-11-14 17:21:03 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2023-11-22 18:55:55 +08:00
|
|
|
|
actionType.value = "";
|
2024-02-22 18:37:23 +08:00
|
|
|
|
selectAttrPanel.value?.close();
|
2023-11-22 18:55:55 +08:00
|
|
|
|
};
|
2023-11-14 17:21:03 +08:00
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
/**
|
|
|
|
|
* 添加进购物车
|
|
|
|
|
* @return {Promise<void>}
|
|
|
|
|
*/
|
2023-11-14 17:21:03 +08:00
|
|
|
|
const handleCardAdd = async () => {
|
2024-02-08 21:01:37 +08:00
|
|
|
|
await getCartAdd({
|
2023-11-14 17:21:03 +08:00
|
|
|
|
cartNum: storeNum.value,
|
|
|
|
|
productId: storeAttr.value.productId,
|
|
|
|
|
uniqueId: storeAttr.value.unique,
|
2023-11-22 18:55:55 +08:00
|
|
|
|
new: 0,
|
|
|
|
|
});
|
2024-02-08 21:01:37 +08:00
|
|
|
|
await handleGetCartCount();
|
|
|
|
|
toast({title: '加入成功', icon: 'success'})
|
2023-11-22 18:55:55 +08:00
|
|
|
|
};
|
2023-11-14 17:21:03 +08:00
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
/**
|
|
|
|
|
* 下单
|
|
|
|
|
* @param orderType 1、普通下单,2、商品活动下单
|
|
|
|
|
* @return {Promise<void>}
|
|
|
|
|
*/
|
|
|
|
|
const handleBuy = async (orderType = 1) => {
|
2023-11-14 17:21:03 +08:00
|
|
|
|
uni.showLoading({
|
2023-11-22 18:55:55 +08:00
|
|
|
|
title: "加载中",
|
2023-11-14 17:21:03 +08:00
|
|
|
|
});
|
|
|
|
|
let res = await getCartAdd({
|
2024-02-08 21:01:37 +08:00
|
|
|
|
orderType,
|
2023-11-14 17:21:03 +08:00
|
|
|
|
cartNum: storeNum.value,
|
|
|
|
|
productId: storeAttr.value.productId,
|
|
|
|
|
uniqueId: storeAttr.value.unique,
|
2023-11-22 18:55:55 +08:00
|
|
|
|
new: 1,
|
2024-02-08 21:01:37 +08:00
|
|
|
|
teamworkId: groupByOrderInfo.value?.id || '',
|
2023-11-22 18:55:55 +08:00
|
|
|
|
});
|
2023-11-14 17:21:03 +08:00
|
|
|
|
uni.hideLoading();
|
2024-02-08 21:01:37 +08:00
|
|
|
|
const data = handleSubmitParams(orderType, groupByOrderInfo.value, res)
|
2023-11-22 18:55:55 +08:00
|
|
|
|
push(
|
2024-02-08 21:01:37 +08:00
|
|
|
|
{url: "/pages/submitOrder/submitOrder"},
|
|
|
|
|
{data}
|
2023-11-22 18:55:55 +08:00
|
|
|
|
);
|
|
|
|
|
};
|
2023-11-14 17:21:03 +08:00
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
/**
|
|
|
|
|
* 处理跳转参数
|
|
|
|
|
* @param orderType
|
|
|
|
|
* @param groupByOrderInfo
|
|
|
|
|
* @param cardRes 下单购物车返回信息
|
|
|
|
|
* @return {{orderType, campaignDetailId: any, campaignType: any, cartId, teamworkType: number}|{orderType, cartId}}
|
|
|
|
|
*/
|
|
|
|
|
const handleSubmitParams = (orderType, groupByOrderInfo, cardRes) => {
|
|
|
|
|
let data = {
|
|
|
|
|
cartId: cardRes.cartId,
|
|
|
|
|
orderType
|
|
|
|
|
}
|
|
|
|
|
// 判断有没有经销商
|
|
|
|
|
if (distributorId.value) {
|
|
|
|
|
data.distributorId = distributorId.value
|
|
|
|
|
}
|
|
|
|
|
// 活动
|
|
|
|
|
if (orderType === 2) {
|
|
|
|
|
data.campaignType = storeAttr.value.campaignType
|
|
|
|
|
data.campaignDetailId = storeAttr.value.campaignDetailId
|
|
|
|
|
data.teamworkType = 1 // 1开团
|
|
|
|
|
// 和他人拼团
|
|
|
|
|
if (!!groupByOrderInfo) {
|
|
|
|
|
data.teamworkType = 2
|
|
|
|
|
data.teamworkId = groupByOrderInfo.id
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return data
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 收藏
|
|
|
|
|
* @return {Promise<void>}
|
|
|
|
|
*/
|
2023-11-14 17:21:03 +08:00
|
|
|
|
const handleCollect = async () => {
|
2023-11-22 18:55:55 +08:00
|
|
|
|
const goodInfo = unref(storeInfo);
|
|
|
|
|
const isCollect = goodInfo.userCollect;
|
2023-11-14 17:21:03 +08:00
|
|
|
|
const data = {
|
|
|
|
|
productId: goodInfo.id,
|
2023-11-22 18:55:55 +08:00
|
|
|
|
type: "collect",
|
|
|
|
|
category: "common",
|
|
|
|
|
};
|
2023-11-14 17:21:03 +08:00
|
|
|
|
if (isCollect) {
|
|
|
|
|
// 取消
|
2023-11-22 18:55:55 +08:00
|
|
|
|
await unCollectSingle(data);
|
2023-11-14 17:21:03 +08:00
|
|
|
|
} else {
|
|
|
|
|
// 收藏
|
2023-11-22 18:55:55 +08:00
|
|
|
|
await collectSingle(data);
|
2023-11-14 17:21:03 +08:00
|
|
|
|
}
|
2023-11-22 18:55:55 +08:00
|
|
|
|
goodInfo.userCollect = !goodInfo.userCollect;
|
2024-02-08 21:01:37 +08:00
|
|
|
|
isCollect ? toast({title: "已取消收藏"}) : toast({title: "已收藏"});
|
2023-11-22 18:55:55 +08:00
|
|
|
|
};
|
2023-11-14 17:21:03 +08:00
|
|
|
|
|
2024-02-08 21:01:37 +08:00
|
|
|
|
// =========================== 活动相关 =======================================
|
|
|
|
|
/**
|
|
|
|
|
* 活动倒计时结束
|
|
|
|
|
*/
|
|
|
|
|
const handleTimeOver = () => {
|
|
|
|
|
handleGetDetail({productId: paramsObj.value.id, skuId: paramsObj.value.skuId ? paramsObj.value.skuId : ''})
|
|
|
|
|
handleGetCartCount(paramsObj.value.id)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 可拼团订单
|
|
|
|
|
const canGroupByList = ref([]);
|
|
|
|
|
/**
|
|
|
|
|
* 获取可拼团列表
|
|
|
|
|
* @return {Promise<void>}
|
|
|
|
|
*/
|
|
|
|
|
const handleGetCanGroupByList = async () => {
|
|
|
|
|
canGroupByList.value = []
|
|
|
|
|
const data = await getCanGroupByList({skuId: storeAttr.value.id});
|
|
|
|
|
canGroupByList.value = data || []
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 拼团项倒计时结束
|
|
|
|
|
*/
|
|
|
|
|
const handleActiveListItemTimeOver = () => {
|
|
|
|
|
handleGetCanGroupByList()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 和他人拼团
|
|
|
|
|
* @param orderInfo
|
|
|
|
|
*/
|
|
|
|
|
const handleDoGroupBy = (orderInfo) => {
|
|
|
|
|
handleOpenSelect('activeBuy')
|
|
|
|
|
groupByOrderInfo.value = orderInfo
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// =========================== 跳转相关 ========================================
|
|
|
|
|
/**
|
|
|
|
|
* 去客服
|
|
|
|
|
*/
|
|
|
|
|
const goToService = async () => {
|
2024-02-22 18:37:23 +08:00
|
|
|
|
const {getServiceData, openService} = useService();
|
2024-02-08 21:01:37 +08:00
|
|
|
|
await getServiceData()
|
|
|
|
|
await openService()
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 去购物车
|
|
|
|
|
*/
|
|
|
|
|
const goToShopCart = () => {
|
|
|
|
|
push({
|
|
|
|
|
url: "/pages/shoppingCartJump/shoppingCart",
|
|
|
|
|
});
|
2023-11-22 18:55:55 +08:00
|
|
|
|
};
|
2023-11-14 17:21:03 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
2024-02-22 18:37:23 +08:00
|
|
|
|
.share-icon {
|
|
|
|
|
width: 64rpx;
|
|
|
|
|
height: 64rpx;
|
|
|
|
|
background: rgba(255, 255, 255, 0.7);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
box-shadow: 0 0 10rpx rgba(225, 225, 225, 0.48);
|
|
|
|
|
border: 1rpx solid rgba(225, 225, 225, 0.8);
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-14 17:21:03 +08:00
|
|
|
|
.search {
|
|
|
|
|
padding: 0 17px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
width: 63px;
|
|
|
|
|
height: 25px;
|
|
|
|
|
|
|
|
|
|
.image {
|
|
|
|
|
width: 63px;
|
|
|
|
|
height: 25px;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.swiper {
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
.image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.goodsDetail {
|
|
|
|
|
width: 100%;
|
2024-02-22 18:37:23 +08:00
|
|
|
|
overflow-x: hidden;
|
2023-11-14 17:21:03 +08:00
|
|
|
|
|
|
|
|
|
&-storeName {
|
|
|
|
|
line-height: 40rpx;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #333333;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-price {
|
|
|
|
|
&-row {
|
|
|
|
|
margin-bottom: 17rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-primary {
|
|
|
|
|
line-height: 50rpx;
|
|
|
|
|
font-size: 50rpx;
|
2023-11-22 18:55:55 +08:00
|
|
|
|
color: #ee6d46;
|
2023-11-14 17:21:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-default {
|
|
|
|
|
line-height: 40rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-original {
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
line-height: 28rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #999999;
|
|
|
|
|
text-decoration: line-through;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-info {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 30rpx 35rpx;
|
|
|
|
|
// display: flex;
|
|
|
|
|
// align-items: flex-end;
|
|
|
|
|
// justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
&-action {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
&-tags {
|
|
|
|
|
.uv-tags {
|
|
|
|
|
margin-right: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-desc {
|
|
|
|
|
line-height: 28rpx;
|
|
|
|
|
font-size: 20rpx;
|
|
|
|
|
color: #999999;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-image {
|
|
|
|
|
&-img {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-list {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
padding: 14rpx;
|
|
|
|
|
|
|
|
|
|
.goods {
|
|
|
|
|
&-thumb {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
width: 220rpx;
|
|
|
|
|
height: 220rpx;
|
|
|
|
|
|
|
|
|
|
&-img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-content {
|
|
|
|
|
padding-right: 40rpx;
|
|
|
|
|
margin-left: 30rpx;
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.buy-progress {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
&-info {
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
|
|
&-desc {
|
|
|
|
|
color: #999999;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
line-height: 32rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-action {
|
|
|
|
|
margin-left: 17rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.buy-num {
|
|
|
|
|
&-info-desc {
|
|
|
|
|
color: #999999;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
line-height: 32rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.goods-detail-content {
|
|
|
|
|
padding: 34rpx;
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:deep(.coupon-select) .uni-popup__wrapper {
|
|
|
|
|
height: auto;
|
|
|
|
|
max-height: 1000rpx;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:deep(.uv-icon) {
|
|
|
|
|
flex-shrink: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ======================= 👇 kahu ===
|
|
|
|
|
.row-context {
|
2023-11-15 19:59:37 +08:00
|
|
|
|
margin: 30rpx 0;
|
|
|
|
|
|
2023-11-14 17:21:03 +08:00
|
|
|
|
.label-row {
|
|
|
|
|
@include useFlex(space-between, center);
|
|
|
|
|
@include usePadding(30, 20);
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: $white-color;
|
|
|
|
|
border-bottom: 1rpx solid #f5f5f5;
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.label {
|
|
|
|
|
max-width: 85%;
|
|
|
|
|
@include useFlex(flex-start, center);
|
|
|
|
|
color: $tips-color;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
flex-grow: 0;
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
flex-grow: 0;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.value {
|
|
|
|
|
@include useFlex(flex-end, center);
|
|
|
|
|
flex-shrink: 0;
|
2023-11-15 19:59:37 +08:00
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.swiper {
|
|
|
|
|
.swiper-item {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
.image {
|
|
|
|
|
width: inherit;
|
|
|
|
|
height: inherit;
|
2023-11-14 17:21:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|