2024-03-21 17:52:58 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="product-con" :style="viewColor">
|
|
|
|
|
<view v-if="storeInfo && storeInfo.merchant">
|
|
|
|
|
<scroll-view :scroll-top="scrollTop" scroll-y='true' scroll-with-animation="true" :style='"height:"+height+"px;"'
|
|
|
|
|
@scroll="scroll">
|
|
|
|
|
<view id="past0">
|
|
|
|
|
<productConSwiper :imgUrls="storeInfo.slider_image" :videoCoverImg="videoCoverImg" :videoline="storeInfo.video_link"></productConSwiper>
|
|
|
|
|
<!--秒杀-->
|
|
|
|
|
<view v-if="storeInfo.product_type == 1" class='nav acea-row row-between-wrapper' :style="{ 'background-image': `url(${domain}/static/images/seckill-bg.png)`}">
|
|
|
|
|
<view class='money'>¥<text class='num'>{{storeInfo.price}}</text><text class='y-money'>¥{{storeInfo.ot_price}}</text></view>
|
|
|
|
|
<view class='acea-row row-middle'>
|
|
|
|
|
<view class='time'>
|
|
|
|
|
<view>距秒杀结束仅剩</view>
|
|
|
|
|
<countDown :is-day="false" :tip-text="' '" :day-text="' '" :hour-text="' : '" :minute-text="' : '" :second-text="' '" :datatime="datatime"></countDown>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<!--预售-->
|
|
|
|
|
<view v-if="storeInfo.product_type == 2" class='wrapper'>
|
|
|
|
|
<view class='share acea-row row-between row-bottom' style="padding: 0;margin: 0;">
|
|
|
|
|
<view class='money font-color'>
|
|
|
|
|
¥
|
|
|
|
|
<text class='num'>{{storeInfo.price}}</text>
|
|
|
|
|
<text class="price_text">预售价</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='iconfont icon-fenxiang' v-if="comForm != 'admin'"></view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='label acea-row'>
|
|
|
|
|
<view>市场价:¥{{storeInfo.ot_price || ''}}</view>
|
|
|
|
|
<view style="margin-left: 30rpx;">已预定:0{{ storeInfo.unit_name }}</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='introduce line2'>
|
|
|
|
|
<text v-if="(storeInfo.merchant && storeInfo.merchant.type_name)" class="font-bg-red">{{storeInfo.merchant.type_name}}</text>
|
|
|
|
|
<text v-else-if="(storeInfo.merchant && storeInfo.merchant.is_trader)" class="font-bg-red">自营</text>
|
|
|
|
|
{{storeInfo.store_name}}</view>
|
|
|
|
|
<view class="presell_count">
|
|
|
|
|
<view>
|
|
|
|
|
<view>预售活动时间:</view>
|
|
|
|
|
<view v-if="storeInfo.start_time && storeInfo.p_end_time" class="presell_time">
|
|
|
|
|
<view class='iconfont icon-shijian1'></view>
|
|
|
|
|
{{ new Date(storeInfo.start_time.replace(/-/g,"/")).getMonth()+1 }}月{{ new Date(storeInfo.start_time.replace(/-/g,"/")).getDate() }}日{{ new Date(storeInfo.start_time.replace(/-/g,"/")).getHours() }}时{{ new Date(storeInfo.start_time.replace(/-/g,"/")).getMinutes()}}分
|
|
|
|
|
<span class='area_line'>~</span>
|
|
|
|
|
<view class='iconfont icon-shijian1'></view>
|
|
|
|
|
{{ new Date(storeInfo.p_end_time.replace(/-/g,"/")).getMonth()+1 }}月{{ new Date(storeInfo.p_end_time.replace(/-/g,"/")).getDate() }}日{{ new Date(storeInfo.p_end_time.replace(/-/g,"/")).getHours() }}时{{ new Date(storeInfo.p_end_time.replace(/-/g,"/")).getMinutes()}}分
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view v-if="storeInfo.presell_type === 2">
|
|
|
|
|
<view>支付尾款时间:</view>
|
|
|
|
|
<view v-if="storeInfo.final_start_time && storeInfo.final_end_time" class="presell_time">
|
|
|
|
|
<view class='iconfont icon-shijian1'></view>
|
|
|
|
|
{{ new Date(storeInfo.final_start_time.replace(/-/g,"/")).getMonth()+1 }}月{{ new Date(storeInfo.final_start_time.replace(/-/g,"/")).getDate() }}日{{ new Date(storeInfo.final_start_time.replace(/-/g,"/")).getHours() }}时{{ new Date(storeInfo.final_start_time.replace(/-/g,"/")).getMinutes()}}分
|
|
|
|
|
<span class='area_line'>~</span>
|
|
|
|
|
<view class='iconfont icon-shijian1'></view>
|
|
|
|
|
{{ new Date(storeInfo.final_end_time.replace(/-/g,"/")).getMonth()+1 }}月{{ new Date(storeInfo.final_end_time.replace(/-/g,"/")).getDate() }}日{{ new Date(storeInfo.final_end_time.replace(/-/g,"/")).getHours() }}时{{ new Date(storeInfo.final_end_time.replace(/-/g,"/")).getMinutes()}}分
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view v-if="storeInfo.delivery_type == 1">
|
|
|
|
|
<view v-if="storeInfo.presell_type==1">支付成功后{{ storeInfo.delivery_day }}天内发货</view>
|
|
|
|
|
<view v-if="storeInfo.presell_type==2">付尾款成功后{{ storeInfo.delivery_day }}天内发货</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view v-if="storeInfo.delivery_type == 2">预售结束后{{ storeInfo.delivery_day }}天内发货</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<!--拼团-->
|
|
|
|
|
<view v-if="storeInfo.product_type == 4" class='wrapper'>
|
|
|
|
|
<view class='share acea-row row-between row-bottom' style="padding: 0;margin: 0;">
|
|
|
|
|
<view class='money '>
|
|
|
|
|
<text class="font-color">¥<text class='num'>{{storeInfo.price}}</text></text>
|
|
|
|
|
<text class="font-gray orig_price">¥<text class='num' style="font-size: 28rpx;">{{storeInfo.ot_price}}</text></text>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class='iconfont icon-fenxiang' v-if="comForm != 'admin'"></view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class='introduce line2'>
|
|
|
|
|
<text v-if="(storeInfo.merchant && storeInfo.merchant.type_name)" class="font-bg-red">{{storeInfo.merchant.type_name}}</text>
|
|
|
|
|
<text v-else-if="(storeInfo.merchant && storeInfo.merchant.is_trader)" class="font-bg-red">自营</text>
|
|
|
|
|
{{storeInfo.store_name}}
|
|
|
|
|
</view>
|
|
|
|
|
<view class='label acea-row row-between-wrapper'>
|
|
|
|
|
<view>类型:{{storeInfo.buying_count_num ? storeInfo.buying_count_num : 0}}人团</view>
|
|
|
|
|
<view>库存:{{storeInfo.stock ? storeInfo.stock : 0}}</view>
|
|
|
|
|
<view>已拼:{{storeInfo.sales ? storeInfo.sales : 0}}{{storeInfo.unit_name ? storeInfo.unit_name : ''}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
<view v-if="storeInfo.product_type == 4" class="combination_wrapper">
|
|
|
|
|
<view class='notice acea-row row-middle' v-if="itemNew.length">
|
|
|
|
|
<view class='num font-color'>
|
|
|
|
|
<text class='iconfont icon-laba'></text>
|
|
|
|
|
已拼{{storeInfo.sales ? storeInfo.sales : 0}}{{storeInfo.unit_name ? storeInfo.unit_name : ''}}<text
|
|
|
|
|
class='line'>|</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='swiper'>
|
|
|
|
|
<swiper :indicator-dots="indicatorDots" :autoplay="autoplay" interval="2500" duration="500" vertical="true"
|
|
|
|
|
circular="true">
|
|
|
|
|
<block v-for="(item,index) in itemNew" :key='index'>
|
|
|
|
|
<swiper-item>
|
|
|
|
|
<view class='line1'>{{item.nickname ? item.nickname : ''}}拼团成功</view>
|
|
|
|
|
</swiper-item>
|
|
|
|
|
</block>
|
|
|
|
|
</swiper>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='assemble' v-if="pink.length" :style="itemNew.length ? '' : 'margin-top: 20rpx;'">
|
|
|
|
|
<view class='item acea-row row-between-wrapper' v-for='(item,index) in pink' :key='index' v-if="index < AllIndex && pink.length>0">
|
|
|
|
|
<view class='pictxt acea-row row-between-wrapper'>
|
|
|
|
|
<view class='pictrue'>
|
|
|
|
|
<image :src='item.initiator.avatar ? item.initiator.avatar : "/static/images/f.png"'></image>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='text line1'>{{ item.initiator.nickname ? item.initiator.nickname : ""}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='right acea-row row-middle'>
|
|
|
|
|
<view>
|
|
|
|
|
<view class='lack'>还差<text class='font-color'>{{item.buying_count_num - item.yet_buying_num}}</text>人成团</view>
|
|
|
|
|
<view class='time'>
|
|
|
|
|
剩余
|
|
|
|
|
<count-down :justifyLeft="justifyLeft" :is-day="false" :tip-text="' '" :day-text="' '" :hour-text="':'"
|
|
|
|
|
:minute-text="':'" :second-text="' '" :datatime="item.end_time"></count-down>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<navigator hover-class='none' :url="'/pages/activity/combination_status/index?id='+item.group_buying_id" class='spellBnt'>
|
|
|
|
|
去拼单
|
|
|
|
|
<text class='iconfont icon-jiantou'></text>
|
|
|
|
|
</navigator>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<template v-if="pink.length">
|
|
|
|
|
<view class='more' @tap='showAll' v-if="pink.length > AllIndex">查看更多<text class='iconfont icon-xiangxia'></text></view>
|
|
|
|
|
<view class='more' @tap='hideAll' v-else-if="pink.length === AllIndex && pink.length !== AllIndexDefault">收起<text
|
|
|
|
|
class='iconfont icon-xiangshang'></text></view>
|
|
|
|
|
</template>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='playWay'>
|
|
|
|
|
<view class='title acea-row row-between-wrapper'>
|
|
|
|
|
<view>拼团玩法</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='way acea-row row-middle'>
|
|
|
|
|
<view class='item'>
|
|
|
|
|
<text class='num'>①</text>
|
|
|
|
|
<text class="way_text">开团/参团</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='iconfont icon-arrow'></view>
|
|
|
|
|
<view class='item'>
|
|
|
|
|
<text class='num'>②</text>
|
|
|
|
|
<text class="way_text">邀请好友</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='iconfont icon-arrow'></view>
|
|
|
|
|
<view class='item'>
|
|
|
|
|
<view>
|
|
|
|
|
<text class='num'>③</text>
|
|
|
|
|
<text class="way_text">满员发货</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='tip'>不满自动退款</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view v-if="storeInfo.product_type == 0 || storeInfo.product_type == 3 || storeInfo.product_type == 1" class='wrapper'>
|
|
|
|
|
<view v-if="storeInfo.product_type != 1" class='share acea-row row-between row-bottom' style="padding: 0;margin: 0;">
|
|
|
|
|
<view class='money font-color'>
|
|
|
|
|
¥
|
|
|
|
|
<text class='num'>{{storeInfo.price}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='iconfont icon-fenxiang' v-if="comForm != 'admin'"></view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='introduce line2'>
|
|
|
|
|
<text v-if="storeInfo.merchant.type_name" class="font-bg-red bt-color">{{storeInfo.merchant.type_name}}</text>
|
|
|
|
|
<text v-else-if="storeInfo.merchant.is_trader" class="font-bg-red bg bt-color">自营</text>{{storeInfo.store_name ? storeInfo.store_name : ''}}
|
|
|
|
|
</view>
|
|
|
|
|
<view class='label acea-row row-between-wrapper' style="padding-bottom: 10px">
|
|
|
|
|
<view v-if="storeInfo.product_type != 3">原价:¥{{storeInfo.ot_price ? storeInfo.ot_price : ''}}</view>
|
|
|
|
|
<view>库存:{{storeInfo.stock ? storeInfo.stock : 0}}{{storeInfo.unit_name ? storeInfo.unit_name : ''}}</view>
|
|
|
|
|
<view>销量:{{storeInfo.sales ? storeInfo.sales : 0}}{{storeInfo.unit_name ? storeInfo.unit_name : ''}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='attribute acea-row row-between-wrapper' @click="selecAttr">
|
|
|
|
|
<view class="acea-row row-between-wrapper">{{attrTxt}}:
|
|
|
|
|
<text class='atterTxt'>{{attrValue}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='iconfont icon-jiantou'></view>
|
|
|
|
|
</view>
|
|
|
|
|
<view v-if="specsInfo.params && specsInfo.params.length>0" class="attribute acea-row row-between-wrapper" @click="seeSpecs">
|
|
|
|
|
<view class="acea-row row-middle">
|
|
|
|
|
参数:
|
|
|
|
|
<view class="list line1">
|
|
|
|
|
<text class="item params" v-for="(item,index) in specsInfo.params" :key="index"
|
|
|
|
|
v-if="index<2">{{item.name}}</text>
|
|
|
|
|
<text>...</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="iconfont icon-jiantou"></view>
|
|
|
|
|
</view>
|
|
|
|
|
<!--运费-->
|
|
|
|
|
<view v-if="shippingValue" class='attribute acea-row row-between-wrapper' @click="showShip">
|
|
|
|
|
<view class="acea-row row-between-wrapper">运费:
|
|
|
|
|
<text class='atterTxt'>{{shippingValue}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='iconfont icon-jiantou'></view>
|
|
|
|
|
</view>
|
|
|
|
|
<!--保障-->
|
|
|
|
|
<view v-if="guarantee && guarantee.length" class='attribute acea-row row-between-wrapper' @click="showGuaranee">
|
|
|
|
|
<view class="acea-row row-between-wrapper">保障:
|
|
|
|
|
<view class="guaranteeAttr">
|
|
|
|
|
<text class='atterTxt1' :class="item.guarantee_name ? 'hasAttr' : ''" v-for="(item,index) in guarantee">
|
|
|
|
|
{{item.guarantee_name ? item.guarantee_name : ''}}
|
|
|
|
|
</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='iconfont icon-jiantou'></view>
|
|
|
|
|
</view>
|
|
|
|
|
<!--定金预售流程-->
|
|
|
|
|
<view v-if="storeInfo.presell_type === 2" class='acea-row row-between-wrapper wrapper presell_process'>
|
|
|
|
|
<view>流程:
|
|
|
|
|
<view class='process_count'>
|
|
|
|
|
<view class="process_line"></view>
|
|
|
|
|
<span class="text_line text_line1"><text>定金</text></span>
|
|
|
|
|
<span class="text_line text_line2"><text>尾款</text></span>
|
|
|
|
|
<span class="text_line text_line3"><text>发货</text></span>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- 商铺信息 -->
|
|
|
|
|
<view class="store-wrapper" v-if="storeInfo.merchant && hide_mer_status !=1">
|
|
|
|
|
<view class="store-hd">
|
|
|
|
|
<view class="store-info">
|
|
|
|
|
<view class="logo">
|
|
|
|
|
<image :src="storeInfo.merchant.mer_avatar" mode=""></image>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="info">
|
|
|
|
|
<view class="name">{{storeInfo.merchant.mer_name ? storeInfo.merchant.mer_name : ''}}
|
|
|
|
|
<text v-if="storeInfo.merchant.type_name" class="font-bg-red ml8 bt-color">{{storeInfo.merchant.type_name}}</text>
|
|
|
|
|
<text v-else-if="storeInfo.merchant.is_trader" class="font-bg-red ml8 bt-color">自营</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view v-if="storeInfo.merchant.care_count" class="txt">
|
|
|
|
|
{{storeInfo.merchant.care_count < 10000 ? storeInfo.merchant.care_count : (storeInfo.merchant.care_count/10000).toFixed(2)+'万'}}人关注
|
|
|
|
|
</view>
|
|
|
|
|
<view v-else class="txt">0人关注</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="score-wrapper">
|
|
|
|
|
<view class="item">
|
|
|
|
|
商品描述<text>{{storeInfo.merchant.product_score}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="item">
|
|
|
|
|
卖家服务<text>{{storeInfo.merchant.service_score}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="item">
|
|
|
|
|
物流服务<text>{{storeInfo.merchant.postage_score}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='product-intro' id="past3">
|
|
|
|
|
<view class='title'>产品介绍</view>
|
|
|
|
|
<jyf-parser v-if="description.type == 0" :domain='domain' :html="description.content.replace(/<br\/>/ig, '')" ref="article" :tag-style="tagStyle"></jyf-parser>
|
|
|
|
|
<view v-else class="product_content">
|
|
|
|
|
<view v-if="description.content && description.content.title" class="title">{{description.content.title}}</view>
|
|
|
|
|
<view v-if="description.content && description.content.image" class="pictures">
|
|
|
|
|
<image v-for="(item,index) in description.content.image" :key="index" :src="item"></image>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view style='height:120rpx;'></view>
|
|
|
|
|
</scroll-view>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- 组件 -->
|
|
|
|
|
<productWindow :attr="attr" :isShow='1' :iSplus='1' @myevent="onMyEvent" @ChangeAttr="ChangeAttr" @ChangeCartNum="ChangeCartNum"
|
|
|
|
|
@attrVal="attrVal" @iptCartNum="iptCartNum" id='product-window'></productWindow>
|
|
|
|
|
<guaranteeTemplate ref="guartemplate" :guarantee='guarantee' :shipping='shipping'></guaranteeTemplate>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2024-03-21 18:05:36 +08:00
|
|
|
|
|
2024-03-21 17:52:58 +08:00
|
|
|
|
var statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
|
|
|
|
|
import { getProductDetail, getPreviewProDetail } from '@/api/store.js';
|
|
|
|
|
import productWindow from '@/components/productWindow';
|
|
|
|
|
import productConSwiper from '@/components/productConSwiper';
|
|
|
|
|
import { mapGetters } from "vuex";
|
|
|
|
|
import home from '@/components/home';
|
|
|
|
|
import countDown from '@/components/countDown';
|
|
|
|
|
import parser from "@/components/jyf-parser/jyf-parser";
|
|
|
|
|
import { HTTP_REQUEST_URL } from '@/config/app';
|
|
|
|
|
import guaranteeTemplate from '@/components/freightGuarantee';
|
|
|
|
|
import { configMap } from "@/utils";
|
|
|
|
|
let app = getApp();
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
home,
|
|
|
|
|
productWindow,
|
|
|
|
|
productConSwiper,
|
|
|
|
|
guaranteeTemplate,
|
|
|
|
|
countDown,
|
|
|
|
|
"jyf-parser": parser,
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
let that = this;
|
|
|
|
|
return {
|
|
|
|
|
statusBarHeight: statusBarHeight, //系统导航条高度
|
|
|
|
|
attrTxt: '请选择', //属性页面提示
|
|
|
|
|
attrValue: '', //已选属性
|
|
|
|
|
animated: false, //购物车动画
|
|
|
|
|
product_id: 0, //商品id
|
|
|
|
|
product_type: 0, //活动类型
|
|
|
|
|
reply: [], //评论列表
|
|
|
|
|
storeInfo: {
|
|
|
|
|
merchant: {}
|
|
|
|
|
}, //商品详情
|
|
|
|
|
productValue: [], //系统属性
|
|
|
|
|
cart_num: 1, //购买数量
|
|
|
|
|
isOpen: false, //是否打开属性组件
|
|
|
|
|
actionSheetHidden: true,
|
|
|
|
|
storeImage: '', //海报产品图
|
|
|
|
|
canvasStatus: false, //海报绘图标签
|
|
|
|
|
posterImage: '', //海报路径
|
|
|
|
|
posterbackgd: '/static/images/posterbackgd.png',
|
|
|
|
|
source: '',
|
|
|
|
|
domain: HTTP_REQUEST_URL,
|
|
|
|
|
sharePacket: {
|
|
|
|
|
isState: true, //默认不显示
|
|
|
|
|
}, //分销商详细
|
|
|
|
|
// uid: 0, //用户uid
|
|
|
|
|
circular: false,
|
|
|
|
|
autoplay: false,
|
|
|
|
|
interval: 3000,
|
|
|
|
|
duration: 500,
|
|
|
|
|
clientHeight: "",
|
|
|
|
|
systemStore: {}, //门店信息
|
|
|
|
|
replyChance: 0,
|
|
|
|
|
CartCount: 0,
|
|
|
|
|
isDown: true,
|
|
|
|
|
attr: {
|
|
|
|
|
cartAttr: false,
|
|
|
|
|
productAttr: [],
|
|
|
|
|
productSelect: {}
|
|
|
|
|
},
|
|
|
|
|
description: '',
|
|
|
|
|
navActive: 0,
|
|
|
|
|
activity: [],
|
|
|
|
|
retunTop: true, //顶部返回
|
|
|
|
|
navH: "",
|
|
|
|
|
navList: [],
|
|
|
|
|
opacity: 0,
|
|
|
|
|
scrollY: 0,
|
|
|
|
|
topArr: [],
|
|
|
|
|
toView: '',
|
|
|
|
|
height: 0,
|
|
|
|
|
heightArr: [],
|
|
|
|
|
lock: false,
|
|
|
|
|
scrollTop: 0,
|
|
|
|
|
tagStyle: {
|
|
|
|
|
img: 'width:100%;display:block;'
|
|
|
|
|
},
|
|
|
|
|
// 动画状态
|
|
|
|
|
showAnimate: true,
|
|
|
|
|
codeImg: "",
|
|
|
|
|
videoCoverImg: "",
|
|
|
|
|
shipping: "",
|
|
|
|
|
guarantee: [],
|
|
|
|
|
specsInfo: {
|
|
|
|
|
show: false,
|
|
|
|
|
params: []
|
|
|
|
|
},
|
|
|
|
|
guaranteeValue: "",
|
|
|
|
|
shippingValue: "",
|
|
|
|
|
uniqueValue: "",
|
|
|
|
|
datatime: 0,
|
|
|
|
|
pink_ok_sum: 0,
|
|
|
|
|
pink: [],
|
|
|
|
|
AllIndexDefault: 0,
|
|
|
|
|
AllIndex: 2,
|
|
|
|
|
maxAllIndex: 0,
|
|
|
|
|
itemNew: [],
|
|
|
|
|
indicatorDots: false,
|
|
|
|
|
preview_key: '',
|
|
|
|
|
comForm: '' // 页面打开的途径,admin代表时后台的预览
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
computed: configMap(['hide_mer_status'],mapGetters(['isLogin', 'uid', 'viewColor'])),
|
|
|
|
|
onLoad(options) {
|
|
|
|
|
let that = this
|
|
|
|
|
var pages = getCurrentPages();
|
|
|
|
|
let curPage = pages[pages.length - 1];
|
|
|
|
|
if (pages.length <= 1) {
|
|
|
|
|
that.retunTop = false
|
|
|
|
|
}
|
|
|
|
|
let curParam = curPage.options || curPage.$route.query;
|
|
|
|
|
this.source = curParam.source;
|
|
|
|
|
this.navH = 96;
|
|
|
|
|
this.id = options.product_id;
|
|
|
|
|
this.preview_key = options.preview_key;
|
|
|
|
|
this.product_type = options.product_type;
|
|
|
|
|
this.comForm = options.comForm
|
|
|
|
|
uni.getSystemInfo({
|
|
|
|
|
success: function(res) {
|
|
|
|
|
that.height = res.windowHeight
|
|
|
|
|
//res.windowHeight:获取整个窗口高度为px,*2为rpx;98为头部占据的高度;
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
this.getPreviewDetails()
|
|
|
|
|
},
|
|
|
|
|
onReady() {},
|
|
|
|
|
onShow() {
|
|
|
|
|
// this.getConfig()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
boxStatus(data) {
|
|
|
|
|
this.showAnimate = data
|
|
|
|
|
},
|
|
|
|
|
closeChange: function() {
|
|
|
|
|
this.$set(this.sharePacket, 'isState', true);
|
|
|
|
|
},
|
|
|
|
|
/**查看运费说明*/
|
|
|
|
|
showShip: function() {
|
|
|
|
|
this.$refs.guartemplate.showShippingTel();
|
|
|
|
|
},
|
|
|
|
|
/**查看服务保障*/
|
|
|
|
|
showGuaranee: function() {
|
|
|
|
|
this.$refs.guartemplate.showGuaranteeTel();
|
|
|
|
|
},
|
|
|
|
|
goActivity: function(e) {
|
|
|
|
|
let item = e;
|
|
|
|
|
if (item.type === "1") {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: `/pages/activity/goods_seckill_details/index?id=${item.id}&time=${item.time}&status=1`
|
|
|
|
|
});
|
|
|
|
|
} else if (item.type === "2") {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: `/pages/activity/goods_bargain_details/index?id=${item.id}&bargain=${this.uid}`
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: `/pages/activity/goods_combination_details/index?id=${item.id}`
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* 购物车手动填写
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
iptCartNum: function(e) {
|
|
|
|
|
this.$set(this.attr.productSelect, 'cart_num', e);
|
|
|
|
|
},
|
|
|
|
|
tap: function(index) {
|
|
|
|
|
var id = "past" + index;
|
|
|
|
|
var index = index;
|
|
|
|
|
var that = this;
|
|
|
|
|
this.$set(this, 'toView', id);
|
|
|
|
|
this.$set(this, 'navActive', index);
|
|
|
|
|
this.$set(this, 'lock', true);
|
|
|
|
|
this.$set(this, 'scrollTop', index > 0 ? that.topArr[index] - (app.globalData.navHeight / 2) : that.topArr[index]);
|
|
|
|
|
},
|
|
|
|
|
scroll: function(e) {
|
|
|
|
|
var that = this,
|
|
|
|
|
scrollY = e.detail.scrollTop;
|
|
|
|
|
var opacity = scrollY / 200;
|
|
|
|
|
opacity = opacity > 1 ? 1 : opacity;
|
|
|
|
|
that.$set(that, 'showAnimate', false);
|
|
|
|
|
that.$set(that, 'opacity', opacity);
|
|
|
|
|
that.$set(that, 'scrollY', scrollY);
|
|
|
|
|
if (that.lock) {
|
|
|
|
|
that.$set(that, 'lock', false)
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
for (var i = 0; i < that.topArr.length; i++) {
|
|
|
|
|
if (scrollY < that.topArr[i] - (app.globalData.navHeight / 2) + that.heightArr[i]) {
|
|
|
|
|
that.$set(that, 'navActive', i)
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 微信登录回调
|
|
|
|
|
onLoadFun: function(e) {},
|
|
|
|
|
/**
|
|
|
|
|
* 购物车数量加和数量减
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
ChangeCartNum: function(changeValue) {},
|
|
|
|
|
attrVal(val) {
|
|
|
|
|
this.$set(this.attr.productAttr[val.indexw], 'index', this.attr.productAttr[val.indexw].attr_values[val.indexn]);
|
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* 属性变动赋值
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
ChangeAttr: function(res) {
|
|
|
|
|
let productSelect = this.productValue[res];
|
|
|
|
|
if(productSelect)this.$set(this, "uniqueValue", productSelect.unique);
|
|
|
|
|
if (productSelect && productSelect.stock > 0) {
|
|
|
|
|
this.$set(this.attr.productSelect, "image", productSelect.image ? productSelect.image : this.storeInfo.image);
|
|
|
|
|
this.$set(this.attr.productSelect, "price", productSelect.price);
|
|
|
|
|
this.$set(this.attr.productSelect, "stock", productSelect.stock);
|
|
|
|
|
this.$set(this.attr.productSelect, "unique", productSelect.unique);
|
|
|
|
|
this.$set(this, "uniqueValue", productSelect.unique);
|
|
|
|
|
this.$set(this.attr.productSelect, "cart_num", 1);
|
|
|
|
|
this.$set(this, "attrValue", res);
|
|
|
|
|
this.$set(this, "attrTxt", "已选择");
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
this.$set(this.attr.productSelect, "image", this.storeInfo.image);
|
|
|
|
|
this.$set(this.attr.productSelect, "price", 0);
|
|
|
|
|
this.$set(this.attr.productSelect, "stock", 0);
|
|
|
|
|
this.$set(this.attr.productSelect, "unique", "");
|
|
|
|
|
this.$set(this.attr.productSelect, "cart_num", 0);
|
|
|
|
|
this.$set(this, "attrValue", "");
|
|
|
|
|
this.$set(this, "attrTxt", "请选择");
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
setClientHeight: function() {
|
|
|
|
|
let that = this;
|
|
|
|
|
let view = uni.createSelectorQuery().in(this).select("#list0");
|
|
|
|
|
view.fields({
|
|
|
|
|
size: true,
|
|
|
|
|
}, data => {
|
|
|
|
|
that.$set(that, 'clientHeight', data.height + 20)
|
|
|
|
|
}).exec();
|
|
|
|
|
},
|
|
|
|
|
/*获取预览商品详情*/
|
|
|
|
|
getPreviewDetails(){
|
|
|
|
|
uni.showLoading({
|
|
|
|
|
title: '加载中',
|
|
|
|
|
mask: true
|
|
|
|
|
});
|
|
|
|
|
let that = this;
|
|
|
|
|
let params = that.preview_key ? {key:that.preview_key} : {id: that.id, product_type: that.product_type}
|
|
|
|
|
getPreviewProDetail(params).then(res => {
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
let storeInfo = res.data;
|
|
|
|
|
if (storeInfo.video_link && storeInfo.slider_image.length > 1) {
|
|
|
|
|
this.videoCoverImg = storeInfo.slider_image[0]
|
|
|
|
|
storeInfo.slider_image.splice(0, 1)
|
|
|
|
|
} else if (storeInfo.video_link && storeInfo.slider_image.length === 1) {
|
|
|
|
|
this.videoCoverImg = storeInfo.slider_image[0]
|
|
|
|
|
}
|
|
|
|
|
that.$set(that, 'storeInfo', storeInfo);
|
|
|
|
|
that.$set(that, 'description', storeInfo.content);
|
|
|
|
|
that.$set(that.description, 'type', storeInfo.content.type || 0 );
|
|
|
|
|
that.$set(that, 'reply', res.data.topReply ? [res.data.topReply] : []);
|
|
|
|
|
that.$set(that.attr, 'productAttr', res.data.attr);
|
|
|
|
|
that.$set(that, 'productValue', res.data.sku);
|
|
|
|
|
that.$set(that.sharePacket, 'priceName', res.data.priceName);
|
|
|
|
|
that.$set(that.sharePacket, 'max', res.data.max_extension);
|
|
|
|
|
that.$set(that.sharePacket, 'min', res.data.min_extension);
|
|
|
|
|
that.$set(that, 'systemStore', res.data.system_store);
|
|
|
|
|
that.$set(that, 'PromotionCode', storeInfo.code_base);
|
|
|
|
|
that.$set(that, 'activity', res.data.activity ? res.data.activity : []);
|
|
|
|
|
that.$set(that, 'shippingValue', res.data.temp ? res.data.temp.name : '');
|
|
|
|
|
that.$set(that, 'guaranteeValue', res.data.guarantee ? res.data.guarantee.template_name : '');
|
|
|
|
|
that.$set(that, 'guarantee', res.data.guaranteeTemplate ? res.data.guaranteeTemplate : []);
|
|
|
|
|
that.$set(that, 'shipping', res.data.temp ? res.data.temp.info : '');
|
|
|
|
|
that.$set(that.specsInfo, 'params', res.data.params);
|
|
|
|
|
that.$set(that, 'datatime', storeInfo.stop ? Number(storeInfo.stop) : 0);
|
|
|
|
|
uni.setNavigationBarTitle({
|
|
|
|
|
title: storeInfo.store_name.substring(0, 7) + "..."
|
|
|
|
|
})
|
|
|
|
|
that.$set(that, 'storeImage', that.storeInfo.image);
|
|
|
|
|
setTimeout(function() {
|
|
|
|
|
that.infoScroll();
|
|
|
|
|
}, 500);
|
|
|
|
|
that.DefaultSelect();
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
//状态异常返回上级页面
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: err
|
|
|
|
|
}, {
|
|
|
|
|
tab: 3,
|
|
|
|
|
url: 1
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
infoScroll: function() {
|
|
|
|
|
var that = this,
|
|
|
|
|
topArr = [],
|
|
|
|
|
heightArr = [];
|
|
|
|
|
for (var i = 0; i < that.navList.length; i++) { //productList
|
|
|
|
|
//获取元素所在位置
|
|
|
|
|
var query = uni.createSelectorQuery().in(this);
|
|
|
|
|
var idView = "#past" + i;
|
|
|
|
|
query.select(idView).boundingClientRect();
|
|
|
|
|
query.exec(function(res) {
|
|
|
|
|
var top = res[0].top;
|
|
|
|
|
var height = res[0].height;
|
|
|
|
|
topArr.push(top);
|
|
|
|
|
heightArr.push(height);
|
|
|
|
|
that.$set(that, 'topArr', topArr);
|
|
|
|
|
that.$set(that, 'heightArr', heightArr);
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* 默认选中属性
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
DefaultSelect: function() {
|
|
|
|
|
let productAttr = this.attr.productAttr;
|
|
|
|
|
let value = [];
|
|
|
|
|
let arr = []
|
|
|
|
|
let unSortArr = []
|
|
|
|
|
for (var key in this.productValue) {
|
|
|
|
|
if (this.productValue[key].stock > 0) {
|
|
|
|
|
value = this.attr.productAttr.length ? key.split(",") : [];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for (let i = 0; i < productAttr.length; i++) {
|
|
|
|
|
this.$set(productAttr[i], "index", value[i]);
|
|
|
|
|
}
|
|
|
|
|
let productSelect = this.productValue[value.join(",")];
|
|
|
|
|
if (productSelect && productAttr.length) {
|
|
|
|
|
this.$set(
|
|
|
|
|
this.attr.productSelect,
|
|
|
|
|
"store_name",
|
|
|
|
|
this.storeInfo.store_name
|
|
|
|
|
);
|
|
|
|
|
this.$set(this.attr.productSelect, "image", productSelect.image ? productSelect.image : this.storeInfo.image);
|
|
|
|
|
this.$set(this.attr.productSelect, "price", productSelect.price);
|
|
|
|
|
this.$set(this.attr.productSelect, "stock", productSelect.stock);
|
|
|
|
|
this.$set(this.attr.productSelect, "unique", productSelect.unique);
|
|
|
|
|
this.$set(this, "uniqueValue", productSelect.unique);
|
|
|
|
|
this.$set(this, "attrValue", value.join(","));
|
|
|
|
|
this.$set(this, "attrTxt", "已选择");
|
|
|
|
|
if (productSelect.stock == 0) {
|
|
|
|
|
this.$set(this.attr.productSelect, "cart_num", 0);
|
|
|
|
|
} else {
|
|
|
|
|
this.$set(this.attr.productSelect, "cart_num", 1);
|
|
|
|
|
}
|
|
|
|
|
} else if (!productSelect && productAttr.length) {
|
|
|
|
|
this.$set(
|
|
|
|
|
this.attr.productSelect,
|
|
|
|
|
"store_name",
|
|
|
|
|
this.storeInfo.store_name
|
|
|
|
|
);
|
|
|
|
|
this.$set(this.attr.productSelect, "image", this.storeInfo.image);
|
|
|
|
|
this.$set(this.attr.productSelect, "price", this.storeInfo.price);
|
|
|
|
|
this.$set(this.attr.productSelect, "stock", 0);
|
|
|
|
|
this.$set(this.attr.productSelect, "unique", "");
|
|
|
|
|
this.$set(this, "uniqueValue", "");
|
|
|
|
|
this.$set(this.attr.productSelect, "cart_num", 0);
|
|
|
|
|
this.$set(this, "attrValue", "");
|
|
|
|
|
this.$set(this, "attrTxt", "请选择");
|
|
|
|
|
} else if (!productSelect && !productAttr.length) {
|
|
|
|
|
this.$set(
|
|
|
|
|
this.attr.productSelect,
|
|
|
|
|
"store_name",
|
|
|
|
|
this.storeInfo.store_name
|
|
|
|
|
);
|
|
|
|
|
this.$set(this.attr.productSelect, "image", this.storeInfo.image);
|
|
|
|
|
this.$set(this.attr.productSelect, "price", this.storeInfo.price);
|
|
|
|
|
this.$set(this.attr.productSelect, "stock", this.storeInfo.stock);
|
|
|
|
|
this.$set(this.attr.productSelect, "unique", this.storeInfo.unique || "");
|
|
|
|
|
this.$set(this, "uniqueValue", this.storeInfo.unique || "");
|
|
|
|
|
this.$set(this.attr.productSelect, "cart_num", 1);
|
|
|
|
|
this.$set(this, "attrValue", "");
|
|
|
|
|
this.$set(this, "attrTxt", "请选择");
|
|
|
|
|
} else if (productSelect && !productAttr.length) {
|
|
|
|
|
this.$set(this.attr.productSelect, "store_name", this.storeInfo.store_name);
|
|
|
|
|
this.$set(this.attr.productSelect, "image", productSelect.image);
|
|
|
|
|
this.$set(this.attr.productSelect, "price", productSelect.price);
|
|
|
|
|
this.$set(this.attr.productSelect, "stock", productSelect.stock);
|
|
|
|
|
this.$set(this.attr.productSelect, "unique", productSelect.unique);
|
|
|
|
|
this.$set(this, "uniqueValue", productSelect.unique);
|
|
|
|
|
this.$set(this, "attrValue", value.join(","));
|
|
|
|
|
this.$set(this, "attrTxt", "已选择");
|
|
|
|
|
if (productSelect.stock == 0) {
|
|
|
|
|
this.$set(this.attr.productSelect, "cart_num", 0);
|
|
|
|
|
} else {
|
|
|
|
|
this.$set(this.attr.productSelect, "cart_num", 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onMyEvent: function() {
|
|
|
|
|
this.$set(this.attr, 'cartAttr', false);
|
|
|
|
|
this.$set(this, 'isOpen', false);
|
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* 打开属性插件
|
|
|
|
|
*/
|
|
|
|
|
selecAttr: function() {
|
|
|
|
|
this.$set(this.attr, 'cartAttr', true);
|
|
|
|
|
this.$set(this, 'isOpen', true);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.t-color {
|
|
|
|
|
color: var(--view-theme);
|
|
|
|
|
}
|
|
|
|
|
.p-color {
|
|
|
|
|
color: var(--view-priceColor);
|
|
|
|
|
}
|
|
|
|
|
.bt-color {
|
|
|
|
|
background-color: var(--view-theme);
|
|
|
|
|
border: 1px solid var(--view-theme);
|
|
|
|
|
}
|
|
|
|
|
.product-con .price_text {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 90rpx;
|
|
|
|
|
height: 30rpx;
|
|
|
|
|
background: url(~pages/activity/static/images/presell_text.png);
|
|
|
|
|
background-size: 100%;
|
|
|
|
|
color: #FD6523;
|
|
|
|
|
font-size: 22rpx;
|
|
|
|
|
line-height: 30rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-left: 27rpx;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -8rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .presell_count {
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #999999;
|
|
|
|
|
.presell_time {
|
|
|
|
|
margin: 8rpx 0 4rpx;
|
|
|
|
|
.area_line {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 0 6rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.icon-shijian1 {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-right: 4rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.product-con .presell_process {
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
height: 110rpx;
|
|
|
|
|
padding: 4rpx 32rpx 32rpx;
|
|
|
|
|
|
|
|
|
|
.process_count {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: 24rpx;
|
|
|
|
|
left: 40rpx;
|
|
|
|
|
}
|
|
|
|
|
.process_line {
|
|
|
|
|
width: 414rpx;
|
|
|
|
|
height: 2rpx;
|
|
|
|
|
background: #CCCCCC;
|
|
|
|
|
}
|
|
|
|
|
.text_line {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 25%;
|
|
|
|
|
color: #CCCCCC;
|
|
|
|
|
margin-top: 6rpx;
|
|
|
|
|
position: relative;
|
|
|
|
|
&::after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 14rpx;
|
|
|
|
|
height: 14rpx;
|
|
|
|
|
background: #CCCCCC;
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -14rpx;
|
|
|
|
|
}
|
|
|
|
|
&.text_line1 {
|
|
|
|
|
text-align: left;
|
|
|
|
|
color: #E93323;
|
|
|
|
|
&::after {
|
|
|
|
|
background: #E93323;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
text {
|
|
|
|
|
margin-left: -20rpx
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&.text_line3 {
|
|
|
|
|
text-align: right;
|
|
|
|
|
&::after {
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
text {
|
|
|
|
|
margin-right: -20rpx
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&.text_line2 {
|
|
|
|
|
width: 50%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
&::after {
|
|
|
|
|
left: 50%;
|
|
|
|
|
margin-left: -4rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.product-con .attribute .params{
|
|
|
|
|
margin-right: 20rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #282828;
|
|
|
|
|
&:nth-child(2){
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/*拼团*/
|
|
|
|
|
.product-con .notice {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 62rpx;
|
|
|
|
|
background-color: #ffedeb;
|
|
|
|
|
padding: 0 30rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.product-con .notice .num {
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .notice .num .iconfont {
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
vertical-align: -3rpx;
|
|
|
|
|
margin-right: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .notice .num .line {
|
|
|
|
|
color: #282828;
|
|
|
|
|
margin-left: 15rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .notice .swiper {
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 360rpx;
|
|
|
|
|
line-height: 62rpx;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin-left: 14rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .notice .swiper swiper {
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #282828;
|
|
|
|
|
}
|
|
|
|
|
.product-con .playWay {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 0 30rpx;
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #282828;
|
|
|
|
|
}
|
|
|
|
|
.product-con .playWay .title {
|
|
|
|
|
height: 86rpx;
|
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
}
|
|
|
|
|
.product-con .playWay .title .iconfont {
|
|
|
|
|
margin-left: 13rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #717171;
|
|
|
|
|
}
|
|
|
|
|
.product-con .playWay .way {
|
|
|
|
|
min-height: 110rpx;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #282828;
|
|
|
|
|
}
|
|
|
|
|
.product-con .playWay .way .iconfont {
|
|
|
|
|
color: #cdcdcd;
|
|
|
|
|
font-size: 40rpx;
|
|
|
|
|
margin: 0 35rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .playWay .way .item .num {
|
|
|
|
|
font-size: 34rpx;
|
|
|
|
|
margin-right: 6rpx;
|
|
|
|
|
width: 17px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
.product-con .playWay .way .item .tip {
|
|
|
|
|
font-size: 22rpx;
|
|
|
|
|
color: #a5a5a5;
|
|
|
|
|
margin-top: -4rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .playWay .way .way_text {
|
|
|
|
|
position: relative;
|
|
|
|
|
top: 4rpx;
|
|
|
|
|
}
|
|
|
|
|
.activity_pin {
|
|
|
|
|
width: auto;
|
|
|
|
|
height: 44rpx;
|
|
|
|
|
line-height: 44rpx;
|
|
|
|
|
background: linear-gradient(90deg, rgba(233, 51, 35, 1) 0%, rgba(250, 101, 20, 1) 100%);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
border-radius: 22rpx;
|
|
|
|
|
padding: 0 15rpx;
|
|
|
|
|
margin-left: 19rpx;
|
|
|
|
|
}
|
|
|
|
|
.activity_miao {
|
|
|
|
|
width: auto;
|
|
|
|
|
height: 44rpx;
|
|
|
|
|
line-height: 44rpx;
|
|
|
|
|
padding: 0 15rpx;
|
|
|
|
|
background: linear-gradient(90deg, rgba(250, 102, 24, 1) 0%, rgba(254, 161, 15, 1) 100%);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
border-radius: 22rpx;
|
|
|
|
|
margin-left: 19rpx;
|
|
|
|
|
}
|
|
|
|
|
.iconfonts {
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
}
|
|
|
|
|
.activity_title {
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.activity_kan {
|
|
|
|
|
width: auto;
|
|
|
|
|
height: 44rpx;
|
|
|
|
|
line-height: 44rpx;
|
|
|
|
|
padding: 0 15rpx;
|
|
|
|
|
background: linear-gradient(90deg, rgba(254, 159, 15, 1) 0%, rgba(254, 178, 15, 1) 100%);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
border-radius: 22rpx;
|
|
|
|
|
margin-left: 19rpx;
|
|
|
|
|
}
|
|
|
|
|
.mask {
|
|
|
|
|
z-index: 300 !important;
|
|
|
|
|
}
|
|
|
|
|
.head-bar {
|
|
|
|
|
background: #fff;
|
|
|
|
|
}
|
|
|
|
|
.generate-posters {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 170rpx;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
z-index: 388;
|
|
|
|
|
transform: translate3d(0, 100%, 0);
|
|
|
|
|
transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
|
|
|
|
|
border-top: 1px solid #eee;
|
|
|
|
|
}
|
|
|
|
|
.generate-posters.on {
|
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
.generate-posters .item {
|
|
|
|
|
flex: 50%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
.generate-posters .item .iconfont {
|
|
|
|
|
font-size: 80rpx;
|
|
|
|
|
color: #5eae72;
|
|
|
|
|
}
|
|
|
|
|
.generate-posters .item .iconfont.icon-haibao {
|
|
|
|
|
color: #5391f1;
|
|
|
|
|
}
|
|
|
|
|
.product-con .mask {
|
|
|
|
|
z-index: 88;
|
|
|
|
|
}
|
|
|
|
|
.product-con .footer {
|
|
|
|
|
padding: 0 20rpx 0 30rpx;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
z-index: 277;
|
|
|
|
|
border-top: 1px solid #f0f0f0;
|
|
|
|
|
}
|
|
|
|
|
.product-con .footer .item {
|
|
|
|
|
font-size: 18rpx;
|
|
|
|
|
color: #666;
|
|
|
|
|
}
|
|
|
|
|
.product-con .attribute .atterTxt {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 400rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .attribute .atterTxt1{
|
|
|
|
|
color: #282828;
|
|
|
|
|
&.hasAttr{
|
|
|
|
|
&:after{
|
|
|
|
|
content: "";
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -6rpx;
|
|
|
|
|
margin: 0 6rpx;
|
|
|
|
|
width: 5rpx;
|
|
|
|
|
height: 5rpx;
|
|
|
|
|
background-color: #282828;
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
}
|
|
|
|
|
&:last-child{
|
|
|
|
|
&:after{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.product-intro .title {
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
color: #282828;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.product-intro .pictures,.product-intro .pictures uni-image,
|
|
|
|
|
.product-intro .pictures image{
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.product-con .guaranteeAttr{
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 560rpx;
|
|
|
|
|
overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
padding-bottom: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .title {
|
|
|
|
|
height: 98rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .title image {
|
|
|
|
|
width: 30rpx;
|
|
|
|
|
height: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .title .titleTxt {
|
|
|
|
|
margin: 0 20rpx;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
background-image: linear-gradient(to right, #f57a37 0%, #f21b07 100%);
|
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .slider-banner {
|
|
|
|
|
width: 690rpx;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .slider-banner swiper {
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .slider-banner swiper-item {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .slider-banner .list {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .slider-banner .list .item {
|
|
|
|
|
width: 215rpx;
|
|
|
|
|
margin: 0 22rpx 30rpx 0;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .slider-banner .list .item:nth-of-type(3n) {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .slider-banner .list .item .pictrue {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 215rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .slider-banner .list .item .pictrue image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
border-radius: 6rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .slider-banner .list .item .name {
|
|
|
|
|
color: #282828;
|
|
|
|
|
margin-top: 12rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .slider-banner .swiper-pagination-bullet {
|
|
|
|
|
background-color: #999;
|
|
|
|
|
}
|
|
|
|
|
.product-con .superior .slider-banner .swiper-pagination-bullet-active {
|
|
|
|
|
background-color: #e93323;
|
|
|
|
|
}
|
|
|
|
|
button {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
button::after {
|
|
|
|
|
border: 0;
|
|
|
|
|
}
|
|
|
|
|
action-sheet-item {
|
|
|
|
|
padding: 0;
|
|
|
|
|
height: 240rpx;
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
.contact {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
width: 50%;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 8rpx 0;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
line-height: 2;
|
|
|
|
|
}
|
|
|
|
|
.contact::after {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
.action-sheet {
|
|
|
|
|
font-size: 17px;
|
|
|
|
|
line-height: 1.8;
|
|
|
|
|
width: 50%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
padding: 25rpx 0;
|
|
|
|
|
}
|
|
|
|
|
.canvas {
|
|
|
|
|
z-index: 300;
|
|
|
|
|
width: 750px;
|
|
|
|
|
height: 1190px;
|
|
|
|
|
}
|
|
|
|
|
.poster-pop {
|
|
|
|
|
width: 450rpx;
|
|
|
|
|
height: 714rpx;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
z-index: 399;
|
|
|
|
|
top: 50%;
|
|
|
|
|
margin-top: -357rpx;
|
|
|
|
|
}
|
|
|
|
|
.poster-pop image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
.poster-pop .close {
|
|
|
|
|
width: 46rpx;
|
|
|
|
|
height: 75rpx;
|
|
|
|
|
position: fixed;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: -73rpx;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
.poster-pop .save-poster {
|
|
|
|
|
background-color: #df2d0a;
|
|
|
|
|
font-size: :22rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
text-align: center;
|
|
|
|
|
height: 76rpx;
|
|
|
|
|
line-height: 76rpx;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.poster-pop .keep {
|
|
|
|
|
color: #fff;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 25rpx;
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
.mask {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
|
|
|
z-index: 9;
|
|
|
|
|
}
|
|
|
|
|
.product-con .wrapper {
|
|
|
|
|
padding: 32rpx;
|
|
|
|
|
width: 100%;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.product-con .nav {
|
|
|
|
|
background-color: var(--view-theme);
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
padding: 0 30rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.product-con .nav .money {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.product-con .nav .money .num {
|
|
|
|
|
font-size: 48rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .nav .money .y-money {
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
margin-left: 10rpx;
|
|
|
|
|
text-decoration: line-through;
|
|
|
|
|
}
|
|
|
|
|
.product-con .nav .time {
|
|
|
|
|
font-size: 20rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.product-con .nav .time .timeCon {
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .nav .time .timeCon .num {
|
|
|
|
|
padding: 0 7rpx;
|
|
|
|
|
font-size: 22rpx;
|
|
|
|
|
color: #ff3d3d;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 2rpx;
|
|
|
|
|
}
|
|
|
|
|
.product-con .nav .timeState {
|
|
|
|
|
font-size: 28RPX;
|
|
|
|
|
color: #FFF;
|
|
|
|
|
}
|
|
|
|
|
.product-con .nav .iconfont {
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
.pictrue_log {
|
|
|
|
|
width: 80upx;
|
|
|
|
|
height: 40upx;
|
|
|
|
|
border-radius: 6upx 0 12upx 0;
|
|
|
|
|
line-height: 40upx;
|
|
|
|
|
font-size: 24upx;
|
|
|
|
|
}
|
|
|
|
|
.pictrue_log_class {
|
|
|
|
|
z-index: 3;
|
|
|
|
|
background: -webkit-gradient(linear, left top, right top, from(rgba(246, 122, 56, 1)), to(rgba(241, 27, 9, 1)));
|
|
|
|
|
background: linear-gradient(90deg, rgba(246, 122, 56, 1) 0%, rgba(241, 27, 9, 1) 100%);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
color: #fff;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.navbar .header {
|
|
|
|
|
height: 96rpx;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
color: #050505;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
/* #ifdef MP */
|
|
|
|
|
padding-right: 95rpx;
|
|
|
|
|
/* #endif */
|
|
|
|
|
}
|
|
|
|
|
.navbar .header .item {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin: 0 25rpx;
|
|
|
|
|
}
|
|
|
|
|
.navbar .header .item.on:before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 60rpx;
|
|
|
|
|
height: 5rpx;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
content: "";
|
|
|
|
|
background-image: linear-gradient(to right, #ff3366 0%, #ff6533 100%);
|
|
|
|
|
bottom: -10rpx;
|
|
|
|
|
left: 50%;
|
|
|
|
|
margin-left: -28rpx;
|
|
|
|
|
}
|
|
|
|
|
.navbar {
|
|
|
|
|
position: fixed;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 99;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.navbar .navbarH {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.navbar .navbarH .navbarCon {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.share-box {
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.store-wrapper {
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
.store-hd {
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
border-bottom: 1px solid #F5F5F5;
|
|
|
|
|
.store-info {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
.logo {
|
|
|
|
|
width: 86rpx;
|
|
|
|
|
height: 86rpx;
|
|
|
|
|
image {
|
|
|
|
|
width: 86rpx;
|
|
|
|
|
height: 86rpx;
|
|
|
|
|
border-radius: 6rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.info {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
.name {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #282828;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
.txt {
|
|
|
|
|
margin-top: 8rpx;
|
|
|
|
|
color: #666666;
|
|
|
|
|
font-size: 22rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.link {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 114rpx;
|
|
|
|
|
height: 50rpx;
|
|
|
|
|
background: linear-gradient(-90deg, $bg-end 0%, $bg-star 100%);
|
|
|
|
|
border-radius: 25rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.score-wrapper {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-top: 30rpx;
|
|
|
|
|
.item {
|
|
|
|
|
color: #948D8C;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
text {
|
|
|
|
|
margin-left: 10rpx;
|
|
|
|
|
color: var(--view-priceColor);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.con-box {
|
|
|
|
|
padding: 20rpx 0 20rpx 30rpx;
|
|
|
|
|
.title {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #282828;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
.img-box {
|
|
|
|
|
display: flex;
|
|
|
|
|
.img-item {
|
|
|
|
|
width: 206rpx;
|
|
|
|
|
margin-right: 20rpx;
|
|
|
|
|
/deep/image,/deep/uni-image,/deep/.easy-loadimage {
|
|
|
|
|
width: 206rpx;
|
|
|
|
|
height: 206rpx;
|
|
|
|
|
border-radius: 16rpx;
|
|
|
|
|
}
|
|
|
|
|
.txt {
|
|
|
|
|
.title {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #282828;
|
|
|
|
|
}
|
|
|
|
|
.price {
|
|
|
|
|
color: $theme-color;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
text {
|
|
|
|
|
font-size: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.sys-head {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
.head-wrapper {
|
|
|
|
|
z-index: 999;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 30rpx;
|
|
|
|
|
top: 0;
|
|
|
|
|
/* #ifdef MP */
|
|
|
|
|
height: 43px;
|
|
|
|
|
/* #endif */
|
|
|
|
|
/* #ifdef H5 */
|
|
|
|
|
height: 114rpx;
|
|
|
|
|
/* #endif */
|
|
|
|
|
}
|
|
|
|
|
.head-menu {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: 54rpx;
|
|
|
|
|
width: 140rpx;
|
|
|
|
|
background: rgba(0, 0, 0, .25);
|
|
|
|
|
border-radius: 27rpx;
|
|
|
|
|
.iconfont {
|
|
|
|
|
flex: 1;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #fff;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
&.icon-xiangzuo {
|
|
|
|
|
border-right: 1px solid #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|