12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208 |
- <template>
- <view class="container">
- <view class="carousel">
- <swiper indicator-dots circular=true duration="400">
- <swiper-item class="swiper-item" v-for="(item,index) in product.images_text" :key="index">
- <view class="image-wrapper">
- <image :src="item" class="loaded" @click="previewImage(index)" mode="aspectFill"></image>
- </view>
- </swiper-item>
- </swiper>
- </view>
- <!-- 秒杀的话才显示 -->
- <view class="flash" v-if="flash">
- <view class="sales_price" v-if="product.market_price"><view class="symbol">¥</view>{{specProduct.sales_price}}</view>
- <view class="left" v-if="product.market_price">
- <view class="market_price">¥{{specProduct.market_price}}</view>
- <view class="sold" v-if="progress.number">秒{{progress.number}}件</view>
- </view>
- <view class="right">
- <view class="time" v-if="countdown && progress.number != progress.sold">
- {{product.flash.text}}
- <uni-countdown
- ref="countd"
- :showDay="countdown.day > 0 ? true : false"
- :day="countdown.day"
- :hour="countdown.hour"
- :minute="countdown.minute"
- :second="countdown.second"
- @timeup="timeup"
- color="#fffa30"
- borderWidth="22rpx"
- splitorColor="#fffa30"
- background-color="#282f2c00"
- border-color="#00B26A"></uni-countdown>
- </view>
- <view class="time" v-else :class="{'flashDone': progress.number == false}">抢购已结束</view>
- <view class="progress" v-if="progress.number">
- <ProgressBar
- class="ProgressBar"
- :Sold="progress.sold"
- :widthUpx="250"
- :Width="percentage(progress.number, progress.sold)"
- Type="candy"
- :Vice="true"></ProgressBar>
- </view>
- </view>
- </view>
- <view class="introduce-section" v-if="product.product_id">
- <text class="title">{{product.title}}</text>
- <view class="price-box" v-if="flash == false">
- <text class="price-tip">¥</text>
- <text class="price">{{specProduct.sales_price}}</text>
- <text class="m-price" v-if="specProduct.market_price">¥{{specProduct.market_price}}</text>
- <text class="coupon-tip" v-if="specProduct.market_price > 0 && specProduct.market_price > specProduct.sales_price">{{(specProduct.sales_price/specProduct.market_price*10).toFixed(1)}}折</text>
- </view>
- <view class="bot-row">
- <text>销量: {{product.sales}}</text>
- <text>总库存: {{product.stock}}</text>
- <text>浏览量: {{product.look}}</text>
- </view>
- </view>
- <view class="c-list">
- <view class="c-row b-b" @click="toggleSpec" v-if="product.use_spec">
- <text class="tit">购买类型</text>
- <view class="con">
- <text class="selected-text">
- {{specSelectedName}}
- </text>
- <text style="margin-left: 50rpx;">库存:{{specProduct.stock}}</text>
- </view>
- <text class="yticon icon-you"></text>
- </view>
- <view class="c-row b-b" @click="toggleCoupon" v-if="product.coupon.length">
- <text class="tit">优惠券</text>
- <text class="con t-r red">查看可用优惠券</text>
- <text class="yticon icon-you"></text>
- </view>
- <view class="c-row b-b" v-if="product.server">
- <text class="tit">服务</text>
- <view class="bz-list con">
- {{product.server}}
- </view>
- </view>
- </view>
- <!-- 评价 -->
- <view class="eva-section" v-if="product.evaluate_data && product.evaluate_data.count > 0">
- <view class="e-header" @click="$api.navTo('/pages/product/evaluate?product_id='+product.product_id)">
- <text class="tit">评价</text>
- <text>({{product.evaluate_data.count}})</text>
- <text class="tip">好评率 {{product.evaluate_data.avg}}%</text>
- <text class="yticon icon-you"></text>
- </view>
- <view class="eva-box" v-for="(item, index) in product.evaluate_list" :key="index">
- <image class="portrait" :src="item.avatar" mode="aspectFill"></image>
- <view class="right">
- <text class="name">{{item.username}}</text>
- <text class="con">{{item.comment}}</text>
- <view class="bot">
- <text class="attr" v-if="item.spec">购买类型:{{item.spec}}</text>
- <text class="attr" v-else></text>
- <text class="time">{{item.createtime_text}}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="detail-desc" v-if="product.desc">
- <view class="d-header">
- <text>图文详情</text>
- </view>
- <rich-text :nodes="product.desc"></rich-text>
- </view>
- <!-- 底部操作菜单 -->
- <view class="page-bottom">
- <navigator url="/pages/index/index" open-type="switchTab" class="p-b-btn">
- <text class="yticon icon-fangzi"></text>
- <text>首页</text>
- </navigator>
- <navigator url="/pages/cart/cart" open-type="switchTab" class="p-b-btn">
- <text class="yticon icon-gouwuche"></text>
- <text>购物车</text>
- <text class="cart-count" v-if="product.cart_num">{{product.cart_num}}</text>
- </navigator>
- <view class="p-b-btn" :class="{active: favorite}" @click="toFavorite" v-if="!flash">
- <text class="yticon icon-shoucang"></text>
- <text>收藏</text>
- </view>
- <view class="p-b-btn" v-else>
- <!-- 站位 -->
- <text></text>
- </view>
- <view class="action-btn-group">
- <button :class="{'only': flash}" type="primary" class=" action-btn no-border buy-now-btn" @click="buy">立即购买</button>
- <button v-if="!flash" type="primary" class=" action-btn no-border add-cart-btn" @click="addCart">加入购物车</button>
- </view>
- </view>
- <!-- 领取优惠券-模态层弹窗 -->
- <view class="popup spec" :class="couponClass" @touchmove.stop.prevent="stopPrevent" @click="toggleCoupon">
- <!-- 遮罩层 -->
- <view class="mask"></view>
- <view class="layer attr-content content-coupon" @click.stop="stopPrevent">
-
- <!-- 优惠券页面,仿mt -->
- <view class="coupon-item" v-for="(item, index) in product.coupon" :key="index">
- <view class="con">
- <view class="left">
- <text class="title">{{item.title}}</text>
- <text class="time">有效期至{{item.endtime_text}}</text>
- </view>
- <view class="right">
- <text class="price">{{item.value}}</text>
- <text>满{{item.least}}可用</text>
- </view>
- <view class="circle l"></view>
- <view class="circle r"></view>
- </view>
- <text class="tips">限一张使用</text>
- </view>
- </view>
- <button class="btn retract" @click="toggleCoupon">收起</button>
- </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 v-if="specProduct.image" mode="aspectFill" :src="specProduct.image"></image>
- <view class="right">
- <text class="price">¥{{specProduct.sales_price}}</text>
- <text class="stock">库存:{{specProduct.stock}}件</text>
- <view class="selected">
- 已选:
- <text class="selected-text">
- {{specSelectedName}}
- </text>
- </view>
- </view>
- </view>
- <view v-for="(item,index) in specList" :key="index" class="attr-list">
- <text>{{item.name}}</text>
- <view class="item-list">
- <text v-for="(childItem, childIndex) in specChildList" v-if="childItem.pid === item.id" :key="childIndex" class="tit"
- :class="{selected: childItem.selected}" @click="selectSpec(childIndex, childItem.pid)">
- {{childItem.name}}
- </text>
- </view>
- </view>
- <button class="btn" @click="toggleSpec">完成</button>
- </view>
- </view>
- <!-- 分享 -->
- <!-- <share ref="share" :contentHeight="580" :shareList="shareList"></share> -->
- </view>
- </template>
- <script>
- import {
- mapGetters
- } from 'vuex';
- import share from '@/components/share';
- import ProgressBar from '@/components/Progress-Bar/Progress-Bar';
- import uniCountdown from '@/components/uni-countdown/uni-countdown.vue';
- export default {
- components: {
- share,
- ProgressBar,
- uniCountdown
- },
- computed: {
- ...mapGetters(['userInfo', 'hasLogin']),
-
- specSelectedName() {
- return this.specSelected.join(' ');
- },
- specProduct() {
- if (this.product.use_spec == 1) {
- let market_price = this.product.market_price;
- let sales_price = this.product.sales_price;
- let stock = this.product.stock;
- let image = this.product.image;
- let specSelectedName = this.specSelected.join(' ');
- let specTableList = this.specTableList;
- for (var item of this.specTableList) {
- if (item.value.join(' ') == specSelectedName) {
- market_price = item.market_price;
- sales_price = item.sales_price;
- stock = item.stock;
- image = item.image;
- }
- }
- return {
- market_price,
- sales_price,
- stock,
- image
- };
- } else {
- return this.product;
- }
- }
- },
- data() {
- return {
- couponClass: 'none',
- specClass: 'none',
- specSelected: [],
- favorite: false,
- shareList: [],
- specList: [],
- specChildList: [],
- specTableList: [],
- product: {},
- flash: false,
- id: false,
- countdown: {},
- progress:{
- sold:1,
- number:1
- }
- };
- },
- onPullDownRefresh(){
- if (this.$refs && this.$refs.countd) {
- this.$refs.countd.syncFlag = false;
- }
- this.getDetail(this.id, this.flash?this.flash:0);
- },
- onShareAppMessage(e) {
- return {
- title: this.product.title,
- };
- },
- onLoad(options) {
- this.id = options.id;
- let flash_id = options.flash ? options.flash : 0;
- if (flash_id != 0) {
- this.flash = flash_id;
- }
- this.getDetail(this.id, flash_id);
- },
- methods: {
-
- timeup(){
- this.getDetail(this.id, this.flash?this.flash:0);
- },
-
- async getDetail(id, flash_id) {
- let apiUrl = flash_id == 0 ? '/product/detail' : '/flash/productDetail'
- let product = await this.$api.request(apiUrl + `?id=${id}&flash_id=${flash_id}`, 'GET');
- uni.stopPullDownRefresh();
- if (!product) {
- setTimeout(function(){
- uni.navigateBack();
- }, 3000);
- return;
- }
-
- console.log(product)
-
- product.desc = product.desc.replace(/\<img/gi, '<img style="max-width:100%;height:auto;display:block;"');
-
- console.log(product)
-
- this.product = product;
-
-
- if (product.flash) {
- this.countdown = product.flash.countdown;
- this.progress = product.flash;
- }
- this.favorite = this.product.favorite;
- if (this.product.use_spec) {
- let specList = this.product.spec_list;
- let specTableList = this.product.spec_table_list;
-
- let e = 1;
- let ee = 1;
- let specChildList = [];
- for (let i in specList) {
- specList[i].id = e++;
- for (let ii in specList[i].child) {
- specChildList.push({
- id: ee++,
- pid: specList[i].id,
- name: specList[i].child[ii]
- })
- }
- }
- this.specList = specList;
- this.specChildList = specChildList;
- this.specTableList = specTableList;
-
-
-
-
- this.specSelected = [];
- this.specList.forEach(item => {
- for (let cItem of this.specChildList) {
- if (cItem.pid === item.id) {
- this.$set(cItem, 'selected', true);
- this.specSelected.push(cItem.name);
- break;
- }
- }
- })
- }
- },
-
- toggleCoupon() {
- if (this.couponClass === 'show') {
- this.couponClass = 'hide';
- setTimeout(() => {
- this.couponClass = 'none';
- }, 250);
- } else if (this.couponClass === 'none') {
- this.couponClass = 'show';
- }
- },
-
- toggleSpec() {
- if (this.specClass === 'show') {
- this.specClass = 'hide';
- setTimeout(() => {
- this.specClass = 'none';
- }, 250);
- } else if (this.specClass === 'none') {
- this.specClass = 'show';
- }
- },
-
- selectSpec(index, pid) {
- let list = this.specChildList;
- list.forEach(item => {
- if (item.pid === pid) {
- this.$set(item, 'selected', false);
- }
- })
- this.$set(list[index], 'selected', true);
-
-
- this.specSelected = [];
-
- list.forEach(item => {
- if (item.selected === true) {
- this.specSelected.push(item.name);
- }
- })
- },
-
- share() {
- this.$refs.share.toggleMask();
- },
-
- async toFavorite() {
- if (this.flash) {
- this.$api.msg('秒杀商品不能收藏');
- return;
- }
- let is_login = await this.$api.checkLogin();
- if (is_login) {
- this.favorite = !this.favorite;
- let bool = await this.$api.request('/product/favorite?id=' + this.product.product_id);
- if (!bool) {
- this.favorite = !this.favorite;
- }
- }
- },
- async buy() {
- let spec = this.product.spec;
- let url = `/pages/order/createOrder?id=${this.product.product_id}&spec=${spec}`;
- if (this.flash) {
- url = url + `&flash_id=${this.flash}`;
- }
- uni.navigateTo({
- url:url
- });
- },
-
- async addCart() {
- if (this.flash) {
- this.$api.msg('秒杀商品不能加入购物车');
- return;
- }
- let is_login = await this.$api.checkLogin();
- let spec = this.product.spec;
- let data = await this.$api.request('/cart/add?id=' + this.product.product_id + '&spec='+ spec);
- if (data) {
- this.product.cart_num++;
- }
- },
- stopPrevent() {},
-
- percentage(number, sold) {
- if (!sold) {
- return 0;
- }
- return parseInt(sold / number * 100);
- },
-
- previewImage(index){
- uni.previewImage({
- current:this.product.images_text[index],
- urls:this.product.images_text,
- indicator:"number",
- loop: true
- })
- }
- },
- }
- </script>
- <style lang='scss'>
- page {
- background: $page-color-base;
- padding-bottom: 160upx;
- }
- .icon-you {
- font-size: $font-base + 2upx;
- color: #888;
- }
- .carousel {
- height: 722upx;
- position: relative;
- swiper {
- height: 100%;
- }
- .image-wrapper {
- width: 100%;
- height: 100%;
- }
- .swiper-item {
- display: flex;
- justify-content: center;
- align-content: center;
- height: 750upx;
- overflow: hidden;
- image {
- width: 100%;
- height: 100%;
- }
- }
- }
-
- .introduce-section {
- background: #fff;
- padding: 20upx 30upx;
- .title {
- font-size: 32upx;
- color: $font-color-dark;
- height: 50upx;
- line-height: 50upx;
- }
- .price-box {
- display: flex;
- align-items: baseline;
- height: 64upx;
- padding: 10upx 0;
- font-size: 26upx;
- color: $uni-color-primary;
- }
- .price {
- font-size: $font-lg + 2upx;
- }
- .m-price {
- margin: 0 12upx;
- color: $font-color-light;
- text-decoration: line-through;
- }
- .coupon-tip {
- align-items: center;
- padding: 4upx 10upx;
- background: $uni-color-primary;
- font-size: $font-sm;
- color: #fff;
- border-radius: 6upx;
- line-height: 1;
- transform: translateY(-4upx);
- }
- .bot-row {
- display: flex;
- align-items: center;
- height: 50upx;
- 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: 12upx 30upx;
- .share-icon {
- display: flex;
- align-items: center;
- width: 70upx;
- height: 30upx;
- line-height: 1;
- border: 1px solid $uni-color-primary;
- border-radius: 4upx;
- position: relative;
- overflow: hidden;
- font-size: 22upx;
- color: $uni-color-primary;
- &:after {
- content: '';
- width: 50upx;
- height: 50upx;
- border-radius: 50%;
- left: -20upx;
- top: -12upx;
- position: absolute;
- background: $uni-color-primary;
- }
- }
- .icon-xingxing {
- position: relative;
- z-index: 1;
- font-size: 24upx;
- margin-left: 2upx;
- margin-right: 10upx;
- color: #fff;
- line-height: 1;
- }
- .tit {
- font-size: $font-base;
- margin-left: 10upx;
- }
- .icon-bangzhu1 {
- padding: 10upx;
- font-size: 30upx;
- line-height: 1;
- }
- .share-btn {
- flex: 1;
- text-align: right;
- font-size: $font-sm;
- color: $uni-color-primary;
- }
- .icon-you {
- font-size: $font-sm;
- margin-left: 4upx;
- color: $uni-color-primary;
- }
- }
- .c-list {
- font-size: $font-sm + 2upx;
- color: $font-color-base;
- background: #fff;
- .c-row {
- display: flex;
- align-items: center;
- padding: 20upx 30upx;
- position: relative;
- }
- .tit {
- width: 140upx;
- }
- .con {
- flex: 1;
- color: $font-color-dark;
- .selected-text {
- margin-right: 10upx;
- }
- }
- .bz-list {
- height: 40upx;
- font-size: $font-sm+2upx;
- color: $font-color-dark;
- text {
- display: inline-block;
- margin-right: 30upx;
- }
- }
- .con-list {
- flex: 1;
- display: flex;
- flex-direction: column;
- color: $font-color-dark;
- line-height: 40upx;
- }
- .red {
- color: $uni-color-primary;
- }
- }
-
- .eva-section {
- display: flex;
- flex-direction: column;
- padding: 20upx 30upx;
- background: #fff;
- margin-top: 16upx;
- .e-header {
- display: flex;
- align-items: center;
- height: 70upx;
- font-size: $font-sm + 2upx;
- color: $font-color-light;
- .tit {
- font-size: $font-base + 2upx;
- color: $font-color-dark;
- margin-right: 4upx;
- }
- .tip {
- flex: 1;
- text-align: right;
- }
- .icon-you {
- margin-left: 10upx;
- }
- }
- }
- .eva-box {
- display: flex;
- padding: 20upx 0;
- .portrait {
- flex-shrink: 0;
- width: 80upx;
- height: 80upx;
- border-radius: 100px;
- }
- .right {
- flex: 1;
- display: flex;
- flex-direction: column;
- font-size: $font-base;
- color: $font-color-base;
- padding-left: 26upx;
-
- .con {
- font-size: $font-base;
- color: $font-color-dark;
- padding: 20upx 0;
- }
- .bot {
- display: flex;
- justify-content: space-between;
- font-size: $font-sm;
- color: $font-color-light;
- }
- }
- }
-
- .detail-desc {
- background: #fff;
- margin-top: 16upx;
- .d-header {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 80upx;
- font-size: $font-base + 2upx;
- color: $font-color-dark;
- position: relative;
- text {
- padding: 0 20upx;
- background: #fff;
- position: relative;
- z-index: 1;
- }
- &:after {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translateX(-50%);
- width: 300upx;
- height: 0;
- content: '';
- border-bottom: 1px solid #ccc;
- }
- }
- }
-
- .attr-content {
- padding: 10upx 30upx;
- .a-t {
- display: flex;
- image {
- width: 170upx;
- height: 170upx;
- flex-shrink: 0;
- margin-top: -40upx;
- border-radius: 8upx;
- ;
- }
- .right {
- display: flex;
- flex-direction: column;
- padding-left: 24upx;
- font-size: $font-sm + 2upx;
- color: $font-color-base;
- line-height: 42upx;
- .price {
- font-size: $font-lg;
- color: $uni-color-primary;
- margin-bottom: 10upx;
- }
- .selected-text {
- margin-right: 10upx;
- }
- }
- }
- .attr-list {
- display: flex;
- flex-direction: column;
- font-size: $font-base + 2upx;
- color: $font-color-base;
- padding-top: 30upx;
- padding-left: 10upx;
- }
- .item-list {
- padding: 20upx 0 0;
- display: flex;
- flex-wrap: wrap;
- text {
- display: flex;
- align-items: center;
- justify-content: center;
- background: #eee;
- margin-right: 20upx;
- margin-bottom: 20upx;
- border-radius: 100upx;
- min-width: 60upx;
- height: 60upx;
- padding: 0 20upx;
- 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: 40vh;
- border-radius: 10upx 10upx 0 0;
- background-color: #fff;
- .btn {
- height: 66upx;
- line-height: 66upx;
- border-radius: 100upx;
- background: $uni-color-primary;
- font-size: $font-base + 2upx;
- color: #fff;
- margin: 30upx auto 20upx;
- }
- }
- @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: 30upx;
- bottom: 30upx;
- z-index: 95;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 690upx;
- height: 100upx;
- background: rgba(255, 255, 255, .9);
- box-shadow: 0 0 20upx 0 rgba(0, 0, 0, .5);
- border-radius: 16upx;
- .p-b-btn {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- font-size: $font-sm;
- color: $font-color-base;
- width: 96upx;
- height: 80upx;
- position: relative;
-
-
- .cart-count{
- border: 4rpx solid #fa436a;
- width: 40rpx;
- height: 40rpx;
- color: #fa436a;
- text-align: center;
- border-radius: 40rpx;
- position: absolute;
- background: #fff;
- top: -10rpx;
- right: 0;
- }
- .yticon {
- font-size: 46upx;
- line-height: 48upx;
- color: $font-color-light;
- }
- &.active,
- &.active .yticon {
- color: $uni-color-primary;
- }
- }
- .action-btn-group {
- display: flex;
- height: 76upx;
- border-radius: 100px;
- overflow: hidden;
- box-shadow: 0 20upx 40upx -16upx #fa436a;
- box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
- background: linear-gradient(to right, #ffac30, #fa436a, #F56C6C);
- margin-left: 20upx;
- position: relative;
-
- .only {
- width: 360rpx!important;
- }
- &:after {
- content: '';
- position: absolute;
- top: 50%;
- right: 50%;
- transform: translateY(-50%);
- height: 28upx;
- width: 0;
- border-right: 1px solid rgba(255, 255, 255, .5);
- }
- .action-btn {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 180upx;
- height: 100%;
- font-size: $font-base;
- padding: 0;
- border-radius: 0;
- background: transparent;
- }
- }
-
- }
- .flash {
- height: 100upx;
- background: linear-gradient(to right, #ffac30, #fa436a, #F56C6C);
- display: flex;
- flex-direction: row;
- position: relative;
- .sales_price{
- .symbol{
- font-size: 30upx;
- display: inline;
- }
- color: #fff;
- font-size: 50upx;
- }
- .left{
- font-size: 28upx;
- padding: 10upx;
- .market_price{
- color: #DCDFE6;
- text-decoration: line-through;
- }
- .sold{
- color: #E4E7ED;
- }
- }
- .right{
- height: 100%;
- width: 300upx;
- position: absolute;
- right: 0;
- padding: 4upx;
- margin-right: 20upx;
- .time{
- font-size: 30upx;
- color: #fffa30;
- text-align: center;
- .uni-countdown{
- display: inline-flex;
- }
- }
- .progress{
- position: absolute;
- bottom: 7rpx;
- right: 10upx;
- }
- .flashDone{
- font-size: 40rpx;
- height: 90rpx;
- line-height: 90rpx;
- }
- }
- }
-
-
-
-
- .content-coupon{
- padding-bottom: 100rpx;
- max-height: 800rpx;
- overflow: auto;
- }
- .retract{
- position: fixed;
- bottom: 0;
- width: 700rpx;
- z-index: 100;
- margin: 20rpx 25rpx;
- color:#ffffff;
- background: #fa436a;
- }
- .coupon-item {
- display: flex;
- flex-direction: column;
- background: #fff;
-
- .con {
- display: flex;
- align-items: center;
- position: relative;
- height: 120upx;
- padding: 0 30upx;
-
- &:after {
- position: absolute;
- left: 0;
- bottom: 0;
- content: '';
- width: 100%;
- height: 0;
- border-bottom: 1px dashed #f3f3f3;
- transform: scaleY(50%);
- }
- }
-
- .left {
- display: flex;
- flex-direction: column;
- justify-content: center;
- flex: 1;
- overflow: hidden;
- height: 100upx;
- }
-
- .title {
- font-size: 32upx;
- color: $font-color-dark;
- margin-bottom: 10upx;
- }
-
- .time {
- font-size: 24upx;
- color: $font-color-light;
- }
-
- .right {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- font-size: 26upx;
- color: $font-color-base;
- height: 100upx;
- }
-
- .price {
- font-size: 44upx;
- color: $base-color;
-
- &:before {
- content: '¥';
- font-size: 34upx;
- }
- }
-
- .tips {
- font-size: 24upx;
- color: $font-color-light;
- line-height: 60upx;
- padding-left: 30upx;
- }
-
- .circle {
- position: absolute;
- left: -6upx;
- bottom: -10upx;
- z-index: 10;
- width: 20upx;
- height: 20upx;
- background: #f3f3f3;
- border-radius: 100px;
-
- &.r {
- left: auto;
- right: -6upx;
- }
- }
- }
- </style>
|