You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong_qianduan/pages/goods/detail.vue

1346 lines
26 KiB

11 months ago
<template>
11 months ago
<view class="detail">
<u-navbar>
<view class="slot-wrap">
<input type="text" placeholder="iPhone15" class="searInput" />
11 months ago
</view>
</u-navbar>
<view class="head">
11 months ago
<view class="share">
<view class="sp"></view>
<image src="/static/detail/share.png" mode="" class="shareIcon"></image>
</view>
<view class="swiper">
<swiper class="swiper" circular :indicator-dots="indicatorDots" :autoplay="autoplay"
:interval="interval" :duration="duration">
<swiper-item v-for="(item,index) in goods.goods_images" :key="index">
<image :src="item.preview_url" mode="" class="goodsImg"></image>
</swiper-item>
</swiper>
<!-- <scroll-view class="goods" scroll-x="true" @scroll="scroll">
10 months ago
<view class="goodsItem" v-for="(item,index) in goods.goods_images" :key="index">
<image :src="item.preview_url" mode="" class="goodsImg"></image>
11 months ago
<view class="num">
<view class="numSp">
</view>
<view class="numInfo">
{{index+1}}/{{allPicture}}
11 months ago
</view>
</view>
</view>
</scroll-view> -->
11 months ago
</view>
</view>
<view class="goodsInfo">
<view class="goodsPrice">
<view class="left">
<view class="leftPrice">
10 months ago
<text></text>{{goods.goods_price_min}}
11 months ago
</view>
<view class="sellPrice" v-if="goods.goods_price_min_dealer">
<text class="sellLeft">分销价</text>{{goods.goods_price_min_dealer}}
11 months ago
</view>
</view>
<view class="right">
<view class="rightPrice">
10 months ago
{{goods.line_price_min}}
11 months ago
</view>
<view class="rightInfo">
降价通知
</view>
</view>
</view>
<view class="pro" @click="goMember" v-if="userInfo.user_type==10">
11 months ago
<view class="proMem">
<text v-if="userInfo.user_type==10">Plus</text>
<text v-if="userInfo.user_type==20">分销</text>
会员
11 months ago
</view>
<view class="proInfo">
开通<text v-if="userInfo.user_type==10">Plus</text>
<text v-if="userInfo.user_type==20">分销</text>会员 预计再省
11 months ago
</view>
<view class="proBtn">
立即开通
</view>
</view>
<view class="goodsDetail">
<view class="goodsName">
10 months ago
{{goods.goods_name}}
11 months ago
</view>
<view class="goodsOpera">
<view class="goodsNum" @click="copyNum" v-if="goods.skuList.length>0">
<text>{{goods.skuList[0].goods_sku_no}}</text>
11 months ago
<image src="/static/detail/copy.png" mode=""></image>
</view>
<view class="operaImg">
<image src="/static/detail/tip.png" mode="" class="tips"></image>
<image src="/static/detail/ys.png" mode="" class="ys"></image>
</view>
</view>
<view class="rank" @click="goRanking" v-if="goods.paihang>0">
<text>排行榜 {{goods.category.name}}热搜榜第{{goods.paihang}}</text>
11 months ago
<image src="/static/detail/rightIcon.png" mode=""></image>
</view>
</view>
</view>
<view class="orderInfo">
<!-- -->
<view class="chosed" @click="choseSku" v-if="goods.spec_type == 20">
11 months ago
<view class="title">已选</view>
<view class="info" v-for="(item, index) in goods.specList" :key="index">{{ item.spec_name }}</view>
11 months ago
</view>
<view class="chosed">
<view class="title">送至</view>
<view class="info">
<view class="infoLeft">
现货
<image src="../../static/detail/rightIcon.png" mode=""></image>
</view>
<view class="address">
河北省秦皇岛市某某区
</view>
</view>
</view>
<view class="chosed">
<view class="serve">
<view class="serveInfo">
服务
</view>
<view class="span">
11 months ago
11 months ago
</view>
</view>
<view class="business">
<view class="busSour">
<text>商家来源平台认证商户</text>
</view>
<!-- <view class="busName">
11 months ago
<text>商家名称北京伊莫电子科技有限公司</text>
</view> -->
11 months ago
</view>
</view>
<view class="chosed">
<view class="title">服务</view>
<image src="/static/detail/buy.png" mode="" class="buy"></image>
<view class="info">枪色 1</view>
</view>
</view>
<view class="about">
<view class="aboutHead">
<view class="aboutSuggest">
相关推荐
</view>
<view class="more">
查看更多
</view>
</view>
<view class="goodsList">
10 months ago
<view class="goodsItem" v-for="(item,index) in suggestGoodsList" :key="index">
11 months ago
<view class="img">
10 months ago
<image :src="item.goods_image" mode="" class="goodsImg"></image>
11 months ago
</view>
10 months ago
<view class="goodsName ">
{{item.goods_name}}
11 months ago
</view>
<view class="price">
10 months ago
{{item.goods_price_min}}
11 months ago
</view>
</view>
</view>
</view>
<view class="vacancy">
10 months ago
11 months ago
</view>
<view class="footer">
10 months ago
<view class="fooLeft">
<view class="footerCus firstBtn">
<view class="cusIcon">
<image src="/static/detail/customer.png" mode=""></image>
</view>
<view class="customer">
客服
</view>
11 months ago
</view>
10 months ago
<view class="footerCus " @click="shoppingCart">
<view class="cusIcon">
<image src="/static/detail/car.png" mode=""></image>
</view>
<view class="customer car">
购物车
</view>
11 months ago
</view>
</view>
10 months ago
10 months ago
<view class="fooRight">
<view class="addCar" v-if="!isPre" @click="addCar">
10 months ago
加入购物车
</view>
<view class="buyNow" v-if="!isPre" @click="buyNow">
立即购买
11 months ago
</view>
10 months ago
<view class="buyNow" v-if="isPre">
立即预约
11 months ago
</view>
</view>
10 months ago
10 months ago
</view>
10 months ago
<view class="dia" v-if="openDialog">
10 months ago
<view class="preSuc" v-if="diaShow">
10 months ago
<view class="preImg">
<image src="../../static/order/ld.png" mode="" class="ldImg"></image>
11 months ago
</view>
10 months ago
<view class="preTitle">
10 months ago
预约成功
10 months ago
</view>
<view class="iKnow">
我知道了
11 months ago
</view>
</view>
10 months ago
<view class="setMs" v-if="setPrice">
<view class="msprice">
设置秒杀价格
</view>
<view class="msLine">
<u-line class="u-line"></u-line>
</view>
<view class="msp">
<text>秒杀价:</text>
10 months ago
<input type="text" placeholder="秒杀价格可低于成本价" class="inp" />
10 months ago
</view>
<view class="qj">
<text class="msQj">秒杀区间:</text>
<view class="date">
<view class="beginTime timeCommn">
开始时间
</view>
-
<view class="timeCommn endTime">
结束时间
</view>
</view>
</view>
<view class="msLimit">
<text>秒杀限购:</text>
10 months ago
<switch @change="switch1Change" />
10 months ago
</view>
<view class="peoLimit">
<text>每人限购</text>
<view class="num">
1
</view>
<text></text>
</view>
<view class="operaBtn">
<view class="cancel btnComm">
取消
</view>
<view class="sureBtn btnComm">
确定
</view>
</view>
</view>
<view class="shareWechat">
<view class="shareGoods">
<image src="/static/detail/tv.png" mode="" class="shareImg"></image>
</view>
<view class="shareInfo">
<view class="shareGoodsInfo">
夏普4T-M70H7DA 70英寸 4K 高清进口屏智能语音平板液晶电视机6575
</view>
<view class="sharePrice">
4980
</view>
</view>
<view class="shareOpera">
<view class="operaItem">
<view class="imgIcon">
<u-icon name="order" class="iconIm"></u-icon>
</view>
<view class="shareText">
复制文案
</view>
</view>
<view class="operaItem">
<view class="imgIcon weChatIcon">
<u-icon name="order" class="iconIm"></u-icon>
</view>
<view class="shareText">
微信好友
</view>
</view>
<view class="operaItem">
<view class="imgIcon hb">
<u-icon name="order" class="iconIm"></u-icon>
</view>
<view class="shareText">
生成海报
</view>
10 months ago
</view>
10 months ago
</view>
<view class="shareCancel" @click="shareCancel">
取消
</view>
</view>
11 months ago
</view>
<SkuPopup v-if="!isLoading" v-model="showSkuPopup" :skuMode="skuMode" :goods="goods" @addCart="onAddCart" />
11 months ago
</view>
</template>
11 months ago
<script>
10 months ago
import * as GoodsApi from '@/api/goods'
import * as goodsCar from '@/api/cart.js'
import SkuPopup from './components/SkuPopup'
11 months ago
export default {
components: {
SkuPopup
},
11 months ago
data() {
return {
skuMode: 1,
showSkuPopup: false,
allPicture: '',
keyword: '',
10 months ago
diaShow: false,
11 months ago
searchValue: '',
10 months ago
isPre: false,
setPrice: false,
openDialog: false,
goodsId: '',
10 months ago
goods: {},
suggestGoodsList: [],
userInfo: {},
11 months ago
}
10 months ago
},
10 months ago
onLoad(options) {
10 months ago
this.isPre = options.isPre
10 months ago
this.getGoodsDetail(options.goodsId)
10 months ago
},
10 months ago
onShow() {
this.getSuggestGoods()
this.userInfo = uni.getStorageSync('userInfo')
10 months ago
},
10 months ago
methods: {
// 选择商品规格
choseSku() {
this.showSkuPopup = true
},
10 months ago
// 获取商品信息
getGoodsDetail(goodsId) {
10 months ago
const that = this
return new Promise((resolve, reject) => {
GoodsApi.detail(goodsId)
10 months ago
.then(result => {
that.goods = result.data.detail;
that.allPicture = result.data.detail.goods_images.length
10 months ago
})
.catch()
10 months ago
})
},
10 months ago
getSuggestGoods() {
// 获取推荐商品列表
const that = this
GoodsApi.recommended()
.then(result => {
console.log(result, '获取推荐商品列表')
that.suggestGoodsList = result.data.goodsList
})
.catch()
10 months ago
},
10 months ago
goHome() {
10 months ago
uni.navigateTo({
10 months ago
url: '/pages/index/index'
10 months ago
})
},
10 months ago
goRanking() {
10 months ago
// 跳转排行榜
uni.navigateTo({
10 months ago
url: '/pages/activity/charts'
10 months ago
})
},
10 months ago
goMember() {
10 months ago
uni.navigateTo({
10 months ago
url: '/pages/member/index'
10 months ago
})
},
10 months ago
shoppingCart() {
10 months ago
// 购物车
10 months ago
uni.switchTab({
10 months ago
url: '/pages/cart/index'
10 months ago
})
},
10 months ago
goSearch() {
10 months ago
// 购物车
uni.navigateTo({
10 months ago
url: '/pages/search/index'
10 months ago
})
},
addCar() {
// 加入购物车
const that = this
goodsCar.add(that.goods.goods_id, that.goods.skuList[0].goods_sku_id, that.goods.spec_type == 20 ? 1 : 1)
.then(res => {
if (res.status == 200) {
that.$toast(res.message)
}
})
.catch()
},
10 months ago
buyNow() {
10 months ago
// 立即下单
uni.navigateTo({
url: '/pages/sureOrder/index?goodsInfo=' + JSON.stringify(this.goods)
10 months ago
})
},
10 months ago
shareCancel() {
10 months ago
//
},
11 months ago
}
}
11 months ago
</script>
<style lang="scss" scoped>
11 months ago
.detail {
width: 100%;
height: 100%;
}
.slot-wrap {
width: 400rpx;
margin-left: 60rpx;
height: 58rpx;
border-radius: 60rpx 60rpx 60rpx 60rpx;
background-color: #F3F3F3;
display: flex;
align-items: center;
padding-left: 20rpx;
11 months ago
}
.search {
display: flex;
align-items: center;
.icon {
width: 34rpx;
height: 38rpx;
margin: 0 22rpx 0 76rpx;
}
.searInput {
width: 428rpx;
height: 58rpx;
background: #F3F3F3;
border-radius: 60rpx 60rpx 60rpx 60rpx;
opacity: 1;
display: flex;
align-items: center;
.seaIcon {
width: 28rpx;
height: 28rpx;
margin: 0 0 0 26rpx;
}
.input {
flex: 1;
padding-left: 20rpx;
}
}
}
.share {
display: flex;
justify-content: space-between;
margin-top: 28rpx;
.sp {
width: 54rpx;
height: 54rpx;
}
.shareIcon {
width: 54rpx;
height: 54rpx;
margin-right: 28rpx;
}
}
.swiper {
width: 726rpx;
height: 458rpx;
border-radius: 0rpx 0rpx 0rpx 0rpx;
opacity: 1;
left: 0;
right: 0;
margin: auto;
.goodsImg {
margin-left: 30rpx;
width: 666rpx;
height: 398rpx;
}
11 months ago
.goods {
width: 100%;
height: 100%;
white-space: nowrap;
.goodsItem {
width: 100%;
height: 100%;
display: inline-block;
position: relative;
.goodsImg {
margin-left: 30rpx;
width: 666rpx;
height: 398rpx;
}
.num {
text-align: center;
display: flex;
justify-content: space-between;
.numSp {
width: 82rpx;
height: 56rpx;
}
.numInfo {
width: 82rpx;
height: 56rpx;
background: #262626;
border-radius: 50% 0 0 50%;
font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #FFFFFF;
line-height: 56rpx;
}
}
}
}
}
.goodsInfo {
width: 720rpx;
10 months ago
max-height: 484rpx;
11 months ago
background: #FFFFFF;
border-radius: 6rpx 6rpx 6rpx 6rpx;
opacity: 1;
margin: 30rpx 0 0 16rpx;
.goodsPrice {
background-image: url('/static/detail/priceback.png');
width: 720rpx;
height: 136rpx;
background-size: 100% 100%;
display: flex;
align-items: center;
justify-content: space-between;
.left {
margin: 18rpx 0 0 28rpx;
.leftPrice {
width: 140rpx;
height: 64rpx;
font-size: 46rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #FFFFFF;
line-height: 64rpx;
text {
width: 20rpx;
height: 64rpx;
font-size: 32rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #FFFFFF;
line-height: 64rpx;
margin-right: 8rpx;
}
}
.sellPrice {
height: 34rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #FFFFFF;
line-height: 34rpx;
.sellLeft {
width: 72rpx;
margin-right: 8rpx;
}
}
}
.right {
margin-right: 50rpx;
.rightPrice {
width: 102rpx;
height: 48rpx;
font-size: 34rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #FFFFFF;
line-height: 48rpx;
10 months ago
text-decoration: line-through;
11 months ago
}
.rightInfo {
width: 136rpx;
height: 44rpx;
font-size: 34rpx;
font-family: YouSheBiaoTiHei;
font-weight: 400;
color: #FFFFFF;
line-height: 34rpx;
}
}
}
.pro {
background-image: url('/static/detail/pro.png');
background-size: 100% 100%;
width: 690rpx;
height: 82rpx;
display: flex;
align-items: center;
margin: 20rpx 0 0 10rpx;
.proMem {
width: 142rpx;
height: 40rpx;
font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #966542;
line-height: 33rpx;
margin-left: 18rpx;
padding-right: 24rpx;
border-right: 2rpx solid #EFD4B4;
}
.proInfo {
width: 304rpx;
height: 34rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #966542;
line-height: 34rpx;
margin: 0 38rpx 0 26rpx;
}
.proBtn {
width: 126rpx;
height: 50rpx;
background: #9F744D;
border-radius: 82rpx 82rpx 82rpx 82rpx;
opacity: 1;
text-align: center;
line-height: 50rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #FFFFFF;
}
}
.goodsDetail {
.goodsName {
width: 672rpx;
height: 80rpx;
font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #000000;
line-height: 33rpx;
margin: 28rpx 0 0 28rpx;
11 months ago
}
.goodsOpera {
margin-left: 28rpx;
display: flex;
justify-content: space-between;
.goodsNum {
text {
display: inline-block;
width: 168rpx;
height: 34rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #8A8A8A;
line-height: 34rpx;
margin-right: 4rpx;
}
image {
width: 28rpx;
height: 28rpx;
}
}
.operaImg {
image {
width: 49rpx;
height: 49rpx;
}
.tips {
margin-right: 6rpx;
}
}
}
.rank {
margin: 22rpx 0 18rpx 28rpx;
width: 670rpx;
height: 58rpx;
background: #FFF3EE;
border-radius: 8rpx 8rpx 8rpx 8rpx;
opacity: 1;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 28rpx;
text {
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #FF1130;
line-height: 58rpx;
}
image {
width: 14rpx;
height: 14rpx;
}
}
}
}
.orderInfo {
width: 720rpx;
height: 256rpx;
background: #FFFFFF;
border-radius: 6rpx 6rpx 6rpx 6rpx;
opacity: 1;
margin: 16rpx 0 0 20rpx;
padding: 24rpx 22rpx 12rpx 32rpx;
.chosed {
margin-bottom: 18rpx;
display: flex;
align-items: center;
.buy {
width: 112rpx;
height: 22rpx;
margin-right: 10rpx;
}
.title {
width: 48rpx;
height: 34rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #C4C4C4;
line-height: 34rpx;
margin-right: 38rpx;
}
.info {
height: 34rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #3D3D3D;
line-height: 34rpx;
display: flex;
align-items: center;
.infoLeft {
height: 34rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #FE3636;
line-height: 34rpx;
image {
width: 14rpx;
height: 14rpx;
margin: 0 10rpx 0 8rpx;
}
}
.address {
height: 34rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #3D3D3D;
line-height: 34rpx;
}
}
.serve {
.serveInfo {
width: 48rpx;
height: 34rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #C4C4C4;
line-height: 34rpx;
margin-right: 38rpx;
}
.span {
width: 48rpx;
height: 34rpx;
}
}
.business {
.busSour {
height: 34rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #3D3D3D;
line-height: 34rpx;
}
.busName {
height: 34rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #3D3D3D;
line-height: 34rpx;
}
}
}
}
.about {
width: 720rpx;
10 months ago
// height: 730rpx;
11 months ago
background: #FFFFFF;
border-radius: 6rpx 6rpx 6rpx 6rpx;
opacity: 1;
margin: 14rpx 0 0rpx 20rpx;
padding: 24rpx 0 0 36rpx;
.aboutHead {
display: flex;
justify-content: space-between;
.aboutSuggest {
width: 112rpx;
height: 40rpx;
font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #000000;
line-height: 40rpx;
}
.more {
width: 96rpx;
height: 34rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #909090;
line-height: 34rpx;
margin-right: 20rpx;
}
}
.goodsList {
display: flex;
flex-wrap: wrap;
margin-top: 30rpx;
.goodsItem {
margin-right: 18rpx;
.img {
width: 204rpx;
height: 168rpx;
background: #FBFBFB;
border-radius: 6rpx 6rpx 6rpx 6rpx;
opacity: 1;
display: flex;
justify-content: center;
align-items: center;
.goodsImg {
width: 190rpx;
height: 144rpx;
border-radius: 0rpx 0rpx 0rpx 0rpx;
opacity: 1;
}
}
.goodsName {
width: 184rpx;
height: 80rpx;
font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #000000;
line-height: 33rpx;
10 months ago
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal !important;
word-wrap: break-word;
-webkit-box-orient: vertical;
-webkit-box-align: start;
-webkit-box-pack: center;
11 months ago
}
.price {
width: 66rpx;
height: 44rpx;
font-size: 32rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #ED2B00;
line-height: 38rpx;
}
}
}
}
10 months ago
.vacancy {
11 months ago
width: 100%;
height: 150rpx;
}
10 months ago
11 months ago
.footer {
position: fixed;
bottom: 0;
width: 100%;
height: 130rpx;
background: #FFFFFF;
box-shadow: -6rpx 14rpx 48rpx 0rpx rgba(0, 0, 0, 0.25);
border-radius: 0rpx 0rpx 0rpx 0rpx;
opacity: 1;
display: flex;
align-items: center;
text-align: center;
10 months ago
justify-content: space-between;
10 months ago
.fooLeft {
10 months ago
display: flex;
align-items: center;
}
10 months ago
.fooRight {
10 months ago
display: flex;
align-items: center;
margin-right: 20rpx;
}
10 months ago
11 months ago
.firstBtn {
margin-left: 60rpx;
}
.footerCus {
margin-right: 44rpx;
.cusIcon {
width: 38rpx;
height: 38rpx;
image {
width: 100%;
height: 100%;
}
}
.customer {
width: 40rpx;
height: 28rpx;
font-size: 20rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #3D3D3D;
line-height: 28rpx;
}
10 months ago
.car {
11 months ago
width: 60rpx;
}
}
10 months ago
.addCar {
11 months ago
width: 196rpx;
height: 78rpx;
background: #FF9E2B;
border-radius: 42rpx 42rpx 42rpx 42rpx;
opacity: 1;
font-size: 24rpx;
font-family: PingFang SC;
font-weight: 600;
color: #FFFFFF;
line-height: 78rpx;
text-align: center;
}
10 months ago
.buyNow {
11 months ago
width: 212rpx;
height: 78rpx;
background: linear-gradient(102deg, #FE5E06 0%, #F3221A 100%);
border-radius: 42rpx 42rpx 42rpx 42rpx;
opacity: 1;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 600;
color: #FFFFFF;
line-height: 78rpx;
text-align: center;
margin-left: 8rpx;
}
}
10 months ago
.dia {
10 months ago
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
10 months ago
background: rgba(69, 69, 69, 0.44);
10 months ago
display: flex;
justify-content: center;
align-items: center;
text-align: center;
10 months ago
.preSuc {
10 months ago
width: 560rpx;
height: 400rpx;
background: linear-gradient(180deg, #FFE4E4 0%, #FFFFFF 100%);
border-radius: 12rpx 12rpx 12rpx 12rpx;
opacity: 1;
display: flex;
flex-direction: column;
align-items: center;
10 months ago
.preImg {
10 months ago
width: 100rpx;
height: 100rpx;
position: relative;
top: -50rpx;
10 months ago
.ldImg {
10 months ago
width: 100%;
height: 100%;
}
}
10 months ago
.preTitle {
10 months ago
height: 44rpx;
font-size: 32rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #000000;
line-height: 38rpx;
margin-top: 32rpx;
}
10 months ago
.iKnow {
10 months ago
width: 412rpx;
height: 72rpx;
background: #F55349;
border-radius: 8rpx 8rpx 8rpx 8rpx;
opacity: 1;
text-align: center;
line-height: 72rpx;
font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #FFFFFF;
margin-top: 70rpx;
}
}
10 months ago
.setMs {
10 months ago
width: 656rpx;
height: 690rpx;
background: #FFFFFF;
border-radius: 12rpx 12rpx 12rpx 12rpx;
opacity: 1;
10 months ago
.msprice {
10 months ago
width: 100%;
height: 44rpx;
font-size: 32rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 600;
color: #262626;
line-height: 38rpx;
text-align: center;
margin-top: 24rpx;
margin-bottom: 26rpx;
}
10 months ago
.msLine {
10 months ago
margin-bottom: 30rpx;
}
10 months ago
.msp {
10 months ago
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 30rpx;
10 months ago
.inp {
10 months ago
width: 440rpx;
height: 72rpx;
background: #FFFFFF;
border-radius: 4rpx 4rpx 4rpx 4rpx;
opacity: 1;
border: 2rpx solid #EBEBEB;
margin-left: 20rpx;
line-height: 72rpx;
}
}
10 months ago
.qj {
10 months ago
font-size: 28rpx;
font-weight: 400;
color: #262626;
line-height: 33rpx;
margin-bottom: 34rpx;
10 months ago
.msQj {
10 months ago
position: relative;
10 months ago
left: -218rpx;
10 months ago
}
10 months ago
.date {
10 months ago
display: flex;
align-items: center;
justify-content: center;
margin-top: 16rpx;
10 months ago
.timeCommn {
10 months ago
width: 260rpx;
height: 68rpx;
background: #F1F1F1;
border-radius: 62rpx 62rpx 62rpx 62rpx;
opacity: 1;
line-height: 68rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #929292;
padding-left: 34rpx;
}
10 months ago
.beginTime {
10 months ago
margin-right: 16rpx;
}
10 months ago
.endTime {
10 months ago
margin-left: 20rpx;
}
}
}
10 months ago
.msLimit {
10 months ago
display: flex;
justify-content: space-between;
padding: 0 38rpx 0 42rpx;
font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #262626;
line-height: 33rpx;
}
10 months ago
.peoLimit {
10 months ago
display: flex;
margin-left: 42rpx;
align-items: center;
10 months ago
.num {
10 months ago
width: 106rpx;
height: 60rpx;
background: #FFFFFF;
border-radius: 4rpx 4rpx 4rpx 4rpx;
opacity: 1;
border: 2rpx solid #EBEBEB;
text-align: center;
line-height: 60rpx;
margin: 0 18rpx 0 16rpx;
}
}
10 months ago
.operaBtn {
10 months ago
display: flex;
justify-content: center;
margin-top: 52rpx;
10 months ago
.btnComm {
10 months ago
width: 216rpx;
height: 70rpx;
background: #EEEEEE;
border-radius: 44rpx 44rpx 44rpx 44rpx;
opacity: 1;
line-height: 70rpx;
text-align: center;
}
10 months ago
.sureBtn {
10 months ago
width: 214rpx;
height: 74rpx;
background: linear-gradient(180deg, #FD5D06 0%, #F3211A 100%);
border-radius: 100rpx 100rpx 100rpx 100rpx;
opacity: 1;
text-align: center;
10 months ago
line-height: 74rpx;
10 months ago
font-size: 28rpx;
font-weight: 500;
color: #FFFFFF;
margin-left: 24rpx;
}
}
}
10 months ago
.shareWechat {
10 months ago
width: 656rpx;
height: 884rpx;
background: #FFFFFF;
border-radius: 12rpx 12rpx 12rpx 12rpx;
opacity: 1;
display: flex;
flex-direction: column;
padding-top: 24rpx;
10 months ago
.shareGoods {
10 months ago
margin-left: 28rpx;
width: 604rpx;
height: 382rpx;
border-radius: 0rpx 0rpx 0rpx 0rpx;
opacity: 1;
10 months ago
image {
10 months ago
width: 100%;
height: 100%;
}
}
10 months ago
.shareInfo {
10 months ago
display: flex;
align-items: center;
margin-top: 12rpx;
10 months ago
.shareGoodsInfo {
10 months ago
width: 410rpx;
height: 120rpx;
font-size: 28rpx;
font-weight: 400;
color: #000000;
line-height: 33rpx;
}
10 months ago
.sharePrice {
10 months ago
height: 64rpx;
font-size: 46rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #FF645A;
line-height: 54rpx;
}
}
10 months ago
.shareOpera {
10 months ago
display: flex;
align-items: center;
justify-content: space-around;
margin-top: 36rpx;
margin-bottom: 46rpx;
10 months ago
.operaItem {
.imgIcon {
10 months ago
width: 88rpx;
height: 88rpx;
background: linear-gradient(180deg, #EC6244 0%, #FA938C 100%);
border-radius: 50%;
opacity: 1;
line-height: 88rpx;
text-align: center;
color: #fff;
10 months ago
.iconIm {
10 months ago
font-size: 32rpx;
}
}
10 months ago
.weChatIcon {
10 months ago
background: #28C445;
}
10 months ago
.hb {
10 months ago
background: linear-gradient(180deg, #53A2EE 0%, #6FB2F4 100%);
}
10 months ago
.shareText {
10 months ago
width: 96rpx;
height: 34rpx;
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #000000;
line-height: 28rpx;
}
}
}
10 months ago
.shareCancel {
10 months ago
width: 556rpx;
height: 82rpx;
background: #EEEEEE;
border-radius: 44rpx 44rpx 44rpx 44rpx;
opacity: 1;
font-size: 28rpx;
font-weight: 500;
color: #585858;
line-height: 82rpx;
text-align: center;
left: 0;
right: 0;
margin: auto;
}
}
10 months ago
}
11 months ago
</style>