773 lines
19 KiB
Vue
773 lines
19 KiB
Vue
<template>
|
||
<view v-if="pageShow" class="page"
|
||
:class="bgTabVal==2?'fullsize noRepeat':bgTabVal==1?'repeat ysize':'noRepeat ysize'" :style="[pageStyle]">
|
||
<view :style="colorStyle">
|
||
<view class="index">
|
||
<!-- 自定义样式 -->
|
||
<block v-for="(item, index) in styleConfig" :key="index">
|
||
<homeComb v-if="item.name == 'homeComb'" :dataConfig="item" @bindSortId="bindSortId"
|
||
:isScrolled="isScrolled"></homeComb>
|
||
<headerSerch v-if="item.name == 'headerSerch'" :dataConfig="item"></headerSerch>
|
||
<shortVideo v-if="item.name == 'shortVideo'" :dataConfig="item"></shortVideo>
|
||
<userInfor v-if="item.name == 'userInfor'" :dataConfig="item" @changeLogin="changeLogin">
|
||
</userInfor>
|
||
<newVip v-if="item.name == 'newVip'" :dataConfig="item"></newVip>
|
||
<!-- 文章列表 -->
|
||
<articleList v-if="item.name == 'articleList'" :dataConfig="item"></articleList>
|
||
<bargain v-if="item.name == 'bargain'" :dataConfig="item" @changeBarg="changeBarg"></bargain>
|
||
<blankPage v-if="item.name == 'blankPage'" :dataConfig="item"></blankPage>
|
||
<combination v-if="item.name == 'combination'" :dataConfig="item">
|
||
</combination>
|
||
<!-- 优惠券 -->
|
||
<coupon v-if="item.name == 'coupon'" :dataConfig="item" @changeLogin="changeLogin"></coupon>
|
||
<!-- 客户服务 -->
|
||
<customerService v-if="item.name == 'customerService'" :dataConfig="item">
|
||
</customerService>
|
||
<!-- 商品列表 -->
|
||
<goodList v-if="item.name == 'goodList'" :dataConfig="item" @detail="goDetail"></goodList>
|
||
<guide v-if="item.name == 'guide'" :dataConfig="item"></guide>
|
||
<!-- 直播模块 -->
|
||
<!-- #ifdef MP-WEIXIN -->
|
||
<liveBroadcast v-if="item.name == 'liveBroadcast'" :dataConfig="item"></liveBroadcast>
|
||
<!-- #endif -->
|
||
<menus v-if="item.name == 'menus'" :dataConfig="item"></menus>
|
||
<!-- 实时消息 -->
|
||
<news v-if="item.name == 'news'" :dataConfig="item"></news>
|
||
<!-- 图片库 -->
|
||
<pictureCube v-if="item.name == 'pictureCube'" :dataConfig="item">
|
||
</pictureCube>
|
||
<!-- 促销列表 -->
|
||
<promotionList v-if="item.name == 'promotionList'" :dataConfig="item" @detail="goDetail"
|
||
:productVideoStatus='product_video_status'>
|
||
</promotionList>
|
||
<richText v-if="item.name == 'richText'" :dataConfig="item"></richText>
|
||
<seckill v-if="item.name == 'seckill'" :dataConfig="item"></seckill>
|
||
<!-- 轮播图-->
|
||
<swiperBg v-if="item.name == 'swiperBg'" :dataConfig="item"></swiperBg>
|
||
<swipers v-if="item.name == 'swipers'" :dataConfig="item"></swipers>
|
||
<!-- 顶部选项卡 -->
|
||
<tabNav v-if="item.name == 'tabNav'" :dataConfig="item" @bindHeight="bindHeighta"
|
||
@bindSortId="bindSortId" :isFixed="isFixed"></tabNav>
|
||
<!-- 标题 -->
|
||
<titles v-if="item.name == 'titles'" :dataConfig="item"></titles>
|
||
<ranking v-if="item.name == 'ranking'" :dataConfig="item"></ranking>
|
||
<presale v-if="item.name == 'presale'" :dataConfig="item"></presale>
|
||
<pointsMall v-if="item.name == 'pointsMall'" :dataConfig="item"></pointsMall>
|
||
<videos v-if="item.name == 'videos'" :dataConfig="item"></videos>
|
||
<signIn v-if="item.name == 'signIn'" :dataConfig="item"></signIn>
|
||
<hotspot v-if="item.name == 'hotspot'" :dataConfig="item"></hotspot>
|
||
<follow v-if="item.name == 'follow'" :dataConfig="item"></follow>
|
||
</block>
|
||
<!-- 分类商品模块 -->
|
||
<!-- #ifndef APP-PLUS -->
|
||
<view class="sort-product px-20" v-if="sortList.children && sortList.children.length">
|
||
<!-- #endif -->
|
||
<!-- #ifdef APP-PLUS -->
|
||
<!-- 商品排序 -->
|
||
<view class="sort-product px-20" :style="{ marginTop: sortMpTop + 'px' }"
|
||
v-if="sortList.children && sortList.children.length">
|
||
<!-- #endif -->
|
||
<waterfallsFlow ref="waterfallsFlow" :wfList="goodList" @itemTap="goDetail"></waterfallsFlow>
|
||
<Loading :loaded="loaded" :loading="loading"></Loading>
|
||
<view v-if="goodList.length == 0 && loaded" class="sort-scroll rd-16rpx">
|
||
<view class="empty-box pb-24">
|
||
<image :src="imgHost + '/statics/images/no-thing.png'"></image>
|
||
<view class="tips">暂无商品,去看点别的吧</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="uni-p-b-98"></view>
|
||
<pageFooter></pageFooter>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
const app = getApp();
|
||
import colors from "@/mixins/color";
|
||
import couponWindow from '@/components/couponWindow/index'
|
||
import {
|
||
getCouponV2,
|
||
getCouponNewUser
|
||
} from '@/api/api.js'
|
||
import {
|
||
getShare
|
||
} from '@/api/public.js';
|
||
// #ifdef H5
|
||
import {
|
||
silenceAuth
|
||
} from '@/api/public.js';
|
||
// #endif
|
||
|
||
import userInfor from '@/pages/index/components/userInfor';
|
||
import homeComb from '@/pages/index/components/homeComb';
|
||
import newVip from '@/pages/index/components/newVip';
|
||
import shortVideo from '@/pages/index/components/shortVideo';
|
||
import headerSerch from '@/pages/index/components/headerSerch';
|
||
import swipers from '@/pages/index/components/swipers';
|
||
import coupon from '@/pages/index/components/coupon';
|
||
import articleList from '@/pages/index/components/articleList';
|
||
import bargain from '@/pages/index/components/bargain';
|
||
import blankPage from '@/pages/index/components/blankPage';
|
||
import combination from '@/pages/index/components/combination';
|
||
import customerService from '@/pages/index/components/customerService';
|
||
import goodList from '@/pages/index/components/goodList';
|
||
import guide from '@/pages/index/components/guide';
|
||
import liveBroadcast from '@/pages/index/components/liveBroadcast';
|
||
import menus from '@/pages/index/components/menus';
|
||
import news from '@/pages/index/components/news';
|
||
import pictureCube from '@/pages/index/components/pictureCube';
|
||
import promotionList from '@/pages/index/components/promotionList';
|
||
import richText from '@/pages/index/components/richText';
|
||
import seckill from '@/pages/index/components/seckill';
|
||
import swiperBg from '@/pages/index/components/swiperBg';
|
||
import tabNav from '@/pages/index/components/tabNav';
|
||
import titles from '@/pages/index/components/titles';
|
||
import ranking from '@/pages/index/components/ranking';
|
||
import presale from '@/pages/index/components/presale'
|
||
import pointsMall from '@/pages/index/components/pointsMall';
|
||
import videos from '@/pages/index/components/videos';
|
||
import signIn from '@/pages/index/components/signIn';
|
||
import hotspot from '@/pages/index/components/hotspot';
|
||
import follow from '@/pages/index/components/follow';
|
||
import waterfallsFlow from "@/components/WaterfallsFlow/WaterfallsFlow.vue";
|
||
// #ifdef MP
|
||
import {
|
||
getTemlIds
|
||
} from '@/api/api.js';
|
||
import {
|
||
SUBSCRIBE_MESSAGE,
|
||
TIPS_KEY
|
||
} from '@/config/cache';
|
||
// #endif
|
||
import {
|
||
mapGetters
|
||
} from 'vuex';
|
||
import {
|
||
getDiy,
|
||
getDiyVersion
|
||
} from '@/api/api.js';
|
||
import {
|
||
getCategoryList,
|
||
getProductslist,
|
||
getProductHot,
|
||
} from '@/api/store.js';
|
||
import {
|
||
goShopDetail
|
||
} from '@/libs/order.js';
|
||
import {
|
||
toLogin
|
||
} from '@/libs/login.js';
|
||
import {
|
||
HTTP_REQUEST_URL
|
||
} from '@/config/app';
|
||
import pageFooter from '@/components/pageFooter/index.vue'
|
||
import recommend from '@/components/recommend';
|
||
import Loading from '@/components/Loading/index.vue';
|
||
export default {
|
||
computed: {
|
||
pageStyle() {
|
||
return {
|
||
backgroundColor: this.bgColor,
|
||
backgroundImage: this.bgPic ? `url(${this.bgPic})` : '',
|
||
minHeight: this.windowHeight + 'px'
|
||
}
|
||
},
|
||
...mapGetters(['isLogin', 'uid']),
|
||
},
|
||
mixins: [colors],
|
||
components: {
|
||
recommend,
|
||
Loading,
|
||
pageFooter,
|
||
couponWindow,
|
||
homeComb,
|
||
newVip,
|
||
userInfor,
|
||
shortVideo,
|
||
headerSerch,
|
||
swipers,
|
||
coupon,
|
||
articleList,
|
||
bargain,
|
||
blankPage,
|
||
combination,
|
||
customerService,
|
||
goodList,
|
||
guide,
|
||
liveBroadcast,
|
||
menus,
|
||
pictureCube,
|
||
news,
|
||
promotionList,
|
||
richText,
|
||
seckill,
|
||
swiperBg,
|
||
tabNav,
|
||
titles,
|
||
ranking,
|
||
presale,
|
||
pointsMall,
|
||
videos,
|
||
signIn,
|
||
hotspot,
|
||
follow,
|
||
waterfallsFlow
|
||
},
|
||
data() {
|
||
return {
|
||
styleConfig: [],
|
||
loading: false,
|
||
loadend: false,
|
||
loadTitle: '加载更多', //提示语
|
||
page: 1,
|
||
limit: this.$config.LIMIT,
|
||
numConfig: 0,
|
||
code: '',
|
||
isCouponShow: false,
|
||
couponObj: {},
|
||
couponObjs: {},
|
||
shareInfo: {},
|
||
footConfig: {},
|
||
pageId: '',
|
||
sortMpTop: 0,
|
||
bgColor: '',
|
||
bgPic: '',
|
||
bgTabVal: '',
|
||
pageShow: true,
|
||
windowHeight: 0,
|
||
isShowAuth: false,
|
||
isScrolled: false,
|
||
sortList: '',
|
||
sortAll: [],
|
||
isSortType: 0,
|
||
hostProduct: [],
|
||
hotScroll: false,
|
||
hotPage: 1,
|
||
hotLimit: 10,
|
||
curSort: 0,
|
||
loaded: false,
|
||
goodPage: 1,
|
||
goodList: [],
|
||
sid: 0,
|
||
imgHost: HTTP_REQUEST_URL,
|
||
product_video_status: false
|
||
};
|
||
},
|
||
onLoad(options) {
|
||
let that = this
|
||
this.$nextTick(function() {
|
||
uni.getSystemInfo({
|
||
success: function(res) {
|
||
that.windowHeight = res.windowHeight;
|
||
}
|
||
});
|
||
})
|
||
const {
|
||
state,
|
||
scope
|
||
} = options;
|
||
this.pageId = options.id
|
||
// #ifdef MP
|
||
if (options.scene) {
|
||
let value = that.$util.getUrlParams(decodeURIComponent(options.scene));
|
||
this.pageId = value.id
|
||
}
|
||
// #endif
|
||
uni.setNavigationBarTitle({
|
||
title: '专题栏'
|
||
});
|
||
|
||
// #ifdef APP-PLUS
|
||
this.sortMpTop = -50
|
||
// #endif
|
||
this.diyData();
|
||
// #ifdef H5
|
||
this.setOpenShare();
|
||
// #endif
|
||
// #ifdef MP || APP-PLUS
|
||
this.getTemlIds();
|
||
// #endif
|
||
getShare().then(res => {
|
||
this.shareInfo = res.data;
|
||
})
|
||
},
|
||
onUnload() {
|
||
// 清除监听
|
||
uni.$off('activeFn');
|
||
},
|
||
watch: {
|
||
isLogin: {
|
||
deep: true, //深度监听设置为 true
|
||
handler: function(newV, oldV) {
|
||
// 优惠券弹窗
|
||
var newDates = new Date().toLocaleDateString();
|
||
if (newV) {
|
||
try {
|
||
var oldDate = uni.getStorageSync('oldDate') || ''
|
||
} catch {}
|
||
if (oldDate != newDates) {
|
||
this.getCoupon();
|
||
|
||
}
|
||
}
|
||
}
|
||
}
|
||
},
|
||
onShow() {
|
||
uni.removeStorageSync('form_type_cart');
|
||
// 优惠券弹窗
|
||
var newDates = new Date().toLocaleDateString();
|
||
if (this.isLogin) {
|
||
try {
|
||
var oldDate = uni.getStorageSync('oldDate') || ''
|
||
} catch {}
|
||
if (oldDate != newDates) {
|
||
this.getCoupon();
|
||
}
|
||
let oldUser = uni.getStorageSync('oldUser') || 0;
|
||
if (!oldUser) {
|
||
this.getCouponOnce();
|
||
}
|
||
}
|
||
},
|
||
mounted() {},
|
||
methods: {
|
||
// 分类点击
|
||
changeSort(item, index) {
|
||
if (this.curSort == index) return;
|
||
this.curSort = index;
|
||
this.sid = item.id;
|
||
this.goodList = [];
|
||
this.goodPage = 1;
|
||
this.loaded = false;
|
||
this.getGoodsList();
|
||
},
|
||
/**
|
||
* @param data {
|
||
classPage: 0 分类id
|
||
microPage: 0 微页面id
|
||
type: 1 0 商品分类 1 微页面
|
||
}*/
|
||
bindSortId(data) {
|
||
this.styleConfig = [];
|
||
if (data.type == 1) {
|
||
this.getProductList(data.classPage);
|
||
} else {
|
||
this.sortList = [];
|
||
this.getMicroPage(data.microPage, true);
|
||
}
|
||
},
|
||
/**
|
||
* 获取DIY
|
||
* @param {number} id
|
||
* @param {boolean} type 区分是否是微页面
|
||
*/
|
||
getMicroPage(id, type) {
|
||
let that = this;
|
||
that.styleConfig = []
|
||
uni.showLoading({
|
||
title: '加载中...'
|
||
});
|
||
getDiy(id).then(res => {
|
||
uni.hideLoading();
|
||
let data = res.data;
|
||
that.styleConfig = that.objToArr(res.data.value);
|
||
that.styleConfig.forEach((item, index) => {
|
||
if (['headerSerch', 'homeComb'].includes(item.name)) {
|
||
that.styleConfig.splice(index, 1);
|
||
}
|
||
});
|
||
}).catch(err => {
|
||
return that.$util.Tips({
|
||
title: err
|
||
});
|
||
uni.hideLoading();
|
||
});
|
||
},
|
||
getProductList(data) {
|
||
this.curSort = 0;
|
||
this.loaded = false;
|
||
if (this.sortAll.length > 0) {
|
||
this.sortAll.forEach((el, index) => {
|
||
if (el.id == data) {
|
||
this.$set(this, 'sortList', el);
|
||
this.sid = el.children.length ? el.children[0].id : '';
|
||
}
|
||
});
|
||
this.goodList = [];
|
||
this.goodPage = 1;
|
||
this.$nextTick(() => {
|
||
if (this.sortList != '') this.getGoodsList();
|
||
});
|
||
} else {
|
||
getCategoryList().then(res => {
|
||
this.sortAll = res.data;
|
||
res.data.forEach((el, index) => {
|
||
if (el.id == data) {
|
||
this.sortList = el;
|
||
this.sid = el.children.length ? el.children[0].id : '';
|
||
}
|
||
});
|
||
this.goodList = [];
|
||
this.goodPage = 1;
|
||
this.$nextTick(() => {
|
||
if (this.sortList != '') this.getGoodsList();
|
||
});
|
||
});
|
||
}
|
||
},
|
||
// 商品列表
|
||
getGoodsList() {
|
||
if (this.loading || this.loaded) return;
|
||
this.loading = true;
|
||
getProductslist({
|
||
sid: this.sid,
|
||
keyword: '',
|
||
priceOrder: '',
|
||
salesOrder: '',
|
||
news: 0,
|
||
page: this.goodPage,
|
||
limit: 10,
|
||
cid: this.sortList.id
|
||
}).then(res => {
|
||
this.loading = false;
|
||
this.loaded = res.data.length < 10;
|
||
this.goodPage++;
|
||
this.goodList = this.goodList.concat(res.data);
|
||
});
|
||
},
|
||
/**
|
||
* 获取我的推荐
|
||
*/
|
||
get_host_product: function() {
|
||
let that = this;
|
||
if (that.hotScroll) return;
|
||
getProductHot(that.hotPage, that.hotLimit).then(res => {
|
||
that.hotPage++;
|
||
that.hotScroll = res.data.length < that.hotLimit;
|
||
that.hostProduct = that.hostProduct.concat(res.data);
|
||
});
|
||
},
|
||
// 新用户优惠券
|
||
getCouponOnce() {
|
||
getCouponNewUser().then(res => {
|
||
this.couponObjs = res.data;
|
||
});
|
||
},
|
||
couponCloses() {
|
||
this.couponObjs.show = false;
|
||
try {
|
||
uni.setStorageSync('oldUser', 1);
|
||
} catch (e) {
|
||
|
||
}
|
||
},
|
||
// 优惠券弹窗
|
||
getCoupon() {
|
||
getCouponV2().then(res => {
|
||
this.couponObj = res.data
|
||
if (res.data.list.length > 0) {
|
||
this.isCouponShow = true
|
||
}
|
||
})
|
||
},
|
||
// 优惠券弹窗关闭
|
||
couponClose() {
|
||
this.isCouponShow = false
|
||
try {
|
||
uni.setStorageSync('oldDate', new Date().toLocaleDateString());
|
||
} catch {}
|
||
},
|
||
// #ifdef H5
|
||
// 获取url后面的参数
|
||
getQueryString(name) {
|
||
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
|
||
var reg_rewrite = new RegExp("(^|/)" + name + "/([^/]*)(/|$)", "i");
|
||
var r = window.location.search.substr(1).match(reg);
|
||
var q = window.location.pathname.substr(1).match(reg_rewrite);
|
||
if (r != null) {
|
||
return unescape(r[2]);
|
||
} else if (q != null) {
|
||
return unescape(q[2]);
|
||
} else {
|
||
return null;
|
||
}
|
||
},
|
||
// #endif
|
||
|
||
// #ifdef MP || APP-PLUS
|
||
getTemlIds() {
|
||
let messageTmplIds = wx.getStorageSync(SUBSCRIBE_MESSAGE);
|
||
if (!messageTmplIds) {
|
||
getTemlIds().then(res => {
|
||
if (res.data) wx.setStorageSync(SUBSCRIBE_MESSAGE, JSON.stringify(res.data));
|
||
});
|
||
}
|
||
},
|
||
// #endif
|
||
// 对象转数组
|
||
objToArr(data) {
|
||
const keys = Object.keys(data)
|
||
keys.sort((a, b) => a - b)
|
||
const m = keys.map(key => data[key]);
|
||
return m;
|
||
},
|
||
setDiyData(data) {
|
||
// let data = res.data;
|
||
if (data.length == 0) {
|
||
return this.$util.Tips({
|
||
title: '暂无数据'
|
||
}, {
|
||
tab: 3
|
||
})
|
||
}
|
||
|
||
if (data.is_bg_color) {
|
||
this.bgColor = data.color_picker
|
||
}
|
||
if (data.is_bg_pic) {
|
||
this.bgPic = data.bg_pic
|
||
this.bgTabVal = data.bg_tab_val
|
||
}
|
||
this.pageShow = data.is_show
|
||
uni.setNavigationBarTitle({
|
||
title: data.title
|
||
})
|
||
let temp = []
|
||
let lastArr = this.objToArr(data.value)
|
||
lastArr.forEach((item, index, arr) => {
|
||
if (item.isHide !== '1') {
|
||
temp.push(item);
|
||
}
|
||
});
|
||
this.styleConfig = temp;
|
||
},
|
||
getDiyData() {
|
||
getDiy(this.pageId).then(res => {
|
||
uni.setStorageSync('specialDiyData', JSON.stringify(res.data));
|
||
this.setDiyData(res.data);
|
||
});
|
||
},
|
||
diyData() {
|
||
let that = this;
|
||
let diyData = uni.getStorageSync('specialDiyData');
|
||
if (diyData) {
|
||
getDiyVersion(this.pageId).then(res => {
|
||
let diyVersion = uni.getStorageSync('specialDiyVersion');
|
||
if ((res.data.version + this.pageId) === diyVersion) {
|
||
this.setDiyData(JSON.parse(diyData));
|
||
} else {
|
||
uni.setStorageSync('specialDiyVersion', (res.data.version + this.pageId));
|
||
this.getDiyData();
|
||
}
|
||
});
|
||
} else {
|
||
this.getDiyData();
|
||
}
|
||
},
|
||
changeBarg(item) {
|
||
if (!this.isLogin) {
|
||
toLogin()
|
||
} else {
|
||
uni.navigateTo({
|
||
url: `/pages/activity/goods_bargain_details/index?id=${item.id}&spid=${this.uid}`
|
||
});
|
||
}
|
||
},
|
||
goDetail(item) {
|
||
goShopDetail(item, this.uid).then(res => {
|
||
uni.navigateTo({
|
||
url: `/pages/goods_details/index?id=${item.id}`
|
||
});
|
||
});
|
||
|
||
},
|
||
// #ifdef H5
|
||
// 微信分享;
|
||
setOpenShare: function() {
|
||
let that = this;
|
||
if (that.$wechat.isWeixin()) {
|
||
getShare().then(res => {
|
||
let data = res.data.data;
|
||
let configAppMessage = {
|
||
desc: data.synopsis,
|
||
title: data.title,
|
||
link: location.href,
|
||
imgUrl: data.img
|
||
};
|
||
that.$wechat.wechatEvevt(['updateAppMessageShareData', 'updateTimelineShareData'],
|
||
configAppMessage);
|
||
});
|
||
}
|
||
}
|
||
// #endif
|
||
},
|
||
onReachBottom: function() {},
|
||
onPageScroll(e) {
|
||
if (e.scrollTop > 10) {
|
||
this.isScrolled = true;
|
||
} else {
|
||
this.isScrolled = false;
|
||
}
|
||
uni.$emit('scroll');
|
||
},
|
||
//#ifdef MP || APP-PLUS
|
||
onShareAppMessage() {
|
||
return {
|
||
title: this.shareInfo.title,
|
||
path: '/pages/index/index',
|
||
imageUrl: this.storeInfo.img,
|
||
};
|
||
},
|
||
//#endif
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.sort-scroll {
|
||
background-color: #fff;
|
||
}
|
||
|
||
.empty-box {
|
||
text-align: center;
|
||
padding-top: 50rpx;
|
||
|
||
.tips {
|
||
color: #aaa;
|
||
font-size: 26rpx;
|
||
}
|
||
|
||
image {
|
||
width: 414rpx;
|
||
height: 304rpx;
|
||
}
|
||
}
|
||
|
||
.sort-product {
|
||
margin-top: 20rpx;
|
||
|
||
.sort-box {
|
||
display: flex;
|
||
width: 100%;
|
||
border-radius: 16rpx;
|
||
padding: 30rpx 0;
|
||
|
||
.sort-item {
|
||
width: 20%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
flex-shrink: 0;
|
||
|
||
image {
|
||
width: 90rpx;
|
||
height: 90rpx;
|
||
border-radius: 50%;
|
||
}
|
||
|
||
.txt {
|
||
color: #272727;
|
||
font-size: 24rpx;
|
||
margin-top: 10rpx;
|
||
overflow: hidden;
|
||
white-space: nowrap;
|
||
text-overflow: ellipsis;
|
||
width: 140rpx;
|
||
text-align: center;
|
||
}
|
||
|
||
.pictrues {
|
||
width: 90rpx;
|
||
height: 90rpx;
|
||
background: #f8f8f8;
|
||
border-radius: 50%;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.icon-gengduo1 {
|
||
color: #333;
|
||
}
|
||
|
||
&.on {
|
||
.txt {
|
||
color: #fc4141;
|
||
}
|
||
|
||
image {
|
||
border: 1px solid #fc4141;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.product-list {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
justify-content: space-between;
|
||
margin-top: 30rpx;
|
||
padding: 0 20rpx;
|
||
|
||
.product-item {
|
||
position: relative;
|
||
width: 344rpx;
|
||
background: #fff;
|
||
border-radius: 10rpx;
|
||
margin-bottom: 20rpx;
|
||
overflow: hidden;
|
||
|
||
.pictrue {
|
||
position: relative;
|
||
}
|
||
|
||
image {
|
||
width: 100%;
|
||
height: 344rpx;
|
||
border-radius: 10rpx 10rpx 0 0;
|
||
}
|
||
|
||
.info {
|
||
padding: 14rpx 16rpx;
|
||
|
||
.title {
|
||
font-size: 28rpx;
|
||
}
|
||
|
||
.price-box {
|
||
font-size: 34rpx;
|
||
font-weight: 700;
|
||
margin-top: 8px;
|
||
color: #fc4141;
|
||
|
||
text {
|
||
font-size: 26rpx;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.page {
|
||
padding-bottom: 50px;
|
||
}
|
||
|
||
.ysize {
|
||
background-size: 100%;
|
||
}
|
||
|
||
.fullsize {
|
||
background-size: 100% 100%;
|
||
}
|
||
|
||
.repeat {
|
||
background-repeat: repeat;
|
||
}
|
||
|
||
.noRepeat {
|
||
background-repeat: no-repeat;
|
||
}
|
||
</style>
|