1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306 |
- <template>
- <view class="container">
- <view class="carousel">
- <swiper indicator-dots :circular="true" duration="400">
- <swiper-item class="swiper-item" v-for="(item, index) in imgList" :key="index">
- <view class="image-wrapper">
- <image :src="item" class="loaded" mode="aspectFill"></image>
- </view>
- </swiper-item>
- </swiper>
- </view>
- <view class="introduce-section">
- <view class="price-box" v-if="goodsType == 0">
- <image src="../../static/icon/xfq.png" mode=""></image>
- <text class="price">{{ goodsObjact.price }}</text><text class="jftit"> 消费券</text>
- <text class="old-price">¥{{goodsObjact.ot_price}}</text>
- </view>
- <text class="title" v-if="goodsType == 0">{{ goodsObjact.store_name }}</text>
- <view class="bot-row">
- <text>快递: {{ goodsObjact.postage }}</text>
- <text style="text-align: center;">销量: {{ goodsObjact.sales }}</text>
- <text style="text-align: right;">{{ storeObjact.address | address}}</text>
- </view>
- </view>
- <!-- 评价 -->
- <view class="eva-section" v-if="reply" @click="navTo('/pages/product/reply?id=' + goodsid)">
- <view class="e-header">
- <text class="tit">评价</text>
- <text>({{ details.replyCount }})</text>
- <text class="tip">好评率 {{ details.replyChance }}%</text>
- <text class="iconfont iconenter"></text>
- </view>
- <view class="eva-box">
- <image class="portrait" :src="reply.avatar" mode="aspectFill"></image>
- <view class="right">
- <text class="name">{{ reply.nickname }}</text>
- <text class="con">{{ reply.comment }}</text>
- <view class="con_box">
- <view class="con_image" v-for="item in reply.pics">
- <image :src="item"></image>
- </view>
- </view>
- <view class="bot">
- <text class="attr"></text>
- <text class="time">{{ reply.add_time }}</text>
- </view>
- </view>
- </view>
- <view class="eva-boxs" v-if="reply.merchant_reply_content">
- <view class="right">
- <text class="con">
- <text style="color: #FD5B23;margin-right: 8rpx;">商家回复 :</text>
- {{ reply.merchant_reply_content }}
- </text>
- <view class="bot">
- <text class="attr"></text>
- <text class="time">{{ reply.merchant_reply_time }}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="c-list">
- <view class="c-row b-b" @click="toggleSpec">
- <text class="tit">购买数量</text>
- <view class="con">
- <text class="selected-text">{{ goodsNumber }}</text>
- </view>
- <text class="iconfont iconenter"></text>
- </view>
- <view class="c-row b-b" v-if="goodsType == 1">
- <text class="tit">限购数量</text>
- <view class="con">
- <text class="selected-text">{{ goodsObjact.num + goodsObjact.unit_name }}</text>
- </view>
- </view>
- </view>
- <view class="shop-box flex" v-if="goodsType == 0 && shopId > 0">
- <view class="flex">
- <image :src="shopInfo.logo" mode=" aspectFit" class="shop-img"></image>
- <text class="font-size-lg">{{ shopInfo.title }}</text>
- </view>
- <navigator :url="'/pages/shoping/index?merid=' + shopId">
- <view class="shop-button">进店逛逛</view>
- </navigator>
- </view>
- <view class="detail-desc">
- <view class="d-header"><text>图文详情</text></view>
- <rich-text class="detail-centent" :nodes="goodsObjact.description"></rich-text>
- <view :class="{ contentBottomHeight: goodsType == 1 || goodsType == 2, goodsBottom: goodsType == 0 }">
- </view>
- </view>
- <!-- 底部操作菜单 -->
- <view class="page-bottom" v-if="goodsType == 0">
- <view class="action-btn-group">
- <button type="primary" class=" action-btn no-border add-cart-btn" @click="toggleSpec(1)">立即兑换</button>
- </view>
- </view>
- <!-- 规格-模态层弹窗 -->
- <view class="popup spec" :class="specClass" @touchmove.stop.prevent="stopPrevent" @click="toggleSpec">
- <!-- 遮罩层 -->
- <view class="mask"></view>
- <view class="layer attr-content" @click.stop="stopPrevent">
- <view class="a-t">
- <image :src="actionImage"></image>
- <view class="right">
- <view class="good-name clamp">{{goodsObjact.store_name}}</view>
- <text class="price">
- <image src="../../static/icon/xfq.png"></image>{{ actionPrice }}
- </text>
- <!-- <text class="stock">库存:{{ goodsObjact.stock }}件</text> -->
- <!-- <view class="selected" v-if="goodsType == 0">
- 已选:
- <text class="selected-text" v-for="(sItem, sIndex) in specSelected" :key="sIndex">{{ sItem }}</text>
- </view> -->
- </view>
- </view>
- <view v-for="(item, index) in specList" :key="index" class="attr-list">
- <text>{{ item.attr_name }}</text>
- <view class="item-list">
- <text v-for="(childItem, childIndex) in item.attr_value" :key="childIndex" class="tit"
- :class="{ selected: childItem.check }" @click="selectSpec(childItem, item, index)">
- {{ childItem.attr }}
- </text>
- </view>
- </view>
- <view class="attr-list">
- <text>购买数量</text>
- <view class="item-list">
- <uni-number-box class="step" :isMin="true" :value="goodsNumber" :min="1" :max="goodsNumberMax"
- @eventChange="numberChange"></uni-number-box>
- </view>
- </view>
- <button class="btn" @click.stop="buy">完成</button>
- </view>
- </view>
- <view :class="{ seckillBottom: goodsType == 1, goodsBottom: goodsType == 0 }"></view>
- <!-- 分享 -->
- <!-- <share ref="share" :contentHeight="580" :shareList="shareList"></share> -->
- </view>
- </template>
- <script>
- import share from '@/components/share';
- import uniNumberBox from '@/components/uni-number-box.vue';
- import uniCountdown from '@/components/uni-countdown/uni-countdown.vue';
- import {
- goodsDetail,
- cartAdd,
- collectAdd,
- collectDel,
- seckillGoods,
- groupGoods
- } from '@/api/product.js';
- import {
- getShoping
- } from '@/api/shoping.js';
-
- import {
- mapState
- } from 'vuex';
-
- import {
- weixindata,
- weixinlocation,
- shareLoad
- } from '@/utils/wxAuthorized';
-
- export default {
- components: {
- share,
- uniNumberBox,
- uniCountdown
- },
- filters: {
- address(val) {
- let str = ''
- if (val) {
- str = val[0] + ' ' + val[1]
- }
- return str
- }
- },
- data() {
- return {
- details: '',
- reply: '',
- type: 1,
- goodsNumber: 1,
- goodsid: '',
- specClass: 'none',
- shareList: [],
- goodsObjact: {},
- storeObjact: {},
-
- imgList: [],
- specList: [],
-
- productValue: [],
- actionPrice: 0,
- actionImage: '',
- uniqueId: '',
- specSelected: [],
- specSelectedName: '',
- goodsNumberMax: 0,
- shopId: '',
-
- shopInfo: {
- logo: '',
- title: ''
- },
- goodsType: 0,
-
- seckillObj: {
- stopTime: 0,
- stop: false,
- stopTimeH: 0,
- stopTimeM: 0,
- stopTimeS: 0
- },
-
- pink: {
- id: '',
- uid: '',
- people: '',
- price: '',
- stop_time: '',
- nickname: '',
- avatar: '',
- count: '',
- h: '',
- i: '',
- s: ''
- },
- detype: '1',
- };
- },
- async onLoad(options) {
- let obj = this;
- if (options.detype) {
- obj.detype = options.detype
- }
-
- this.goodsid = options.id;
-
- if (options.spread) {
-
- uni.setStorageSync('spread', options.spread);
- }
-
- if (options.type == 1) {
-
- this.goodsType = 1;
-
- this.seckillObj.stopTime = options.stoptime;
-
- let stoptime = options.stoptime * 1000;
-
- let acitonTime = new Date();
-
- if (acitonTime.getTime() > stoptime) {
-
- this.seckillObj.stop = true;
- } else {
-
- this.timeComputed(stoptime, this.seckillObj);
- }
- this.seckillGoods();
- return;
- }
- if (options.type == 2) {
-
- this.goodsType = 2;
-
- this.groupGoods();
- return;
- }
- if (this.goodsType == 0) {
-
- this.goodsDetail();
- }
- },
- computed: {
-
- ...mapState(['weichatObj', 'baseURL', 'urlFile']),
- ...mapState('user', ['userInfo'])
-
- },
- methods: {
-
-
- IndexShare() {
- let obj = this
-
-
- let pages = getCurrentPages();
- let currentPage = pages[pages.length - 1];
- let url = '/#/' + currentPage.route;
- let item = currentPage.options;
- let shareObj = {
- title: obj.goodsObjact.store_name,
- link: obj.baseURL + url + '?id=' + item.id + '&spread=' + obj.userInfo
- .uid,
- desc: obj.goodsObjact.store_name + ' 价格:' + obj.goodsObjact.price,
- imgUrl: obj.goodsObjact.image,
- success: function(res) {
-
- if (res.errMsg == 'shareAppMessage:ok') {}
- },
- fail: function() {
-
- if (res.errMsg == 'shareAppMessage:fail cancel') {
-
- } else if (res.errMsg == 'shareAppMessage:fail') {
-
- }
- }
- };
- console.log(shareObj, '8888888888888888888');
- shareLoad(shareObj);
- },
-
- navTo(url) {
- uni.navigateTo({
- url
- });
- },
-
- getShoping() {
- let obj = this;
- getShoping({
- mer_id: this.shopId
- })
- .then(function({
- data
- }) {
- console.log(data);
- obj.shopInfo = data;
- })
- .catch(e => {
- console.log(e);
- });
- },
-
- moneyNum: function(value) {
- return +value;
- },
- navToProductGoods() {
- uni.redirectTo({
- url: '/pages/product/product?id=' + this.goodsObjact.product_id
- });
- },
-
- goodsDetail() {
- let obj = this;
- goodsDetail({}, this.goodsid).then(function({
- data
- }) {
- obj.details = data;
- let goods = data.storeInfo;
- let store_info = data.system_store
- console.log(store_info)
- obj.storeObjact = store_info
- obj.goodsObjact = goods;
- obj.reply = data.reply;
- obj.imgList = goods.slider_image;
- obj.specList = data.productAttr;
- obj.productValue = data.productValue;
- obj.actionPrice = goods.price;
- obj.actionImage = goods.image_base;
- obj.goodsNumberMax = goods.stock;
- obj.shopId = data.mer_id;
- if (obj.shopId > 0) {
- obj.getShoping();
- }
-
- obj.shareDate();
- obj.IndexShare()
-
- });
- },
-
-
- shareDate() {
- let obj = this;
-
- let url = window.location.href + '&spread=' + this.userInfo.uid;
-
- let bool = uni.getStorageSync('weichatBrowser') || '';
- if (bool) {
-
- url = url.replace(/[\?,&]from=singlemessage/g, '');
- let data = {
- link: url,
- imgUrl: obj.goodsObjact.image,
- desc: obj.goodsObjact.store_info,
- title: obj.goodsObjact.store_name,
- success: function(e) {
- console.log(e);
- }
- };
- weixindata(data);
- }
- },
-
-
- numberChange(e) {
- this.goodsNumber = e.number;
- },
-
- toggleSpec(str) {
- if (this.specClass === 'show') {
- this.specClass = 'hide';
- setTimeout(() => {
- this.specClass = 'none';
- }, 250);
- } else if (this.specClass === 'none') {
- this.specClass = 'show';
- }
-
- this.type = str;
- },
-
- selectSpec(item, arr, ind) {
- arr.attr_value.forEach(function(e) {
- e.check = false;
- });
- item.check = true;
- this.specSelected[ind] = item.attr;
- let str = this.specSelected.join(',');
- this.specSelectedName = this.specSelected.join(' ');
- if (this.productValue[str]) {
- let data = this.productValue[str];
- this.actionPrice = data.price;
- this.goodsNumberMax = data.stock;
- this.actionImage = data.image;
- this.uniqueId = data.unique;
- }
- },
-
- share() {
- this.$refs.share.toggleMask();
- },
-
- toFavorite(item) {
- let obj = this;
- item.userCollect = !item.userCollect;
- if (!item.userCollect) {
- collectDel({
- id: obj.goodsid,
- category: 'product'
- }).then(function(e) {
- uni.showToast({
- title: '成功取消收藏',
- type: 'top',
- duration: 1500
- });
- });
- } else {
- collectAdd({
- id: obj.goodsid,
- category: 'product'
- }).then(function(e) {
- uni.showToast({
- title: '成功加入收藏',
- type: 'top',
- duration: 1500
- });
- });
- }
- },
-
- buy() {
- let obj = this;
- let data = {
- cartNum: obj.goodsNumber,
- uniqueId: obj.uniqueId,
- new: '1',
- mer_id: obj.shopId,
- is_consumer: 1,
- };
- if (obj.type == 2) {
- data.new = 0;
- }
- if (obj.goodsType == 0) {
- data.productId = obj.goodsid;
- }
-
- if (obj.goodsType == 1) {
- data.secKillId = obj.goodsid;
- data.productId = obj.goodsObjact.product_id;
-
- if (obj.seckillObj.stop) {
- uni.showModal({
- title: '提示',
- content: '当前活动已经结束',
- showCancel: false
- });
- return;
- }
- }
-
- if (obj.goodsType == 2) {
- data.combinationId = obj.goodsid;
- data.productId = obj.goodsObjact.product_id;
- }
- cartAdd(data)
- .then(function({
- data
- }) {
- if (obj.type == 1) {
-
- uni.navigateTo({
- url: '/pages/order/createOrder?id=' + data.cartId + '&goodsType=' + obj
- .goodsType + '&consumer=1'
- });
- }
- if (obj.type == 2) {
- uni.showToast({
- title: '成功加入购物车',
- type: 'top',
- duration: 2000
- });
- obj.toggleSpec();
- }
- })
- .catch(e => {
- console.log(e);
- });
- },
- stopPrevent() {}
- }
- };
- </script>
- <style lang="scss">
- page {
- background: $page-color-base;
- }
-
- .seckillBottom {
- height: 110rpx;
- }
-
- .contentBottomHeight {
- height: 110rpx;
- }
-
- .goodsBottom {
- height: 160rpx;
- }
- .iconenter {
- font-size: $font-base + 2rpx;
- color: #888;
- }
- .carousel {
-
- padding-top: var(--status-bar-height);
-
- height: 722rpx;
- position: relative;
- swiper {
- height: 100%;
- }
- .image-wrapper {
- width: 100%;
- height: 100%;
- }
- .swiper-item {
- display: flex;
- justify-content: center;
- align-content: center;
-
- height: 710rpx;
- overflow: hidden;
- image {
- width: 100%;
- height: 100%;
- }
- }
- }
-
- .seckill-box-title {
- background: linear-gradient(90deg, rgba(239, 78, 81, 1) 0%, rgba(244, 113, 59, 1) 100%) !important;
- .price,
- .price-tip,
- .timeStop,
- .m-price {
- color: #ffffff !important;
- }
- .price-tip {
- font-size: $font-base;
- }
- .price {
- font-size: 45rpx !important;
- font-weight: bold;
- }
- .timeStop {}
- }
-
- .goods-pay-box {
- position: fixed;
- left: 0;
- bottom: 0;
- z-index: 95;
- width: 750rpx;
- height: 100rpx;
- line-height: 1;
- color: #ffffff;
- text-align: center;
- font-size: $font-lg;
- .bgLine {
- background: linear-gradient(90deg, rgba(239, 78, 81, 1) 0%, rgba(244, 113, 59, 1) 100%);
- }
-
- .goods-pay {
- display: flex;
- align-content: center;
- flex-wrap: wrap;
- justify-content: center;
- .goods-buttom,
- .goods-buttom-money {
- width: 100%;
- }
- .goods-buttom-money {
- font-size: $font-base;
- }
- }
- .goods-pay-stop,
- .goods-pay {
- padding: 15rpx 0;
- height: 100%;
- width: 100%;
- }
- .goods-pay-stop {
- background: $color-gray;
- line-height: 70rpx;
- }
- }
-
- .introduce-section {
- background: #fff;
- padding: 20rpx 30rpx;
- .title {
- font-size: 32rpx;
- color: $font-color-dark;
- height: 50rpx;
- line-height: 50rpx;
- }
- .price-box {
- display: flex;
- align-items: baseline;
- height: 64rpx;
- padding: 10rpx 0;
- font-size: 26rpx;
- color: $uni-color-primary;
- image {
- width: 32rpx;
- height: 32rpx;
- margin-right: 8rpx;
- }
- .jftit {
- padding-left: 4rpx;
- font-size: 23rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FF6F0F;
- }
- .old-price {
- padding-left: 8rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- text-decoration: line-through;
- color: #999999;
- }
- }
- .price {
- font-size: 45rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FF6F0F;
-
- }
- .m-price {
- margin: 0 12rpx;
- color: $font-color-light;
- text-decoration: line-through;
- }
- .coupon-tip {
- align-items: center;
- padding: 4rpx 10rpx;
- background: $uni-color-primary;
- font-size: $font-sm;
- color: #fff;
- border-radius: 6rpx;
- line-height: 1;
- transform: translateY(-4rpx);
- }
- .bot-row {
- display: flex;
- align-items: center;
- height: 50rpx;
- font-size: $font-sm;
- color: $font-color-light;
- text {
- flex: 1;
- }
- }
- }
-
- .share-section {
- display: flex;
- align-items: center;
- color: $font-color-base;
- background: linear-gradient(left, #fdf5f6, #fbebf6);
- padding: 12rpx 30rpx;
- .share-icon {
- display: flex;
- align-items: center;
- width: 70rpx;
- height: 30rpx;
- line-height: 1;
- border: 1px solid $uni-color-primary;
- border-radius: 4rpx;
- position: relative;
- overflow: hidden;
- font-size: 22rpx;
- color: $uni-color-primary;
- &:after {
- content: '';
- width: 50rpx;
- height: 50rpx;
- border-radius: 50%;
- left: -20rpx;
- top: -12rpx;
- position: absolute;
- background: $uni-color-primary;
- }
- }
- .iconfavorfill {
- position: relative;
- z-index: 1;
- font-size: 24rpx;
- margin-left: 2rpx;
- margin-right: 10rpx;
- color: #fff;
- line-height: 1;
- }
- .tit {
- font-size: $font-base;
- margin-left: 10rpx;
- }
- .iconprompt {
- padding: 10rpx;
- font-size: 30rpx;
- line-height: 1;
- }
- .share-btn {
- flex: 1;
- text-align: right;
- font-size: $font-sm;
- color: $uni-color-primary;
- }
- .iconenter {
- font-size: $font-sm;
- margin-left: 4rpx;
- color: $uni-color-primary;
- }
- }
- .c-list {
- margin-top: 20rpx;
- font-size: $font-sm + 2rpx;
- color: $font-color-base;
- background: #fff;
- .c-row {
- display: flex;
- align-items: center;
- padding: 20rpx 30rpx;
- position: relative;
- }
- .tit {
- width: 140rpx;
- }
- .con {
- flex: 1;
- color: $font-color-dark;
- .selected-text {
- margin-right: 10rpx;
- }
- }
- .bz-list {
- height: 40rpx;
- font-size: $font-sm + 2rpx;
- color: $font-color-dark;
- text {
- display: inline-block;
- margin-right: 30rpx;
- }
- }
- .con-list {
- flex: 1;
- display: flex;
- flex-direction: column;
- color: $font-color-dark;
- line-height: 40rpx;
- }
- .red {
- color: $uni-color-primary;
- }
- }
-
- .eva-section {
- display: flex;
- flex-direction: column;
- padding: 20rpx 30rpx;
- background: #fff;
- margin-top: 16rpx;
- .e-header {
- display: flex;
- align-items: center;
- height: 70rpx;
- font-size: $font-sm + 2rpx;
- color: $font-color-light;
- .tit {
- font-size: $font-base + 2rpx;
- color: $font-color-dark;
- margin-right: 4rpx;
- }
- .tip {
- flex: 1;
- text-align: right;
- }
- .iconenter {
- margin-left: 10rpx;
- }
- }
- }
- .eva-box {
- display: flex;
- padding: 20rpx 0;
- .portrait {
- flex-shrink: 0;
- width: 80rpx;
- height: 80rpx;
- border-radius: 100px;
- }
- .right {
- flex: 1;
- display: flex;
- flex-direction: column;
- font-size: $font-base;
- color: $font-color-base;
- padding-left: 26rpx;
- .con {
- font-size: $font-base;
- color: $font-color-dark;
- padding: 20rpx 0;
- }
- .bot {
- display: flex;
- justify-content: space-between;
- font-size: $font-sm;
- color: $font-color-light;
- }
- }
- }
- .eva-boxs {
- width: 100%;
- overflow: hidden;
- padding: 10px 28rpx;
- background: #f4f4f4;
- border-radius: 12rpx;
- font-size: $font-sm + 2rpx;
- color: #333;
- .portrait {
- flex-shrink: 0;
- width: 80rpx;
- height: 80rpx;
- border-radius: 100px;
- }
- .right {
- flex: 1;
- display: flex;
- flex-direction: column;
- font-size: $font-base;
- color: $font-color-base;
- .con {
- font-size: $font-base;
- color: $font-color-dark;
- }
- .bot {
- display: flex;
- justify-content: space-between;
- font-size: $font-sm;
- color: $font-color-light;
- }
- }
- }
-
- .detail-desc {
- background: #fff;
- margin-top: 16rpx;
- /deep/ img {
- max-width: 100% !important;
- display: inline !important;
- }
- /deep/ div {
- max-width: 100% !important;
- }
- .d-header {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 80rpx;
- font-size: $font-base + 2rpx;
- color: $font-color-dark;
- position: relative;
- text {
- padding: 0 20rpx;
- background: #fff;
- position: relative;
- z-index: 1;
- }
- &:after {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translateX(-50%);
- width: 300rpx;
- height: 0;
- content: '';
- border-bottom: 1px solid #ccc;
- }
- }
- }
-
- .attr-content {
- padding: 10rpx 30rpx;
- .a-t {
- display: flex;
- image {
- width: 170rpx;
- height: 170rpx;
- flex-shrink: 0;
- margin-top: -40rpx;
- border-radius: 8rpx;
- }
- .right {
- display: flex;
- flex-direction: column;
- padding-left: 24rpx;
- font-size: $font-sm + 2rpx;
- color: $font-color-base;
- line-height: 42rpx;
- .good-name {
- padding-top: 20rpx;
- max-width: 320rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #1D2023;
- line-height: 42rpx;
- margin-bottom: 15rpx;
- }
- .price {
- font-size: 60rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FF6F0F;
-
-
-
- image {
- width: 48rpx;
- height: 48rpx;
- margin-right: 8rpx;
- }
- }
- .selected-text {
- margin-right: 10rpx;
- }
- }
- }
- .attr-list {
- display: flex;
- flex-direction: column;
- font-size: $font-base + 2rpx;
- color: $font-color-base;
- padding-top: 30rpx;
- padding-left: 10rpx;
- }
- .item-list {
- padding: 20rpx 0 0;
- display: flex;
- flex-wrap: wrap;
- text {
- display: flex;
- align-items: center;
- justify-content: center;
- background: #eee;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- border-radius: 100rpx;
- min-width: 60rpx;
- height: 60rpx;
- padding: 0 20rpx;
- font-size: $font-base;
- color: $font-color-dark;
- }
- .selected {
- background: #fbebee;
- color: $uni-color-primary;
- }
- }
- }
-
- .popup {
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- z-index: 99;
- &.show {
- display: block;
- .mask {
- animation: showPopup 0.2s linear both;
- }
- .layer {
- animation: showLayer 0.2s linear both;
- }
- }
- &.hide {
- .mask {
- animation: hidePopup 0.2s linear both;
- }
- .layer {
- animation: hideLayer 0.2s linear both;
- }
- }
- &.none {
- display: none;
- }
- .mask {
- position: fixed;
- top: 0;
- width: 100%;
- height: 100%;
- z-index: 1;
- background-color: rgba(0, 0, 0, 0.4);
- }
- .layer {
- position: fixed;
- z-index: 99;
- bottom: 0;
- width: 100%;
- min-height: 30vh;
- border-radius: 10rpx 10rpx 0 0;
- background-color: #fff;
- .btn {
- height: 66rpx;
- line-height: 66rpx;
- border-radius: 100rpx;
-
- background: $base-color;
- font-size: $font-base + 2rpx;
- color: #fff;
- margin: 30rpx auto 20rpx;
- }
- }
- @keyframes showPopup {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
- @keyframes hidePopup {
- 0% {
- opacity: 1;
- }
- 100% {
- opacity: 0;
- }
- }
- @keyframes showLayer {
- 0% {
- transform: translateY(120%);
- }
- 100% {
- transform: translateY(0%);
- }
- }
- @keyframes hideLayer {
- 0% {
- transform: translateY(0);
- }
- 100% {
- transform: translateY(120%);
- }
- }
- }
-
- .page-bottom {
- position: fixed;
- left: 0rpx;
- bottom: 0rpx;
- z-index: 95;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 750rpx;
- height: 98rpx;
- background: rgba(255, 255, 255, 0.9);
- box-shadow: 0 0 20rpx 0 rgba(0, 0, 0, 0.5);
-
- .p-b-btn {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- font-size: $font-sm;
- color: $font-color-base;
- width: 100rpx;
- height: 98rpx;
- .iconfont {
- font-size: 40rpx;
- line-height: 48rpx;
- color: $font-color-light;
- }
- &.active,
- &.active .iconfont {
- color: $uni-color-primary;
- }
- .icon-fenxiang2 {
- font-size: 42rpx;
- transform: translateY(-2rpx);
- }
- .iconlikefill {
- font-size: 46rpx;
- }
- }
- .action-btn-group {
- display: flex;
- height: 98rpx;
- overflow: hidden;
- position: relative;
- .action-btn {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 750rpx;
- height: 100%;
- font-size: $font-base;
- padding: 0;
- border-radius: 0;
-
- background: #31332D;
- &.buy-now-btn {
- background-color: #303e49;
- }
- &.add-cart-btn {
- background-color: $base-color;
- }
- }
- }
- }
-
- .shop-box {
- background-color: #ffffff;
- margin-top: 20rpx;
- margin-bottom: 10rpx;
- padding: 20rpx;
- .shop-img {
- border-radius: 300rpx;
- height: 80rpx;
- width: 80rpx;
- margin-right: 20rpx;
- }
- .shop-button {
- border-radius: 100rpx;
- padding: 10rpx 20rpx;
- color: $color-red;
- border: 1px solid $color-red;
- font-size: $font-lg;
- line-height: 1;
- }
- }
- </style>
|