2022-03-10 02:39:19 +00:00
|
|
|
|
<template>
|
|
|
|
|
<view class="content">
|
|
|
|
|
<page-head text="详情" navState="true"></page-head>
|
|
|
|
|
<swiper class="swiper" indicator-color="rgba(255,255,255,0.3)" indicator-active-color="rgba(255,255,255,1)"
|
|
|
|
|
:indicator-dots="indicatorDots">
|
2022-05-20 03:22:15 +00:00
|
|
|
|
<swiper-item v-for="(item,index) in commodityData.detail.images" :key="index">
|
2022-03-10 02:39:19 +00:00
|
|
|
|
<view class="swiper-item uni-bg-red">
|
|
|
|
|
<image class="img" :src="item" mode="aspectFill"></image>
|
|
|
|
|
</view>
|
|
|
|
|
</swiper-item>
|
|
|
|
|
|
|
|
|
|
</swiper>
|
|
|
|
|
<view class="commodityTitle">
|
|
|
|
|
<view class="title">
|
|
|
|
|
{{ commodityData.detail.name}}
|
|
|
|
|
</view>
|
|
|
|
|
|
2022-03-10 06:19:23 +00:00
|
|
|
|
<view class="dz" v-if="item.customized==1">
|
2022-03-10 02:39:19 +00:00
|
|
|
|
可定制
|
|
|
|
|
</view>
|
2022-04-28 07:04:31 +00:00
|
|
|
|
<view class="money" style="display: flex;">
|
2022-04-28 07:37:22 +00:00
|
|
|
|
<text >¥</text>{{ commodityData.detail.price}}
|
2022-04-28 07:04:31 +00:00
|
|
|
|
<view v-if="ifMember && ifMemberPrice && commodityData.detail.vip_price" style="margin-left: 40rpx;">会员价:<text >¥</text> {{ commodityData.detail.vip_price}}</view>
|
2022-03-10 02:39:19 +00:00
|
|
|
|
</view>
|
|
|
|
|
<view class="specification" @click="specificationFun()">
|
|
|
|
|
<view class="text">
|
|
|
|
|
<image src="../../static/guig.png" class="img" mode=""></image>
|
|
|
|
|
<view class="p">
|
|
|
|
|
规格:查看详细规格
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<image class="jt" src="../../static/jta.png" mode=""></image>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="commodityCon">
|
|
|
|
|
<view class="title">
|
|
|
|
|
商品信息
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="">
|
|
|
|
|
<view class="p" v-html="commodityData.detail.content"></view>
|
|
|
|
|
<!-- <view class="p">类别:布艺沙发 </view>
|
|
|
|
|
<view class="p">型号:1502 </view>
|
|
|
|
|
<view class="p">家具材质:布艺 </view>
|
|
|
|
|
<view class="p">国产/进口:国产 </view>
|
|
|
|
|
<view class="p">家装风格:简约现代 </view>
|
|
|
|
|
<view class="p">是否可定制:不可定制 </view>
|
|
|
|
|
<view class="p">是否可拆洗:不可拆洗 </view>
|
|
|
|
|
<view class="p">面料材质:其它 </view>
|
|
|
|
|
<view class="p">沙发骨架材质:实木 是否带储物空间:不带储物空间 沙发
|
|
|
|
|
</view> -->
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="similarity">
|
|
|
|
|
<view class="title">
|
|
|
|
|
为您找到以下相似商品
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="classifyConList">
|
2022-05-20 03:22:15 +00:00
|
|
|
|
<view class="list" v-for="(item,index) in commodityData.similarGoods" :key="index" @click="details(item.id)">
|
2022-03-10 02:39:19 +00:00
|
|
|
|
<image class="img" :src="item.cover" mode="aspectFill"></image>
|
2022-05-20 03:22:15 +00:00
|
|
|
|
<view class="text">{{item.name}}</view>
|
2022-03-10 02:39:19 +00:00
|
|
|
|
<view class="textA">
|
2022-05-20 03:22:15 +00:00
|
|
|
|
<view class="money"><text >¥</text>{{item.price}}</view>
|
|
|
|
|
<view class="btn" v-if="item.customized==1">可定制</view>
|
2022-03-10 02:39:19 +00:00
|
|
|
|
</view>
|
2022-05-20 03:22:15 +00:00
|
|
|
|
<view class="memberPrice" v-if="ifMember && ifMemberPrice && item.vip_price">会员价:¥{{item.vip_price}}</view>
|
2022-03-10 02:39:19 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2022-05-20 03:22:15 +00:00
|
|
|
|
<view class="subscriptionButton" @click="makePhoneCallFun()">立即订购</view>
|
|
|
|
|
<view class="make" :class="popupState?'makedis':''"></view>
|
2022-03-10 02:39:19 +00:00
|
|
|
|
<view class="popup" :class="popupState?'popupB':''">
|
|
|
|
|
<image class="imgGb" @click="specificationFunState()" src="../../static/47.png" mode=""></image>
|
|
|
|
|
<view class="popupTitle">
|
2022-04-28 07:37:22 +00:00
|
|
|
|
<image class="img" @click="previewImg(commodityData.sku[current].picture || commodityData.detail.cover)" :src="commodityData.sku[current].picture || commodityData.detail.cover" mode="aspectFill"></image>
|
2022-03-10 02:39:19 +00:00
|
|
|
|
<view class="money" v-if="money">
|
2022-03-10 06:19:23 +00:00
|
|
|
|
<text >¥</text> {{money}}
|
2022-04-28 07:04:31 +00:00
|
|
|
|
<view v-if="ifMember && ifMemberPrice && vip_price" style="margin-left: 40rpx;margin-bottom: 10rpx;">会员价:<text >¥</text> {{vip_price}}</view>
|
2022-03-10 02:39:19 +00:00
|
|
|
|
</view>
|
2022-05-20 03:22:15 +00:00
|
|
|
|
<view class="money textmoney" v-else>暂无报价</view>
|
|
|
|
|
<view class="text">(点击上方封面可查看大图)</view>
|
2022-03-10 02:39:19 +00:00
|
|
|
|
</view>
|
|
|
|
|
<view class="popupList">
|
2022-05-20 03:22:15 +00:00
|
|
|
|
<view class="tit">规格</view>
|
2022-05-09 09:39:18 +00:00
|
|
|
|
<view class="" style="height: 460rpx;overflow: hidden;overflow-y: scroll;margin-top: 20rpx;">
|
2022-05-20 03:22:15 +00:00
|
|
|
|
<view class="list" @click="popupListFun(index)" :class="item.state?'on':''" v-for="(item,index) in commodityData.sku" :key="index">{{item.title}}</view>
|
2022-03-10 02:39:19 +00:00
|
|
|
|
</view>
|
2022-05-20 03:22:15 +00:00
|
|
|
|
<view class="button" @click="makePhoneCallFun()">立即订购</view>
|
2022-03-10 02:39:19 +00:00
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
indicatorDots: true,
|
|
|
|
|
commodityData:{},
|
|
|
|
|
money:"",
|
2022-04-28 07:04:31 +00:00
|
|
|
|
vip_price:"",
|
|
|
|
|
popupState:false,
|
|
|
|
|
ifMember:false,
|
|
|
|
|
ifMemberPrice:false,
|
2022-05-20 03:22:15 +00:00
|
|
|
|
current:0,
|
2022-03-10 02:39:19 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
2022-04-28 07:04:31 +00:00
|
|
|
|
onShow() {
|
|
|
|
|
this.ifMember = uni.getStorageSync('ifMember');
|
|
|
|
|
this.ifMemberPrice = uni.getStorageSync('ifMemberPrice');
|
|
|
|
|
},
|
2022-03-10 02:39:19 +00:00
|
|
|
|
onLoad(option) {
|
|
|
|
|
this.id=option.id
|
2022-05-20 03:22:15 +00:00
|
|
|
|
this.getData()
|
|
|
|
|
if(!uni.getStorageSync('userData')) {
|
|
|
|
|
uni.login({
|
|
|
|
|
success:(res)=> {
|
|
|
|
|
this.request({
|
|
|
|
|
url: this.host + "/api/user/login",
|
|
|
|
|
type:"POST",
|
|
|
|
|
data: {
|
|
|
|
|
code: res.code,
|
|
|
|
|
},
|
|
|
|
|
success:(data)=>{
|
|
|
|
|
if(data.data.code!=4003) {
|
|
|
|
|
uni.setStorageSync('userData',data.data.data);
|
|
|
|
|
this.request({
|
|
|
|
|
url: this.host + "/api/user/info",
|
|
|
|
|
type: "post",
|
|
|
|
|
success: (res) => {
|
|
|
|
|
res.data.data.is_vip ? this.ifMember = true : this.ifMember = false;
|
|
|
|
|
uni.setStorageSync('ifMember',this.ifMember);
|
|
|
|
|
res.data.data.vip_switch ? this.ifMemberPrice = true : this.ifMemberPrice = false;
|
|
|
|
|
uni.setStorageSync('ifMemberPrice',this.ifMemberPrice);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
2022-03-10 02:39:19 +00:00
|
|
|
|
},
|
2022-05-20 03:22:15 +00:00
|
|
|
|
onShareAppMessage() {
|
|
|
|
|
return {
|
|
|
|
|
title: this.commodityData.detail.name,
|
|
|
|
|
page: `/pages/commodity/commodity?id=${this.commodityData.detail.id}`,
|
|
|
|
|
image:''
|
|
|
|
|
}
|
|
|
|
|
},
|
2022-03-10 02:39:19 +00:00
|
|
|
|
methods: {
|
|
|
|
|
makePhoneCallFun(){
|
|
|
|
|
uni.makePhoneCall({
|
|
|
|
|
phoneNumber: this.commodityData.purchase_phone //仅为示例
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
specificationFun(){
|
2022-04-28 07:04:31 +00:00
|
|
|
|
this.popupState=true
|
2022-04-28 07:37:22 +00:00
|
|
|
|
this.money=this.commodityData.sku[0].price
|
2022-04-28 07:04:31 +00:00
|
|
|
|
this.vip_price=this.commodityData.sku[0].vip_price
|
2022-03-10 02:39:19 +00:00
|
|
|
|
for (var i = 0; i < this.commodityData.sku.length; i++) {
|
|
|
|
|
this.commodityData.sku[i].state=false
|
|
|
|
|
}
|
|
|
|
|
this.commodityData.sku[0].state =true
|
|
|
|
|
},
|
|
|
|
|
specificationFunState(){
|
|
|
|
|
this.popupState=false
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
previewImg(logourl) {
|
|
|
|
|
let _this = this;
|
|
|
|
|
let imgsArray = [];
|
|
|
|
|
imgsArray[0] = logourl
|
|
|
|
|
uni.previewImage({
|
|
|
|
|
current: 0,
|
|
|
|
|
urls: imgsArray
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
popupListFun(index){
|
|
|
|
|
for (var i = 0; i < this.commodityData.sku.length; i++) {
|
|
|
|
|
this.commodityData.sku[i].state=false
|
|
|
|
|
}
|
2022-04-28 07:04:31 +00:00
|
|
|
|
this.commodityData.sku[index].state =true
|
2022-04-28 07:37:22 +00:00
|
|
|
|
this.money=this.commodityData.sku[index].price;
|
2022-04-28 07:04:31 +00:00
|
|
|
|
this.vip_price = this.commodityData.sku[index].vip_price;
|
|
|
|
|
this.current = index;
|
|
|
|
|
this.commodityData.sku=[...this.commodityData.sku]
|
2022-03-10 02:39:19 +00:00
|
|
|
|
},
|
|
|
|
|
details(id) {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/commodity/commodity?id=' + id
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getData() {
|
|
|
|
|
this.request({
|
|
|
|
|
url: this.host + "/api/spu/detail",
|
|
|
|
|
type: "post",
|
|
|
|
|
data: {
|
|
|
|
|
id: this.id,
|
|
|
|
|
},
|
|
|
|
|
success: (res) => {
|
|
|
|
|
this.commodityData=res.data.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.swiper {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 480rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.swiper .img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 480rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
font-size: 40rpx;
|
|
|
|
|
color: #000000;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
line-height: 70rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.commodityTitle {
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
padding: 40rpx 40rpx 40rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.commodityCon {
|
|
|
|
|
padding: 40rpx 40rpx 40rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.commodityTitle .dz {
|
|
|
|
|
width: 100rpx;
|
|
|
|
|
height: 32rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
font-size: 20rpx;
|
|
|
|
|
border-radius: 25rpx;
|
|
|
|
|
background-color: #D33333;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 32rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.commodityTitle .money {
|
|
|
|
|
font-size: 48rpx;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #D33333;
|
|
|
|
|
margin-top: 15rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.specification {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 86rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 0 20rpx;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border: 4rpx solid #000000;
|
|
|
|
|
margin-top: 25rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.specification .text {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.specification .img {
|
|
|
|
|
width: 37rpx;
|
|
|
|
|
height: 37rpx;
|
|
|
|
|
margin-right: 25rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.specification .p {
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.specification .jt {
|
|
|
|
|
width: 14rpx;
|
|
|
|
|
height: 26rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
background-color: #F5F5F5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.commodityCon .title {
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.commodityCon .p {
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
color: #8c8c9b;
|
|
|
|
|
line-height: 46rpx;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.similarity .title {
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #d33333;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
margin-bottom: 32rpx;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
.subscriptionButton{
|
|
|
|
|
width: 668rpx;
|
|
|
|
|
height: 98rpx;
|
|
|
|
|
background-color: #D33333;color: #FFFFFF;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 98rpx;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 10rpx;
|
|
|
|
|
left: 50%;
|
|
|
|
|
border-radius: 25rpx;
|
|
|
|
|
margin: auto;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
margin-left: -334rpx;
|
|
|
|
|
}
|
|
|
|
|
.popup{
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0rpx;
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 950rpx;
|
|
|
|
|
padding: 0 40rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
z-index: 5;
|
|
|
|
|
bottom: -1200rpx;
|
|
|
|
|
border: 0rpx;
|
|
|
|
|
transition: all 1s;
|
|
|
|
|
}
|
|
|
|
|
.popupB{
|
|
|
|
|
bottom: -0rpx;
|
|
|
|
|
}
|
|
|
|
|
.make{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0px;
|
|
|
|
|
left: 0px;
|
|
|
|
|
display: none;
|
|
|
|
|
background-color: rgba(0,0,0,0.5);
|
|
|
|
|
}
|
|
|
|
|
.makedis{
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
.popupTitle .img{
|
|
|
|
|
width: 284rpx;
|
|
|
|
|
height: 284rpx;
|
|
|
|
|
margin: auto;
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
margin-top: -184rpx;
|
|
|
|
|
}
|
|
|
|
|
.popupTitle{
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
.popupTitle .money{
|
|
|
|
|
font-size: 48rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: bold;
|
2022-03-10 06:19:23 +00:00
|
|
|
|
line-height: 58rpx;
|
2022-03-10 02:39:19 +00:00
|
|
|
|
color: #D33333;
|
|
|
|
|
}
|
|
|
|
|
.popupTitle .text{
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #c0c0c0;
|
|
|
|
|
}
|
|
|
|
|
.popupList .tit{
|
|
|
|
|
margin-top: 32rpx;
|
|
|
|
|
font-size: 30rpx
|
|
|
|
|
}
|
|
|
|
|
.popupList .list{
|
|
|
|
|
border: 2rpx solid #666666;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 106rpx;
|
2022-05-09 09:39:18 +00:00
|
|
|
|
margin-bottom: 20rpx;
|
2022-03-10 02:39:19 +00:00
|
|
|
|
padding: 0 42rpx;
|
|
|
|
|
font-size: 24rpx;line-height: 45rpx;
|
|
|
|
|
padding-top: 10rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
color: #666666;
|
|
|
|
|
}
|
2022-05-09 09:39:18 +00:00
|
|
|
|
.popupList .list:last-child{
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
2022-03-10 02:39:19 +00:00
|
|
|
|
.popupList .button{
|
|
|
|
|
width: 668rpx;
|
|
|
|
|
height: 98rpx;
|
|
|
|
|
background-color: #D33333;border-radius: 30rpx;
|
|
|
|
|
margin-top: 60rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 34rpx;
|
|
|
|
|
line-height: 98rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
font-size: 36rpx
|
|
|
|
|
}
|
|
|
|
|
.popupList .on{
|
|
|
|
|
background-color: #D33333;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
.popup .imgGb{
|
|
|
|
|
width: 66rpx;
|
|
|
|
|
height: 66rpx;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 20rpx;
|
|
|
|
|
top: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.classifyConList {
|
|
|
|
|
display: flex;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
padding: 0 40rpx;
|
|
|
|
|
|
|
|
|
|
padding-bottom: 150rpx;
|
|
|
|
|
align-content: flex-start;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.classifyConList .list {
|
|
|
|
|
width: 320rpx;
|
2022-04-28 07:04:31 +00:00
|
|
|
|
/* height: 433rpx; */
|
2022-03-10 02:39:19 +00:00
|
|
|
|
margin-top: 30rpx;
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
background-color: #FFFFFF;
|
2022-04-28 07:04:31 +00:00
|
|
|
|
padding-bottom: 30rpx;
|
2022-03-10 02:39:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.classifyConList .list .img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 214rpx;
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.classifyConList .list .text {
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
margin-top: 15rpx;
|
|
|
|
|
line-height: 40rpx;
|
|
|
|
|
padding: 0 12rpx;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.classifyConList .list .textA {
|
|
|
|
|
display: flex;
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
padding: 0 12rpx;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.classifyConList .list .textA .money {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.classifyConList .list .textA .btn {
|
|
|
|
|
font-size: 18rpx;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
width: 86rpx;
|
|
|
|
|
height: 28rpx;
|
|
|
|
|
border-radius: 14rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
line-height: 28rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 28rpx;
|
|
|
|
|
background-color: #D33333;
|
|
|
|
|
}
|
2022-03-10 06:19:23 +00:00
|
|
|
|
.popupTitle .textmoney{
|
|
|
|
|
font-size: 40rpx;
|
|
|
|
|
line-height: 48rpx;
|
|
|
|
|
line-height: 58rpx;
|
|
|
|
|
|
|
|
|
|
}
|
2022-04-28 07:04:31 +00:00
|
|
|
|
.memberPrice{
|
|
|
|
|
font-size: 28rpx;font-weight: bold;padding-left: 20rpx;margin-top: 10rpx;
|
|
|
|
|
}
|
2022-03-10 02:39:19 +00:00
|
|
|
|
</style>
|