988 lines
26 KiB
Vue
988 lines
26 KiB
Vue
<template>
|
|
<view class="content">
|
|
<!-- <backIcon></backIcon> -->
|
|
<!-- 轮播图 -->
|
|
<u-swiper
|
|
:list="bannerImgList"
|
|
:height="isWidth"
|
|
circular
|
|
:autoplay="false"
|
|
indicator
|
|
indicatorMode="dot"
|
|
></u-swiper>
|
|
<view class="contxt">
|
|
<view v-if="goodDetail.preSaleStatus == 1">
|
|
<view class="sTop">
|
|
<view class="sTop_l">
|
|
<view class="disFlex">
|
|
<view class="bao" v-if="goodDetail.prefixLabelTarget"
|
|
>[{{ goodDetail.prefixLabelTarget.label }}]
|
|
</view>
|
|
<view class="t_hei">{{ goodDetail.waresName }}</view>
|
|
</view>
|
|
<view class="f1">
|
|
{{ formatPriceToThousandth(goodDetail.goodsPrice) }}
|
|
</view>
|
|
<view class="disFlex1">
|
|
<img src="@/static/images/clock.png" alt="" />
|
|
<view class="f2">{{ '预计发货' }}</view>
|
|
</view>
|
|
</view>
|
|
<view class="sTop_l">
|
|
<view class="f2" v-if="specialArea != 18 && specialArea != 13"
|
|
>业绩:{{ formatPriceToThousandth(goodDetail.goodsAchive) }}
|
|
</view>
|
|
<view class="f3">
|
|
<view>{{ '剩余时间' }}:{{ countDown }}</view>
|
|
<!-- <view></view> -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="kuang1">
|
|
<view class="disFlex">
|
|
<view class="t_hui">销量:{{ formatSales(goodDetail.sales) }}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="kuang" v-else>
|
|
<view class="disFlex">
|
|
<view class="bao" v-if="goodDetail.prefixLabelTarget"
|
|
>[{{ goodDetail.prefixLabelTarget.label }}]
|
|
</view>
|
|
<view class="t_hei">{{ goodDetail.waresName }}</view>
|
|
</view>
|
|
<view class="t_hui1">销量:{{ formatSales(goodDetail.sales) }}</view>
|
|
<view class="disFlex">
|
|
<view class="t_red">{{
|
|
formatNumberToCurrency(goodDetail.goodsPrice, isLocalCurrency())
|
|
}}</view>
|
|
<view
|
|
class="t_hui"
|
|
v-if="
|
|
specialArea != 18 &&
|
|
specialArea != 13 &&
|
|
specialArea != 31 &&
|
|
specialArea != 10
|
|
"
|
|
>业绩:{{ formatNumberToCurrency(goodDetail.goodsAchive) }}</view
|
|
>
|
|
<view class="t_hui" v-if="specialArea == 10"
|
|
>积分可抵扣:{{
|
|
formatNumberToCurrency(goodDetail.deductMoney)
|
|
}}</view
|
|
>
|
|
<view
|
|
class="t_hui"
|
|
v-if="goodDetail.specialArea == 31 && user.isMakerSpace == 0"
|
|
>业绩:{{ formatNumberToCurrency(goodDetail.goodsAchive) }}</view
|
|
>
|
|
<view class="t_hui" v-if="specialArea == 13"
|
|
>BV:{{ formatNumberToCurrency(goodDetail.goodsAssAchive) }}</view
|
|
>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="kuang t_hei">
|
|
{{ '急速下单即享优先发货' }}
|
|
</view> -->
|
|
<view class="kuang">
|
|
<view class="sku-selection-container">
|
|
<text class="sku-selection-title">规格:</text>
|
|
<!-- Moved from popup body: SKU details -->
|
|
<view class="sku-options-list">
|
|
<view
|
|
v-for="(item, groupIndex) in goodDetail.productParams"
|
|
:key="item.productId"
|
|
class="sku-product-group"
|
|
>
|
|
<view class="sku-product-name"
|
|
>{{ item.productName }} 应选 {{ item.quantity }} 已选
|
|
<text
|
|
style="margin-left: 10rpx"
|
|
:class="{
|
|
'warning-text':
|
|
getCurrentlySelectedCount(item) < item.quantity,
|
|
}"
|
|
>{{ getCurrentlySelectedCount(item) }}
|
|
</text>
|
|
</view>
|
|
<u-row gutter="16" style="flex-wrap: wrap">
|
|
<u-col
|
|
:span="item.waresItemsParamsList.length === 1 ? 12 : 6"
|
|
v-for="(ctem, cndex) in item.waresItemsParamsList"
|
|
:key="ctem.pkSkuId"
|
|
class="sku-col-item"
|
|
>
|
|
<view class="sku-item">
|
|
<img :src="ctem.specCover" alt="" class="sku-item-cover" />
|
|
<view class="sku-item-content-right">
|
|
<view class="sku-item-name">{{ ctem.specsName }}</view>
|
|
<u-number-box
|
|
:min="0"
|
|
:max="ctem.maxNum"
|
|
@change="getNum(groupIndex, cndex, $event)"
|
|
v-model="ctem.quantity"
|
|
>
|
|
<template v-slot:minus>
|
|
<view :class="ctem.quantity == 0 ? 'hui' : 'minus'">
|
|
<u-icon
|
|
name="minus"
|
|
color="#FFFFFF"
|
|
size="12"
|
|
></u-icon>
|
|
</view>
|
|
</template>
|
|
<template v-slot:input>
|
|
<text class="input">{{ ctem.quantity }}</text>
|
|
</template>
|
|
<template v-slot:plus>
|
|
<view :class="ctem.quantity == 0 ? 'hui' : 'plus'">
|
|
<u-icon
|
|
name="plus"
|
|
color="#FFFFFF"
|
|
size="12"
|
|
></u-icon>
|
|
</view>
|
|
</template>
|
|
</u-number-box>
|
|
</view>
|
|
</view>
|
|
</u-col>
|
|
</u-row>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- END: Integrated SKU selection -->
|
|
|
|
<view class="heng">
|
|
<view class="disFlex">
|
|
<view class="label">{{ '服务承诺' }}</view>
|
|
<view
|
|
class="label1"
|
|
v-for="item in goodDetail.ensureLabelList"
|
|
:key="item.pkId"
|
|
>{{ item.label }}</view
|
|
>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="bTit">
|
|
<view>{{ '商品详情' }}</view>
|
|
<view class="btm"></view>
|
|
</view>
|
|
<u-parse :content="goodDetail.details"></u-parse>
|
|
</view>
|
|
|
|
<!-- 占空 -->
|
|
<view style="height: 150rpx"></view>
|
|
<!-- 底部 -->
|
|
<view class="footer_f">
|
|
<view class="footer">
|
|
<view class="footer_l">
|
|
<view class="footer_li footer_ll" @click="toIndex">
|
|
<u-icon size="18" name="home"></u-icon>
|
|
<view>{{ '首页' }}</view>
|
|
</view>
|
|
|
|
<view
|
|
class="footer_li footer_ll"
|
|
@click="toCart"
|
|
v-if="
|
|
(specialArea == 31 && user.isMakerSpace == 0) || specialArea != 31
|
|
"
|
|
>
|
|
<u-icon size="20" name="shopping-cart"></u-icon>
|
|
<view class="qiu">{{ shopCarLength }}</view>
|
|
<view>{{ '购物车' }}</view>
|
|
</view>
|
|
</view>
|
|
<view
|
|
class="footer_r"
|
|
v-if="
|
|
(specialArea == 31 && user.isMakerSpace == 0) || specialArea != 31
|
|
"
|
|
>
|
|
<view class="btn1" @click="addCar()">加入购物车</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 选择规格 -->
|
|
<selSpaceGoods ref="selSpaceGoods" @getCar="getCatLength"></selSpaceGoods>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import backIcon from '@/components/backIcon.vue'
|
|
import * as api from '@/config/goods'
|
|
import { mapGetters } from 'vuex'
|
|
import selSpaceGoods from '@/components/selSpaceGoods.vue'
|
|
export default {
|
|
components: {
|
|
backIcon,
|
|
selSpaceGoods,
|
|
},
|
|
data() {
|
|
return {
|
|
waresCode: '',
|
|
specialArea: '',
|
|
goodDetail: '',
|
|
imgUrlList: [],
|
|
skuString: '',
|
|
num: 1,
|
|
isWidth: 375,
|
|
pkCountry: 1,
|
|
countDown: '',
|
|
bannerImgList: [],
|
|
}
|
|
},
|
|
|
|
onLoad(options) {
|
|
this.pkCountry = uni.getStorageSync('pkCountry')
|
|
this.waresCode = options.waresCode
|
|
this.specialArea = options.specialArea
|
|
this.getDetails()
|
|
uni.getSystemInfo({
|
|
success: function (res) {
|
|
this.isWidth = res.screenWidth
|
|
},
|
|
})
|
|
},
|
|
computed: {
|
|
...mapGetters(['user', 'shopCarLength']),
|
|
// bannerImgList() {
|
|
// const list = this.imgUrlList.map(item => item)
|
|
// list.splice(1,1)
|
|
// return list
|
|
// }
|
|
},
|
|
methods: {
|
|
getCurrentlySelectedCount(productGroup) {
|
|
if (!productGroup || !productGroup.waresItemsParamsList) {
|
|
return 0
|
|
}
|
|
return productGroup.waresItemsParamsList.reduce((sum, sku) => {
|
|
return sum + (sku.quantity || 0)
|
|
}, 0)
|
|
},
|
|
formatPriceToThousandth(value) {
|
|
if (value === null || value === undefined || isNaN(parseFloat(value))) {
|
|
return value
|
|
}
|
|
let numStr = parseFloat(value).toFixed(2)
|
|
let parts = numStr.split('.')
|
|
parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
|
|
return parts.join('.')
|
|
},
|
|
formatSales(value) {
|
|
if (value > 999) {
|
|
return '999+'
|
|
} else {
|
|
return value
|
|
}
|
|
},
|
|
formatNumberToCurrency(value, isLocal = false) {
|
|
if (value === null || value === undefined || isNaN(parseFloat(value))) {
|
|
return ''
|
|
}
|
|
let num = parseFloat(value)
|
|
// Removed a ssumed currency symbol logic. Now only formats to two decimal places.
|
|
return num.toFixed(2)
|
|
},
|
|
isLocalCurrency() {
|
|
// Helper to determine if local currency formatting is needed
|
|
// This is a placeholder. The original `isLocal` filter's logic might be more complex
|
|
// and depend on `this.pkCountry` or other global settings.
|
|
// For now, let's assume it's true if pkCountry is 1 (China).
|
|
return this.pkCountry === 1
|
|
},
|
|
toIndex() {
|
|
uni.switchTab({ url: '/pages/index/index' })
|
|
},
|
|
toCart() {
|
|
uni.switchTab({ url: '/pages/shoppingCar/index' })
|
|
},
|
|
addCar() {
|
|
let sum = 0
|
|
let selSum = 0
|
|
this.goodDetail.productParams.forEach(item => {
|
|
sum += item.quantity
|
|
item.waresItemsParamsList.forEach(ctem => {
|
|
selSum += ctem.quantity
|
|
})
|
|
})
|
|
if (selSum != sum) {
|
|
uni.showToast({
|
|
title: '请添加产品',
|
|
icon: 'none',
|
|
mask: true,
|
|
})
|
|
return false
|
|
}
|
|
let carList = {
|
|
specialArea: this.goodDetail.specialArea,
|
|
number: this.num,
|
|
waresCode: this.goodDetail.waresCode,
|
|
productGroup: [],
|
|
pkCountry: this.pkCountry,
|
|
}
|
|
uni.showLoading({
|
|
title: '加载中',
|
|
})
|
|
this.goodDetail.productParams.forEach(item => {
|
|
item.waresItemsParamsList.forEach(ctem => {
|
|
if (ctem.quantity != 0) {
|
|
carList.productGroup.push({
|
|
pkProduct: ctem.pkProduct,
|
|
pkSkuId: ctem.pkSkuId,
|
|
quantity: ctem.quantity,
|
|
})
|
|
}
|
|
})
|
|
})
|
|
if (this.goodDetail.isMakerGift == 2) {
|
|
this.$refs.selSpaceGoods.getData(carList)
|
|
} else {
|
|
api
|
|
.addShopping(carList)
|
|
.then(res => {
|
|
if (res.code == 200) {
|
|
uni.showToast({
|
|
title: '购物车添加成功',
|
|
icon: 'success',
|
|
mask: true,
|
|
})
|
|
this.$store.dispatch('getCarLength')
|
|
}
|
|
})
|
|
.finally(() => {
|
|
uni.hideLoading()
|
|
})
|
|
}
|
|
},
|
|
getCatLength() {
|
|
this.$store.dispatch('getCarLength', this.goodDetail.specialArea)
|
|
},
|
|
getDetails() {
|
|
api
|
|
.waresDetail({
|
|
pkCountry: this.pkCountry,
|
|
specialArea: this.specialArea,
|
|
waresCode: this.waresCode,
|
|
})
|
|
.then(res => {
|
|
this.goodDetail = res.data
|
|
// let sl = this.goodDetail.sales + ''
|
|
// if (sl >= 10000) {
|
|
// sl = sl.substring(0, sl.length - 4) + '万+'
|
|
// }
|
|
// this.goodDetail.sales = sl
|
|
// this.mainImgUrl = res.data.videoUrl
|
|
this.imgUrlList = [
|
|
res.data.cover,
|
|
res.data.cover1,
|
|
res.data.cover2,
|
|
res.data.cover3,
|
|
res.data.cover4,
|
|
res.data.cover5,
|
|
res.data.cover6,
|
|
]
|
|
this.bannerImgList = [
|
|
res.data.videoUrl,
|
|
res.data.cover1,
|
|
res.data.cover2,
|
|
res.data.cover3,
|
|
res.data.cover4,
|
|
res.data.cover5,
|
|
res.data.cover6,
|
|
]
|
|
this.imgUrlList = this.imgUrlList.filter(item => item && item.trim())
|
|
this.bannerImgList = this.bannerImgList.filter(
|
|
item => item && item.trim()
|
|
)
|
|
this.goodDetail.productParams.forEach((item, index) => {
|
|
item.waresItemsParamsList.forEach((ctem, cndex) => {
|
|
ctem.quantity = 0
|
|
ctem.maxNum = 0
|
|
if (ctem.specsName.length > 15) {
|
|
ctem.specsNameDian = ctem.specsName.substring(0, 15) + '...'
|
|
} else {
|
|
ctem.specsNameDian = ctem.specsName
|
|
}
|
|
})
|
|
})
|
|
// 赋初值
|
|
this.goodDetail.productParams.forEach((item, index) => {
|
|
item.waresItemsParamsList.forEach((ctem, cndex) => {
|
|
if (cndex == 0) {
|
|
this.$set(ctem, 'quantity', item.quantity)
|
|
this.$set(ctem, 'maxNum', item.quantity)
|
|
// 初始总价格业绩
|
|
this.$set(item, 'priceTotal', ctem.priceTotal)
|
|
this.$set(item, 'vipPriceTotal', ctem.vipPriceTotal)
|
|
this.$set(item, 'retailPriceTotal', ctem.retailPriceTotal)
|
|
this.$set(item, 'achieveTotal', ctem.achieveTotal)
|
|
this.$set(item, 'assAchieveTotal', ctem.assAchieveTotal)
|
|
}
|
|
})
|
|
})
|
|
this.$set(this.goodDetail, 'goodsPrice', 0)
|
|
this.$set(this.goodDetail, 'retailPrice', 0)
|
|
this.$set(this.goodDetail, 'goodsAchive', 0)
|
|
this.$set(this.goodDetail, 'goodsAssAchive', 0)
|
|
this.goodDetail.productParams.forEach(item => {
|
|
if (this.specialArea == 31) {
|
|
if (this.user.isMakerSpace == 0) {
|
|
this.goodDetail.goodsPrice += parseFloat(item.priceTotal)
|
|
this.goodDetail.retailPrice += parseFloat(item.retailPriceTotal)
|
|
this.goodDetail.goodsAchive += parseFloat(item.achieveTotal)
|
|
|
|
this.goodDetail.goodsAssAchive += parseFloat(
|
|
item.assAchieveTotal
|
|
)
|
|
} else {
|
|
this.goodDetail.goodsPrice += parseFloat(item.vipPriceTotal)
|
|
this.goodDetail.retailPrice += parseFloat(item.retailPriceTotal)
|
|
this.goodDetail.goodsAchive += parseFloat(item.achieveTotal)
|
|
|
|
this.goodDetail.goodsAssAchive += parseFloat(
|
|
item.assAchieveTotal
|
|
)
|
|
}
|
|
} else {
|
|
this.goodDetail.goodsPrice += parseFloat(item.priceTotal)
|
|
this.goodDetail.goodsAchive += parseFloat(item.achieveTotal)
|
|
this.goodDetail.goodsAssAchive += parseFloat(item.assAchieveTotal)
|
|
}
|
|
})
|
|
this.ggString()
|
|
this.downTime()
|
|
})
|
|
},
|
|
// 拼接已选
|
|
ggString() {
|
|
this.goodDetail.productParams.forEach(item => {
|
|
item.skuString = ''
|
|
item.waresItemsParamsList.forEach((ctem, cndex) => {
|
|
if (ctem.quantity > 0) {
|
|
item.skuString += ctem.specsName + '*' + ctem.quantity
|
|
}
|
|
})
|
|
})
|
|
let skuString = ''
|
|
this.goodDetail.productParams.forEach(item => {
|
|
skuString += item.productName + item.skuString
|
|
})
|
|
if (skuString.length > 19) {
|
|
this.skuString = skuString.substring(0, 19) + '...'
|
|
} else {
|
|
this.skuString = skuString
|
|
}
|
|
},
|
|
getNum(index, cndex, { value }) {
|
|
this.goodDetail.productParams[index].waresItemsParamsList[
|
|
cndex
|
|
].quantity = value
|
|
let ggNum = 0
|
|
this.goodDetail.productParams[index].waresItemsParamsList.forEach(
|
|
(item, iindex) => {
|
|
if (iindex == cndex) {
|
|
ggNum += value
|
|
} else {
|
|
ggNum += item.quantity
|
|
}
|
|
}
|
|
)
|
|
if (this.goodDetail.productParams[index].quantity - value >= 0) {
|
|
this.goodDetail.productParams[index].waresItemsParamsList.forEach(
|
|
(stem, sndex) => {
|
|
if (sndex != cndex) {
|
|
this.$set(
|
|
stem,
|
|
'maxNum',
|
|
this.goodDetail.productParams[index].quantity -
|
|
(ggNum - stem.quantity)
|
|
)
|
|
}
|
|
}
|
|
)
|
|
}
|
|
let that = this
|
|
setTimeout(() => {
|
|
that.calPrice()
|
|
}, 50)
|
|
},
|
|
calPrice() {
|
|
if (this.user.pkCountry == 1) {
|
|
this.goodDetail.productParams.forEach(item => {
|
|
item.waresItemsParamsList.forEach(ctem => {
|
|
ctem.priceTotal = parseFloat(ctem.price) * ctem.quantity
|
|
ctem.assAchieveTotal = ctem.assAchieve * ctem.quantity
|
|
ctem.vipPriceTotal = ctem.vipPrice * ctem.quantity
|
|
ctem.retailPriceTotal = ctem.retailPrice * ctem.quantity
|
|
ctem.achieveTotal =
|
|
ctem.achieve * ctem.quantity * this.goodDetail.inExchangeRate
|
|
})
|
|
})
|
|
} else {
|
|
this.goodDetail.productParams.forEach(item => {
|
|
item.waresItemsParamsList.forEach(ctem => {
|
|
ctem.priceTotal = ctem.price * ctem.quantity
|
|
ctem.achieveTotal = ctem.achieve * ctem.quantity
|
|
ctem.assAchieveTotal = ctem.assAchieve * ctem.quantity
|
|
})
|
|
})
|
|
}
|
|
let price = 0
|
|
let vipPrice = 0
|
|
let retailPrice = 0
|
|
let achieve = 0
|
|
let assAchieve = 0
|
|
this.goodDetail.productParams.forEach(item => {
|
|
item.waresItemsParamsList.forEach(ctem => {
|
|
price += ctem.priceTotal
|
|
vipPrice += ctem.vipPriceTotal
|
|
retailPrice += ctem.retailPriceTotal
|
|
achieve += ctem.achieveTotal
|
|
assAchieve += ctem.assAchieveTotal
|
|
})
|
|
})
|
|
if (this.specialArea == 31) {
|
|
if (this.user.isMakerSpace == 0) {
|
|
this.goodDetail.goodsPrice = price.toFixed(2)
|
|
} else {
|
|
this.goodDetail.goodsPrice = vipPrice.toFixed(2)
|
|
}
|
|
} else {
|
|
this.goodDetail.goodsPrice = price.toFixed(2)
|
|
}
|
|
this.goodDetail.retailPrice = retailPrice
|
|
this.goodDetail.goodsAchive = achieve
|
|
this.goodDetail.goodsAssAchive = assAchieve
|
|
|
|
this.ggString()
|
|
},
|
|
downTime() {
|
|
let that = this
|
|
this.clockTime = setInterval(() => {
|
|
if (
|
|
that.goodDetail.deliveryTimeMs &&
|
|
that.goodDetail.deliveryTimeMs > 0
|
|
) {
|
|
that.countDown = this.getTime(this.goodDetail.deliveryTimeMs--)
|
|
} else {
|
|
that.countDown = '0天00时00分00秒'
|
|
}
|
|
}, 1000)
|
|
},
|
|
getTime(time) {
|
|
// 转换为式分秒
|
|
let d = parseInt(time / 60 / 60 / 24) //计算剩余天数\
|
|
d = d < 10 ? '0' + d : d
|
|
let h = parseInt((time / 60 / 60) % 24)
|
|
h = h < 10 ? '0' + h : h
|
|
let m = parseInt((time / 60) % 60)
|
|
m = m < 10 ? '0' + m : m
|
|
let s = parseInt(time % 60)
|
|
s = s < 10 ? '0' + s : s
|
|
// 作为返回值返回
|
|
return d + '天' + h + ':' + m + ':' + s
|
|
},
|
|
goBuy() {
|
|
uni.navigateTo({
|
|
url:
|
|
'/pages/shareArea/orderShare?allData=' +
|
|
JSON.stringify(this.goodDetail),
|
|
})
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.content {
|
|
background: #f8f8f8;
|
|
min-height: 100vh;
|
|
}
|
|
.contxt {
|
|
padding: 0 24rpx 20rpx 24rpx;
|
|
}
|
|
.kuang {
|
|
margin-top: 20rpx;
|
|
padding: 20rpx;
|
|
background: #fff;
|
|
box-shadow: 0px 2px 10px 0px rgba(204, 204, 204, 0.5);
|
|
border-radius: 10px 10px 10px 10px;
|
|
.disFlex {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.t_red {
|
|
font-size: 16px;
|
|
font-family: Arial-Bold, Arial;
|
|
font-weight: bold;
|
|
color: #b42b2a;
|
|
// margin-right: 20px;
|
|
}
|
|
.t_hui {
|
|
font-size: 11px;
|
|
font-family: Arial-Bold, Arial;
|
|
font-weight: bold;
|
|
color: #999;
|
|
margin-left: 20rpx;
|
|
}
|
|
.t_hui1 {
|
|
font-size: 11px;
|
|
font-family: Arial-Bold, Arial;
|
|
font-weight: bold;
|
|
color: #999;
|
|
margin: 5px 0 10px 0;
|
|
}
|
|
.bao {
|
|
font-size: 13px;
|
|
color: #de0214;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
.kuang1 {
|
|
margin-top: -10rpx;
|
|
padding: 20rpx;
|
|
background: #fff;
|
|
box-shadow: 0px 2px 10px 0px rgba(204, 204, 204, 0.5);
|
|
border-radius: 10px 10px 10px 10px;
|
|
|
|
.t_red {
|
|
font-size: 16px;
|
|
font-family: Arial-Bold, Arial;
|
|
font-weight: bold;
|
|
color: #b42b2a;
|
|
// margin-right: 20px;
|
|
}
|
|
.t_hui {
|
|
font-size: 11px;
|
|
font-family: Arial-Bold, Arial;
|
|
font-weight: bold;
|
|
color: #999;
|
|
// margin-left: 20rpx;
|
|
}
|
|
.bao {
|
|
font-size: 13px;
|
|
color: #de0214;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
.t_hei {
|
|
font-size: 32rpx;
|
|
font-family:
|
|
PingFang SC-Semibold,
|
|
PingFang SC;
|
|
font-weight: 600;
|
|
color: #333;
|
|
}
|
|
.heng {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 12px;
|
|
font-family:
|
|
PingFang SC-Medium,
|
|
PingFang SC;
|
|
font-weight: 500;
|
|
color: #999999;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
.label {
|
|
margin-right: 40rpx;
|
|
}
|
|
.label1 {
|
|
font-size: 13px;
|
|
font-family:
|
|
PingFang SC-Semibold,
|
|
PingFang SC;
|
|
font-weight: 600;
|
|
color: #333333;
|
|
}
|
|
.bTit {
|
|
text-align: center;
|
|
margin: 30rpx 0;
|
|
font-size: 16px;
|
|
font-family:
|
|
PingFang SC-Semibold,
|
|
PingFang SC;
|
|
font-weight: 600;
|
|
color: #333333;
|
|
.btm {
|
|
width: 26px;
|
|
height: 2px;
|
|
background: #15b84b;
|
|
border-radius: 2px 2px 2px 2px;
|
|
margin: 10rpx auto;
|
|
}
|
|
}
|
|
|
|
// START: Styles for integrated SKU selection
|
|
.sku-selection-container {
|
|
padding: 20rpx 0;
|
|
.sku-selection-title {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin-bottom: 20rpx;
|
|
display: block;
|
|
}
|
|
|
|
.sku-options-list {
|
|
// Styles for the list of product groups
|
|
}
|
|
|
|
.sku-product-group {
|
|
margin-bottom: 20rpx;
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
.sku-product-name {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: #444;
|
|
margin-bottom: 15rpx;
|
|
padding-left: 8rpx;
|
|
}
|
|
}
|
|
|
|
.sku-col-item {
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.sku-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
background: #f9f9f9;
|
|
border-radius: 8px;
|
|
padding: 12rpx;
|
|
height: auto;
|
|
box-sizing: border-box;
|
|
justify-content: space-between;
|
|
|
|
.sku-item-cover {
|
|
width: 80rpx;
|
|
height: 80rpx;
|
|
border-radius: 4px;
|
|
margin-right: 15rpx;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.sku-item-content-right {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
width: 0;
|
|
}
|
|
|
|
.sku-item-name {
|
|
font-size: 13px;
|
|
color: #333;
|
|
line-height: 1.4;
|
|
margin-bottom: 8rpx;
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.u-number-box {
|
|
width: auto;
|
|
align-self: flex-end;
|
|
}
|
|
}
|
|
}
|
|
// END: Styles for integrated SKU selection
|
|
|
|
.warning-text {
|
|
color: #e54d42; /* 警告红色 */
|
|
}
|
|
|
|
.hui {
|
|
width: 22px;
|
|
height: 22px;
|
|
background: #dbdbdb;
|
|
border-radius: 3px 3px 3px 3px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.minus {
|
|
width: 22px;
|
|
height: 22px;
|
|
background: rgba(176, 196, 222, 1);
|
|
border-radius: 3px 3px 3px 3px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.plus {
|
|
width: 22px;
|
|
height: 22px;
|
|
background: #005bac;
|
|
border-radius: 3px 3px 3px 3px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.input {
|
|
width: 50px;
|
|
text-align: center;
|
|
background: #fff;
|
|
margin: 0 10rpx;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
.footer_f {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
z-index: 10;
|
|
box-shadow: 0px -2px 20px 0px rgba(204, 204, 204, 0.5);
|
|
}
|
|
.footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 20rpx 24rpx 40rpx 24rpx;
|
|
background: #fff;
|
|
.footer_l {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 20rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 400;
|
|
color: #222222;
|
|
}
|
|
.footer_r {
|
|
display: flex;
|
|
.btn1 {
|
|
background: #005bac;
|
|
color: #fff;
|
|
// padding: 0rpx 33rpx 0rpx 43rpx;
|
|
border-radius: 50px;
|
|
height: 75rpx;
|
|
width: 214rpx;
|
|
line-height: 75rpx;
|
|
text-align: center;
|
|
}
|
|
.btn2 {
|
|
background: #3d3d3d;
|
|
color: #fff;
|
|
// padding: 0rpx 43rpx 0rpx 33rpx;
|
|
border-radius: 0px 50px 50px 0;
|
|
height: 75rpx;
|
|
width: 214rpx;
|
|
line-height: 75rpx;
|
|
text-align: center;
|
|
}
|
|
}
|
|
.footer_li {
|
|
// position: relative;
|
|
// text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
font-size: 10px;
|
|
font-family:
|
|
PingFang SC-Medium,
|
|
PingFang SC;
|
|
font-weight: 500;
|
|
color: #333333;
|
|
}
|
|
.flout {
|
|
position: absolute;
|
|
top: -4px;
|
|
right: -10px;
|
|
background: #f56c6c;
|
|
border-radius: 50%;
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
color: #fff;
|
|
text-align: center;
|
|
}
|
|
.footer_ll {
|
|
margin-right: 40rpx;
|
|
position: relative;
|
|
}
|
|
.qiu {
|
|
position: absolute;
|
|
width: 30rpx;
|
|
height: 30rpx;
|
|
background: #e03030;
|
|
border-radius: 50%;
|
|
color: #fff;
|
|
text-align: center;
|
|
line-height: 30rpx;
|
|
right: 0;
|
|
top: -10rpx;
|
|
font-size: 10px;
|
|
}
|
|
.btns {
|
|
border-radius: 18px;
|
|
border: 1px solid #fbb61e;
|
|
padding: 12rpx 0;
|
|
width: 176rpx;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
}
|
|
.btn3 {
|
|
background: rgba(255, 255, 255, 0);
|
|
color: #fbb61e;
|
|
margin-right: 20rpx;
|
|
}
|
|
.btn4 {
|
|
background: #fbb61e;
|
|
color: #fff;
|
|
}
|
|
}
|
|
.sTop {
|
|
// display: flex;
|
|
// align-items: center;
|
|
// justify-content: space-between;
|
|
background: #005bac;
|
|
padding: 10rpx 20rpx 20rpx 20rpx;
|
|
margin-top: 20rpx;
|
|
border-radius: 10px 10px 0 0;
|
|
.sTop_l {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
img {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
.f1 {
|
|
font-size: 22px;
|
|
color: #fff;
|
|
font-weight: 600;
|
|
}
|
|
.f2 {
|
|
font-size: 12px;
|
|
color: #fff;
|
|
margin-left: 10rpx;
|
|
font-weight: 400;
|
|
}
|
|
.f3 {
|
|
font-size: 10px;
|
|
color: #fff;
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
.disFlex {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.disFlex1 {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
</style>
|