第一次提交
This commit is contained in:
814
pages/plus/assemble/detail/detail.vue
Normal file
814
pages/plus/assemble/detail/detail.vue
Normal file
@ -0,0 +1,814 @@
|
||||
<template>
|
||||
<view class="product-detail">
|
||||
<scroll-view scroll-y="true" class="scroll-Y" :style="'height:' + scrollviewHigh + 'px;'" v-if="!loadding">
|
||||
<!--图片-->
|
||||
<view class="product-pic">
|
||||
<swiper class="swiper" :indicator-dots="indicatorDots" :autoplay="autoplay" :interval="interval" :duration="duration">
|
||||
<swiper-item v-for="(item, index) in detail.product.image" :key="index">
|
||||
<image :src="item.file_path" mode="aspectFit"></image>
|
||||
</swiper-item>
|
||||
</swiper>
|
||||
</view>
|
||||
|
||||
<!--限时拼团-->
|
||||
<view class="limited-spike d-b-c m-0-20 mt20">
|
||||
<text class="left-name">限时拼团</text>
|
||||
<view class="right">
|
||||
<Countdown ref='countdown' :config="countdownConfig" @returnVal="returnValFunc"></Countdown>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!--基本信息-->
|
||||
<view class="bg-white m-0-20 mb20 p30 bottom-radius">
|
||||
<view class="price-wrap">
|
||||
<view class="left">
|
||||
<template>
|
||||
<view class="new-price">
|
||||
<text class="f24 redF6">¥</text>
|
||||
<text class="num">{{ detail.assemble_price }}</text>
|
||||
</view>
|
||||
<text class="old-price">{{ '¥'+detail.line_price }}</text>
|
||||
</template>
|
||||
</view>
|
||||
<template>
|
||||
<text class="already-sale">已出售{{ detail.product_sales }}件</text>
|
||||
</template>
|
||||
</view>
|
||||
<view class="product-name">{{ detail.product.product_name }}</view>
|
||||
<view class="product-describe" v-if="detail.product.selling_point">{{ detail.product.selling_point }}</view>
|
||||
</view>
|
||||
<view class="m20 br12 o-h p-0-30 bg-white">
|
||||
<!--已选择-->
|
||||
<view class="already-choice" :class="detail.server!=''?'border-b-d9':''" v-if="detail.spec_type == 20" @click="openPopup('order')">
|
||||
<view class="group-hd">
|
||||
<view class="left">
|
||||
<text class="min-name gray9">选择:</text>
|
||||
</view>
|
||||
<view class="flex-1 p-0-20 center-content f28 text-ellipsis o-h">
|
||||
{{alreadyChioce}}
|
||||
</view>
|
||||
<view class="right">
|
||||
<text class="icon iconfont icon-jiantou" style="font-size: 22rpx;color: #9A9A9A;"></text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 保障 -->
|
||||
<view class="already-choice" @click="showGuarantee" v-if="detail.server!=''">
|
||||
<view class="group-hd">
|
||||
<view class="left">
|
||||
<text class="min-name gray9">服务:</text>
|
||||
</view>
|
||||
<view class="flex-1 p-0-20 center-content f28 text-ellipsis o-h">
|
||||
{{serverList}}
|
||||
</view>
|
||||
<view class="right">
|
||||
<text class="icon iconfont icon-jiantou" style="font-size: 22rpx;color: #9A9A9A;"></text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!--拼团用户-->
|
||||
<Bill :bill="bill" @openMore="openMoreFunc" @gobill="gobillFunc"></Bill>
|
||||
<!-- 店铺信息 -->
|
||||
<view class="shop_head_info" v-if="store_open">
|
||||
<view class="shop_list_body_item_shop">
|
||||
<view class="shop_list_body_item_shop_logo">
|
||||
<image :src="shop_info.logos" mode=""></image>
|
||||
</view>
|
||||
<view class="shop_list_body_item_shop_info flex-1">
|
||||
<view class="f32 title fb">{{shop_info.name}}</view>
|
||||
<view class="f26 brand gray9">主营品牌: {{shop_info.category_name}}</view>
|
||||
<view class="f26 sales gray9">销量:{{shop_info.product_sales}}件</view>
|
||||
</view>
|
||||
<view class="shop_list_body_item_shop_others">
|
||||
<view class="f26 collect">店铺评分:<text class="fb redF6">{{shop_info.server_score}}</text></view>
|
||||
<button @click="goto_shop()">进店看看</button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!--详情内容-->
|
||||
<view class="product-content">
|
||||
<view class="group-hd border-b-e">
|
||||
<view class="d-s-c">
|
||||
<view class="pro_nameline"></view><text class="min-name f32 fb">商品介绍</text>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="detail.product.is_picture == 0" class="content-box" v-html="detail.product.content"></view>
|
||||
<view v-if="detail.product.is_picture == 1" class="content-box">
|
||||
<view class="ww100" v-for="(item, index) in detail.product.contentImage" :key="index"><image class="ww100" :src="item.file_path" mode="widthFix"></image></view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
|
||||
<!--底部按钮-->
|
||||
<view class="btns-wrap d-s-c d-stretch">
|
||||
<template v-if="!loadding">
|
||||
<view class="customer-service d-c-c">
|
||||
<view class="icon-box d-c-c" @click="gotoPage('/pages/index/index')">
|
||||
<button class="d-c-c d-c bg-white">
|
||||
<text class="btn_btom pr icon iconfont icon-Homehomepagemenu gray3" style="height: 50rpx;line-height: 60rpx;"></text>
|
||||
<text class="f22 gray3" style="height: 50rpx;line-height: 40rpx;">首页</text>
|
||||
</button>
|
||||
</view>
|
||||
<!-- #ifdef MP-WEIXIN -->
|
||||
<view class="icon-box">
|
||||
<button class="d-c-c d-c" open-type="contact" session-from="wxapp">
|
||||
<text class="icon iconfont icon-kefu2 gray3" style="height: 50rpx;line-height: 60rpx;"></text>
|
||||
<text class="f22 gray3" style="height: 50rpx;line-height: 40rpx;">客服</text>
|
||||
</button>
|
||||
</view>
|
||||
<!-- #endif -->
|
||||
<!-- #ifdef H5 -->
|
||||
<view class="icon-box" @click="openMaservice">
|
||||
<button class="d-c-c d-c">
|
||||
<text class="icon iconfont icon-kefu2 gray3" style="height: 50rpx;line-height: 60rpx;"></text>
|
||||
<text class="f22 gray3" style="height: 50rpx;line-height: 40rpx;">客服</text>
|
||||
</button>
|
||||
</view>
|
||||
<!-- #endif -->
|
||||
</view>
|
||||
<view class="buy-alone flex-1 d-c-c d-c" @click="gotoProducntDetail()">
|
||||
<text>¥{{ detail.product.product_price }}</text>
|
||||
<button type="primary">单独购买</button>
|
||||
</view>
|
||||
<view class="make-group flex-1 d-c-c d-c" @click="openPopup('order')">
|
||||
<text>¥{{ detail.assemble_price }}</text>
|
||||
<button type="primary">立即拼团</button>
|
||||
</view>
|
||||
</template>
|
||||
</view>
|
||||
|
||||
<!--购物确定-->
|
||||
<spec :isPopup="isPopup" @confirm="confirm" :productModel="productModel" @close="closePopup"></spec>
|
||||
|
||||
<!--客服-->
|
||||
<Mpservice v-if="isMpservice" :isMpservice="isMpservice" @close="closeMpservice"></Mpservice>
|
||||
|
||||
<!-- 保障弹窗 -->
|
||||
<guarantee :isguarantee="isguarantee" :server="detail.server" @close="closeGuarantee"></guarantee>
|
||||
|
||||
<!--更多用户-->
|
||||
<MoreBill v-if="ismore" :bill="bill" :ismore="true" @closeMore="openMoreFunc" @gobill="gobillFunc"></MoreBill>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Countdown from '@/components/countdown/countdown.vue';
|
||||
import Mpservice from '@/components/mpservice/Mpservice.vue';
|
||||
import MoreBill from './popup/MoreBill.vue';
|
||||
import Spec from './popup/Spec.vue';
|
||||
import Bill from './part/Bill.vue';
|
||||
import utils from '@/common/utils.js';
|
||||
import guarantee from '@/components/guarantee.vue';
|
||||
export default {
|
||||
components: {
|
||||
Spec,
|
||||
Countdown,
|
||||
Mpservice,
|
||||
Bill,
|
||||
MoreBill,
|
||||
guarantee
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
from_type: 10,
|
||||
/*手机高度*/
|
||||
phoneHeight: 0,
|
||||
/*可滚动视图区域高度*/
|
||||
scrollviewHigh: 0,
|
||||
/*是否加载完成*/
|
||||
loadding: true,
|
||||
/*是否显示面板指示点*/
|
||||
indicatorDots: true,
|
||||
/*是否知道切换*/
|
||||
autoplay: true,
|
||||
/*自动切换时间间隔*/
|
||||
interval: 2000,
|
||||
/*滑动动画时长*/
|
||||
duration: 500,
|
||||
/*商品id*/
|
||||
product_id: null,
|
||||
/*产品图片展示*/
|
||||
imagList: [],
|
||||
/*活动详情*/
|
||||
activeDetail: {},
|
||||
alreadyChioce: '',
|
||||
/*详情*/
|
||||
detail: {
|
||||
product_sku: {},
|
||||
show_sku: {
|
||||
assemble_price: '',
|
||||
product_sku_id: 0,
|
||||
line_price: '',
|
||||
stock_num: 0,
|
||||
sku_image: '',
|
||||
assemble_product_sku_id: 0
|
||||
},
|
||||
show_point_sku: {}
|
||||
},
|
||||
/*已购买用户*/
|
||||
bill: [],
|
||||
/*是否确定购买弹窗*/
|
||||
isPopup: false,
|
||||
/*商品属性*/
|
||||
specData: null,
|
||||
/*子级页面传参*/
|
||||
productModel: {},
|
||||
/*拼团商品ID*/
|
||||
assemble_product_id: 0,
|
||||
/*倒计时配置*/
|
||||
countdownConfig: {
|
||||
/*开始时间*/
|
||||
startstamp: 0,
|
||||
/*结束时间*/
|
||||
endstamp: 0
|
||||
},
|
||||
/*是否打开客服*/
|
||||
isMpservice: false,
|
||||
/*是否打开更多*/
|
||||
ismore: false,
|
||||
/*拼团ID*/
|
||||
assemble_bill_id: null,
|
||||
/*当前用户id*/
|
||||
user_id: null,
|
||||
/*商品规格*/
|
||||
productSku: [],
|
||||
serverList: '', //保障
|
||||
isguarantee: false,
|
||||
shop_info: {},
|
||||
store_open: 1
|
||||
};
|
||||
},
|
||||
onLoad(e) {
|
||||
uni.showLoading({
|
||||
title: '加载中'
|
||||
});
|
||||
|
||||
this.user_id = this.getUserId();
|
||||
|
||||
/*拼团商品ID*/
|
||||
this.assemble_product_id = e.assemble_product_id;
|
||||
|
||||
/*拼团组ID*/
|
||||
this.assemble_bill_id = e.assemble_bill_id;
|
||||
},
|
||||
mounted() {
|
||||
this.init();
|
||||
|
||||
/*获取产品详情*/
|
||||
this.getData();
|
||||
},
|
||||
onHide() {},
|
||||
methods: {
|
||||
/*初始化*/
|
||||
init() {
|
||||
let _this = this;
|
||||
uni.getSystemInfo({
|
||||
success(res) {
|
||||
_this.phoneHeight = res.windowHeight;
|
||||
// 计算组件的高度
|
||||
let view = uni.createSelectorQuery().select('.btns-wrap');
|
||||
view.boundingClientRect(data => {
|
||||
let h = _this.phoneHeight - data.height;
|
||||
//#ifdef MP-WEIXIN
|
||||
h = _this.phoneHeight
|
||||
//#endif
|
||||
_this.scrollviewHigh = h;
|
||||
}).exec();
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
/*获取数据*/
|
||||
getData() {
|
||||
let self = this;
|
||||
self.loadding = true;
|
||||
self._get(
|
||||
'plus.assemble.product/detail', {
|
||||
assemble_product_id: self.assemble_product_id
|
||||
},
|
||||
function(res) {
|
||||
self.countdownConfig.startstamp = res.data.active.start_time;
|
||||
self.countdownConfig.endstamp = res.data.active.end_time;
|
||||
self.activeDetail = res.data.active;
|
||||
/*详情内容格式化*/
|
||||
res.data.detail.product.content = utils.format_content(res.data.detail.product.content);
|
||||
|
||||
/*初始化商品多规格*/
|
||||
if (res.data.detail.product.spec_type == 20) {
|
||||
self.initSpecData(res.data.detail.assembleSku, res.data.specData);
|
||||
}
|
||||
//#ifdef MP-WEIXIN
|
||||
self.store_open = res.data.store_open;
|
||||
//#endif
|
||||
self.detail = res.data.detail;
|
||||
self.shop_info = res.data.detail.supplier;
|
||||
self.bill = res.data.bill;
|
||||
self.getServer();
|
||||
self.loadding = false;
|
||||
uni.hideLoading();
|
||||
}
|
||||
);
|
||||
},
|
||||
getServer() {
|
||||
let self = this;
|
||||
let serverList = [];
|
||||
if (self.detail.server) {
|
||||
self.detail.server.forEach((item, index) => {
|
||||
serverList.push(item.name)
|
||||
})
|
||||
self.serverList = serverList.join('·')
|
||||
}
|
||||
},
|
||||
/*多规格商品*/
|
||||
initSpecData(list, data) {
|
||||
for (let i = 0; i < list.length; i++) {
|
||||
let item = list[i];
|
||||
if (item.productSku) {
|
||||
let arr = item.productSku.spec_sku_id.split('_').map(Number);
|
||||
this.productSku.push(arr);
|
||||
}
|
||||
}
|
||||
for (let i in data.spec_attr) {
|
||||
for (let j = 0; j < data.spec_attr[i].spec_items.length; j++) {
|
||||
let item = data.spec_attr[i].spec_items[j];
|
||||
if (this.hasSpec(item.item_id, i)) {
|
||||
item.checked = false;
|
||||
item.disabled = false;
|
||||
} else {
|
||||
data.spec_attr[i].spec_items.splice(j, 1);
|
||||
j--;
|
||||
}
|
||||
}
|
||||
}
|
||||
this.specData = data;
|
||||
if (this.specData.spec_attr) {
|
||||
this.specData.spec_attr.forEach(item => {
|
||||
this.alreadyChioce += item.group_name;
|
||||
this.alreadyChioce += ' / ';
|
||||
});
|
||||
this.alreadyChioce = this.alreadyChioce.replace(/(\s\/\s)$/gi, '');
|
||||
}
|
||||
},
|
||||
|
||||
/*判断有没有规格*/
|
||||
hasSpec(id, _index) {
|
||||
let flag = false;
|
||||
for (let i = 0; i < this.productSku.length; i++) {
|
||||
let arr = this.productSku[i];
|
||||
if (arr[_index] == id) {
|
||||
flag = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return flag;
|
||||
},
|
||||
|
||||
/*打开窗口*/
|
||||
openPopup(e) {
|
||||
/*是否单团,0不,1是*/
|
||||
if ((this.activeDetail.is_single == 1 && e == 'order' && this.bill.length == 0) || (this.activeDetail.is_single ==
|
||||
0 && e == 'order') || e != 'order') {
|
||||
if (e == 'order' && this.assemble_bill_id == null) {
|
||||
this.assemble_bill_id = 0;
|
||||
}
|
||||
let obj = {
|
||||
specData: this.specData,
|
||||
detail: this.detail,
|
||||
productSpecArr: this.specData != null ? new Array(this.specData.spec_attr.length) : [],
|
||||
show_sku: {
|
||||
sku_image: '',
|
||||
seckill_price: 0,
|
||||
product_sku_id: 0,
|
||||
line_price: 0,
|
||||
seckill_stock: 0,
|
||||
seckill_product_sku_id: 0,
|
||||
assemble_bill_id: this.assemble_bill_id,
|
||||
sum: 1
|
||||
},
|
||||
productSku: this.productSku,
|
||||
type: e
|
||||
};
|
||||
this.productModel = obj;
|
||||
this.isPopup = true;
|
||||
} else {
|
||||
this.ismore = true;
|
||||
}
|
||||
},
|
||||
confirm() {
|
||||
this.$refs.countdown.clear()
|
||||
},
|
||||
/*关闭弹窗*/
|
||||
closePopup(e, cart_total_num) {
|
||||
this.isPopup = false;
|
||||
if (e && e.spec_attr) {
|
||||
this.alreadyChioce = '';
|
||||
let has = '已选:';
|
||||
let noone = '';
|
||||
e.spec_attr.forEach(item => {
|
||||
if (item.spec_items) {
|
||||
let h = '';
|
||||
for (let i = 0; i < item.spec_items.length; i++) {
|
||||
let child = item.spec_items[i];
|
||||
if (child.checked) {
|
||||
h = child.spec_value + ' / ';
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (h != '') {
|
||||
has += h;
|
||||
} else {
|
||||
noone += item.group_name;
|
||||
}
|
||||
}
|
||||
});
|
||||
if (noone != '') {
|
||||
this.alreadyChioce = noone;
|
||||
} else {
|
||||
has = has.replace(/(\s\/\s)$/gi, '');
|
||||
this.alreadyChioce = has;
|
||||
}
|
||||
}
|
||||
if (cart_total_num) {
|
||||
this.cart_total_num = cart_total_num;
|
||||
}
|
||||
},
|
||||
|
||||
/*打开客服*/
|
||||
openMaservice() {
|
||||
this.isMpservice = true;
|
||||
},
|
||||
|
||||
/*关闭客服*/
|
||||
closeMpservice() {
|
||||
this.isMpservice = false;
|
||||
},
|
||||
|
||||
/*跳转商品详情页面*/
|
||||
gotoProducntDetail() {
|
||||
this.$refs.countdown.clear();
|
||||
this.gotoPage('/pages/product/detail/detail?product_id=' + this.detail.product_id);
|
||||
},
|
||||
|
||||
/*打开关闭更多*/
|
||||
openMoreFunc(e) {
|
||||
this.ismore = e;
|
||||
},
|
||||
closeGuarantee() {
|
||||
this.isguarantee = false;
|
||||
},
|
||||
showGuarantee() {
|
||||
this.isguarantee = true;
|
||||
},
|
||||
/*去拼团*/
|
||||
gobillFunc(e) {
|
||||
this.$refs.countdown.clear();
|
||||
this.ismore = false;
|
||||
for (let i = 0; i < e.billUser.length; i++) {
|
||||
let user = e.billUser[i];
|
||||
if (this.user_id === user.user_id) {
|
||||
this.gotoPage('/pages/plus/assemble/fight-group-detail/fight-group-detail?assemble_bill_id=' + e.assemble_bill_id);
|
||||
return;
|
||||
}
|
||||
}
|
||||
this.assemble_bill_id = e.assemble_bill_id;
|
||||
this.openPopup();
|
||||
},
|
||||
|
||||
/*倒计时返回值*/
|
||||
returnValFunc(e) {},
|
||||
//跳转店铺首页
|
||||
goto_shop() {
|
||||
let self = this;
|
||||
self.gotoPage('/pages/shop/shop?shop_supplier_id=' + self.detail.supplier.shop_supplier_id);
|
||||
},
|
||||
},
|
||||
destroyed() {}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.product-detail {
|
||||
padding-bottom: 90rpx;
|
||||
}
|
||||
|
||||
.product-detail .product-pic,
|
||||
.product-detail .product-pic .swiper,
|
||||
.product-detail .product-pic image {
|
||||
width: 750rpx;
|
||||
height: 750rpx;
|
||||
}
|
||||
|
||||
.product-detail .price-wrap {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.product-detail .price-wrap .left {
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.product-detail .price-wrap .new-price {
|
||||
color: $dominant-color;
|
||||
font-size: 30rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.product-detail .price-wrap .new-price .num {
|
||||
padding: 0 4rpx;
|
||||
font-size: 40rpx;
|
||||
}
|
||||
|
||||
.product-detail .price-wrap .old-price {
|
||||
margin-left: 10rpx;
|
||||
font-size: 24rpx;
|
||||
color: #999999;
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.product-detail .already-sale {
|
||||
font-size: 26rpx;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.product-detail .product-name {
|
||||
padding-top: 26rpx;
|
||||
font-size: 32rpx;
|
||||
font-weight: bold;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.product-detail .product-describe {
|
||||
padding: 18rpx;
|
||||
line-height: 40rpx;
|
||||
font-size: 26rpx;
|
||||
color: #666666;
|
||||
background-color: #f2f2f2;
|
||||
border-radius: 12rpx;
|
||||
word-break: break-all;
|
||||
margin-top: 28rpx;
|
||||
}
|
||||
|
||||
.product-comment,
|
||||
.product-content {
|
||||
margin-top: 20rpx;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.product-content .content-box p image {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.product-content .content-box {
|
||||
font-size: 36rpx;
|
||||
}
|
||||
|
||||
.btns-wrap {
|
||||
position: fixed;
|
||||
height: 100rpx;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.btns-wrap .icon-box {
|
||||
width: 90rpx;
|
||||
height: 100rpx;
|
||||
}
|
||||
|
||||
.btns-wrap .icon-box .iconfont {
|
||||
font-size: 40rpx;
|
||||
color: #888888;
|
||||
}
|
||||
|
||||
.btns-wrap .customer-service button {
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.btns-wrap button,
|
||||
.btns-wrap button:after {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 30rpx;
|
||||
line-height: 30rpx;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
flex: 1;
|
||||
border-radius: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.btns-wrap .buy-alone button,
|
||||
.btns-wrap .make-group button {
|
||||
font-size: 26rpx;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.btns-wrap .buy-alone,
|
||||
.btns-wrap .buy-alone button {
|
||||
|
||||
width: 220rpx;
|
||||
height: 80rpx;
|
||||
border-top-left-radius: 40rpx;
|
||||
border-bottom-left-radius: 40rpx;
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
|
||||
.btns-wrap .buy-alone {
|
||||
background: linear-gradient(0deg, #ffa945 0%, #ff8439 100%);
|
||||
}
|
||||
|
||||
.btns-wrap .buy-alone text,
|
||||
.btns-wrap .make-group text {
|
||||
color: #ffffff;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
|
||||
.btns-wrap .make-group,
|
||||
.btns-wrap .make-group button {
|
||||
width: 220rpx;
|
||||
height: 80rpx;
|
||||
border-top-right-radius: 40rpx;
|
||||
border-bottom-right-radius: 40rpx;
|
||||
margin-right: 10rpx;
|
||||
}
|
||||
|
||||
.btns-wrap .make-group {
|
||||
background: linear-gradient(0deg, #ff4444 0%, #f6220d 100%);
|
||||
}
|
||||
|
||||
|
||||
.share-box {
|
||||
position: fixed;
|
||||
padding-right: 10rpx;
|
||||
width: 80rpx;
|
||||
height: 80rpx;
|
||||
right: 0;
|
||||
bottom: 180rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 12rpx 0 0 12rpx;
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
|
||||
.share-box button {
|
||||
padding: 0;
|
||||
background: 0;
|
||||
line-height: 60rpx;
|
||||
}
|
||||
|
||||
.share-box .iconfont {
|
||||
margin-bottom: 10rpx;
|
||||
font-size: 50rpx;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.create-img {
|
||||
width: 100%;
|
||||
padding: 20rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.create-img image {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.create-img button {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.product-detail .limited-spike {
|
||||
padding: 0 35rpx;
|
||||
height: 90rpx;
|
||||
color: #ffffff;
|
||||
border-radius: 12rpx 12rpx 0 0;
|
||||
background: linear-gradient(-90deg, #FF3C3C 0%, #FF6E35 98%);
|
||||
// background: linear-gradient(to bottom, #ff6c65, #e2231a);
|
||||
}
|
||||
|
||||
.product-detail .limited-spike .left-name {
|
||||
font-size: 32rpx;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.product-detail .limited-spike .right::v-deep text {
|
||||
color: #FFFFFF;
|
||||
font-size: 28rpx;
|
||||
|
||||
}
|
||||
|
||||
.product-detail .limited-spike .right::v-deep .box {
|
||||
height: 40rpx;
|
||||
padding: 4rpx;
|
||||
border-radius: 12rpx;
|
||||
line-height: 40rpx;
|
||||
text-align: center;
|
||||
background: #ffffff;
|
||||
color: #FF0001;
|
||||
font-size: 28rpx;
|
||||
padding: 6rpx 8rpx;
|
||||
}
|
||||
|
||||
.product-detail .limited-spike .right::v-deep>text {
|
||||
margin-left: 10rpx;
|
||||
|
||||
}
|
||||
|
||||
.already-choice {
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.already-choice .center-content {
|
||||
line-height: 90rpx;
|
||||
}
|
||||
|
||||
.shop_head_info {
|
||||
margin: 20rpx;
|
||||
padding: 30rpx;
|
||||
box-sizing: border-box;
|
||||
background-color: white;
|
||||
border-radius: 12rpx;
|
||||
}
|
||||
|
||||
.shop_list_body_item_shop {
|
||||
width: 100%;
|
||||
height: 120rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.shop_list_body_item_shop_logo {
|
||||
width: 120rpx;
|
||||
height: 120rpx;
|
||||
}
|
||||
|
||||
.shop_list_body_item_shop_logo image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
border-radius: 12rpx;
|
||||
}
|
||||
|
||||
.shop_list_body_item_shop_info {
|
||||
box-sizing: border-box;
|
||||
margin-left: 20rpx;
|
||||
padding-top: 0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.shop_list_body_item_shop_others {
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-direction: column;
|
||||
text-align: right;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.shop_list_body_item_shop_others button {
|
||||
width: 160rpx;
|
||||
height: 60rpx;
|
||||
border: 1rpx solid #F6220C;
|
||||
border-radius: 30rpx;
|
||||
line-height: 60rpx;
|
||||
font-size: 26rpx;
|
||||
font-family: PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #F6220C;
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.btnname {
|
||||
position: absolute;
|
||||
bottom: -14px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
font-size: 22rpx;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.bottom-radius {
|
||||
border-bottom-left-radius: 12rpx;
|
||||
border-bottom-right-radius: 12rpx;
|
||||
}
|
||||
|
||||
.pro_nameline {
|
||||
width: 4rpx;
|
||||
height: 24rpx;
|
||||
background-color: #f6220c;
|
||||
margin-right: 12rpx;
|
||||
}
|
||||
</style>
|
||||
88
pages/plus/assemble/detail/part/Bill.vue
Normal file
88
pages/plus/assemble/detail/part/Bill.vue
Normal file
@ -0,0 +1,88 @@
|
||||
<template>
|
||||
<view class="bg-white m20" v-if="bill.length > 0">
|
||||
<view class="group-hd p-0-20 d-a-c border-b">
|
||||
<view class="left"><text class="f30">这些人刚刚购买成功,可参与拼单</text></view>
|
||||
<view class="right" @click="openMore">
|
||||
<text>查看更多</text>
|
||||
<text class="iconfont icon-jiantou white"></text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="group-bd bill-user-list">
|
||||
<view class="item d-b-c p20" v-for="(item, index) in bill" :key="index">
|
||||
<view class="userinfo d-s-c">
|
||||
<view class="photo">
|
||||
<image :src="item.user.avatarUrl" mode="widthFix"></image>
|
||||
</view>
|
||||
<text class="ml10">{{ item.user.nickName }}</text>
|
||||
</view>
|
||||
<view class="btns d-s-c">
|
||||
<view class="d-s-c d-c">
|
||||
<text class="ml10">还差{{ item.dif_people }}人成团</text>
|
||||
<view class="gray9">
|
||||
<Countdown :config="rturnObjec(item)"></Countdown>
|
||||
</view>
|
||||
</view>
|
||||
<button type="primary" class="btn-red ml20" @click="goBill(item)">去拼单</button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Countdown from '@/components/countdown/countdown.vue';
|
||||
export default {
|
||||
components: {
|
||||
Countdown
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
};
|
||||
},
|
||||
props: ['bill'],
|
||||
created() {
|
||||
|
||||
},
|
||||
methods: {
|
||||
|
||||
/*转换参数*/
|
||||
rturnObjec(item) {
|
||||
return {
|
||||
type: 'text',
|
||||
startstamp: 0,
|
||||
endstamp: item.end_time
|
||||
};
|
||||
},
|
||||
|
||||
/*查看更多*/
|
||||
openMore() {
|
||||
this.$emit('openMore', true);
|
||||
},
|
||||
|
||||
/*去拼单*/
|
||||
goBill(e) {
|
||||
this.$emit('gobill', e);
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.bill-user-list {
|
||||
max-height: 240rpx;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.bill-user-list .photo {
|
||||
width: 80rpx;
|
||||
height: 80rpx;
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.bill-user-list .photo image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
91
pages/plus/assemble/detail/popup/MoreBill.vue
Normal file
91
pages/plus/assemble/detail/popup/MoreBill.vue
Normal file
@ -0,0 +1,91 @@
|
||||
<template>
|
||||
<Popup :show="isPopup" :width="width" :height="height" type="middle" :backgroundColor="backgroundColor" :boxShadow="boxShadow" :padding="0" @hidePopup="hidePopupFunc">
|
||||
<view class="more-bill-box">
|
||||
<view class="d-c-c p30 f30 border-b">
|
||||
正在拼团
|
||||
</view>
|
||||
<view class="list">
|
||||
<view class="item d-b-c p20 border-b" v-for="(item,index) in bill" :key="index" v-if="index<10">
|
||||
<view class="d-s-c">
|
||||
<view class="photo">
|
||||
<image :src="item.user.avatarUrl" mode="widthFix"></image>
|
||||
</view>
|
||||
<view class="d-s-c ml20 d-c lh150">
|
||||
<view class="d-s-c ww100">
|
||||
<text>{{ item.user.nickName }}</text>
|
||||
<text class="ml10">还差{{ item.dif_people }}人</text>
|
||||
</view>
|
||||
<view class="ww100 gray9">
|
||||
<Countdown :config="rturnObjec(item)"></Countdown>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="">
|
||||
<button class="btn-red" type="default" @click="goBill(item)">去拼单</button>
|
||||
</view>
|
||||
</view>
|
||||
<view class="d-c-c p30 gray9 f28" v-if="bill.length>10">
|
||||
仅显示10个拼单
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</Popup>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Popup from '@/components/uni-popup.vue';
|
||||
import Countdown from '@/components/countdown/countdown.vue';
|
||||
export default{
|
||||
components:{
|
||||
Popup,
|
||||
Countdown
|
||||
},
|
||||
data(){
|
||||
return{
|
||||
/*是否显示*/
|
||||
isPopup: false,
|
||||
/*展示类别*/
|
||||
type: 0,
|
||||
/*宽度*/
|
||||
width: 600,
|
||||
/*高度*/
|
||||
height: 1200,
|
||||
/*背景颜色*/
|
||||
backgroundColor: 'none',
|
||||
/*阴影*/
|
||||
boxShadow: 'none',
|
||||
}
|
||||
},
|
||||
props:['ismore','bill'],
|
||||
watch:{
|
||||
},
|
||||
created() {
|
||||
this.isPopup=this.ismore;
|
||||
},
|
||||
methods:{
|
||||
|
||||
/*转换参数*/
|
||||
rturnObjec(item){
|
||||
return {type:'text',startstamp:0,endstamp:item.end_time};
|
||||
},
|
||||
|
||||
/*关闭弹窗*/
|
||||
hidePopupFunc(){
|
||||
this.$emit('closeMore',false)
|
||||
},
|
||||
|
||||
/*去拼单*/
|
||||
goBill(e) {
|
||||
this.$emit('gobill', e);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.more-bill-box{ width: 100%; background: #FFFFFF;}
|
||||
.more-bill-box .list{ max-height: 660rpx; overflow-y: auto; box-shadow: 0 -10rpx 30rpx 0 inset rgba(255,255,255,.5);}
|
||||
.more-bill-box .photo{ width: 60rpx; height: 60rpx; border-radius: 50%; overflow: hidden;}
|
||||
.more-bill-box .photo image{ width: 100%; height: 100%;}
|
||||
</style>
|
||||
509
pages/plus/assemble/detail/popup/Spec.vue
Normal file
509
pages/plus/assemble/detail/popup/Spec.vue
Normal file
@ -0,0 +1,509 @@
|
||||
<template>
|
||||
<view :class="Visible ? 'product-popup open' : 'product-popup close'" @touchmove.stop.prevent="" @click="closePopup">
|
||||
<view class="popup-bg"></view>
|
||||
<view class="main" v-on:click.stop>
|
||||
<view class="header">
|
||||
<image :src="form.show_sku.sku_image" mode="aspectFit" class="avt"></image>
|
||||
<view class="price d-s-c">
|
||||
<template v-if="form.specData == null||isAll">
|
||||
<text>¥</text>
|
||||
<text class="num fb">{{ form.show_sku.assemble_price }}</text>
|
||||
<text class="old-price">¥{{ form.show_sku.line_price }}</text>
|
||||
</template>
|
||||
<template v-else>
|
||||
<text class="f22">¥</text>
|
||||
<text class="f40 fb">{{ form.detail.assemble_price }}</text>
|
||||
<!--<text class="fb">-</text>
|
||||
<text class="f40 fb">{{ form.detail.assemble_high_price }}</text>-->
|
||||
</template>
|
||||
</view>
|
||||
<view class="stock">库存:{{ form.show_sku.assemble_stock }}</view>
|
||||
<view class="p-20-0 select_spec">{{ selectSpec }}</view>
|
||||
<view class="close-btn" @click="closePopup"><text class="icon iconfont icon-guanbi"></text></view>
|
||||
</view>
|
||||
|
||||
<view class="body">
|
||||
<!--规格-->
|
||||
<view v-if="form.specData != null">
|
||||
<scroll-view scroll-y="true" class="specs mt20" style="max-height: 600rpx;" v-if="form.specData !=null">
|
||||
<view class="specs mt20" v-for="(item_attr,attr_index) in form.specData.spec_attr" :key="attr_index">
|
||||
<view class="specs-hd p-20-0">
|
||||
<text class="f24 gray9">{{item_attr.group_name}}</text>
|
||||
<text class="ml10 red" v-if="form.productSpecArr[attr_index]==null">
|
||||
请选择{{item_attr.group_name}}
|
||||
</text>
|
||||
</view>
|
||||
<view class="specs-list">
|
||||
<button :class="item.checked ? 'btn-checked' : 'btn-checke'" v-for="(item,item_index) in item_attr.spec_items"
|
||||
:key="item_index" @click="selectAttr(attr_index, item_index)">{{item.spec_value}}
|
||||
</button>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
<!--选择数量-->
|
||||
<view class="level-box count_choose">
|
||||
<text class="key">数量</text>
|
||||
<view class="d-s-c">
|
||||
<view class="icon-box minus d-c-c" @click="sub()" :class="{ 'num-wrap': !issub }"><text class="icon iconfont icon-jian"
|
||||
style="font-size: 20rpx;color: #333333;"></text></view>
|
||||
<view class="text-wrap"><input type="text" v-model="form.show_sku.sum" value="" /></view>
|
||||
<view class="icon-box plus d-c-c" :class="{ 'num-wrap': !isadd }" @click="add()"><text class="icon iconfont icon-jia"
|
||||
style="font-size: 20rpx;color: #333333;"></text></view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="btns white"><button class="confirm-btn" @click="confirmFunc(form)">确认</button></view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
judgeSelect
|
||||
} from '@/common/specSelect.js';
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
/*是否可见*/
|
||||
Visible: false,
|
||||
form: {
|
||||
detail: {
|
||||
product_sku: {},
|
||||
show_sku: {},
|
||||
show_point_sku: {
|
||||
assemble_price: 0
|
||||
}
|
||||
},
|
||||
show_sku: {
|
||||
sum: 1
|
||||
}
|
||||
},
|
||||
/*当前商品总库存*/
|
||||
stock: 0,
|
||||
/*选择提示*/
|
||||
selectSpec: '',
|
||||
/*规格是否选择完整*/
|
||||
isAll: false
|
||||
};
|
||||
},
|
||||
props: ['isPopup', 'productModel'],
|
||||
onLoad() {},
|
||||
mounted() {},
|
||||
computed: {
|
||||
/*判断增加数量*/
|
||||
isadd: function() {
|
||||
return this.form.show_sku.sum >= this.stock || this.form.show_sku.sum >= this.form.detail.limit_num;
|
||||
},
|
||||
|
||||
/*判断减少数量*/
|
||||
issub: function() {
|
||||
return this.form.show_sku.sum <= 1;
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
'isPopup': function(n, o) {
|
||||
if (n != o) {
|
||||
this.Visible = n;
|
||||
if (!this.isOpenSpec) {
|
||||
this.form = this.productModel;
|
||||
this.isOpenSpec = true;
|
||||
this.initShowSku();
|
||||
this.form.specData.spec_attr.forEach((item,index)=>{
|
||||
this.selectAttr(index,0);
|
||||
})
|
||||
}
|
||||
this.form.type = this.productModel.type;
|
||||
}
|
||||
},
|
||||
'form.specData': {
|
||||
handler(n, o) {
|
||||
let str = '',
|
||||
select = '';
|
||||
this.isAll = true;
|
||||
if (n) {
|
||||
for (let i = 0; i < n.spec_attr.length; i++) {
|
||||
if (this.form.productSpecArr[i] == null) {
|
||||
this.isAll = false;
|
||||
str += n.spec_attr[i].group_name + ' ';
|
||||
} else {
|
||||
n.spec_attr[i].spec_items.forEach(item => {
|
||||
if (this.form.productSpecArr[i] == item.item_id) {
|
||||
select += '\"' + item.spec_value + '\" ';
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
if (!this.isAll) {
|
||||
str = '请选择: ' + str;
|
||||
} else {
|
||||
select = '已选: ' + select;
|
||||
}
|
||||
}
|
||||
this.selectSpec = this.isAll ? select : str;
|
||||
},
|
||||
deep: true,
|
||||
immediate: true
|
||||
}
|
||||
|
||||
},
|
||||
methods: {
|
||||
/*关闭弹窗*/
|
||||
closePopup() {
|
||||
this.$emit('close', this.form.specData, null);
|
||||
},
|
||||
|
||||
/*确认提交*/
|
||||
confirmFunc() {
|
||||
if (this.form.specData != null && !this.isAll) {
|
||||
uni.showToast({
|
||||
title: '请选择规格',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
return;
|
||||
}
|
||||
this.$emit('confirm')
|
||||
this.createdOrder();
|
||||
},
|
||||
|
||||
/*初始化*/
|
||||
initShowSku() {
|
||||
this.form.show_sku.sku_image = this.form.detail.product.image[0].file_path;
|
||||
this.form.show_sku.assemble_price = this.form.detail.assemble_price;
|
||||
this.form.show_sku.product_sku_id = 0;
|
||||
this.form.show_sku.line_price = this.form.detail.line_price;
|
||||
this.form.show_sku.assemble_stock = this.form.detail.stock;
|
||||
this.form.show_sku.assemble_product_sku_id = 0;
|
||||
this.form.show_sku.sum = 1;
|
||||
this.stock = this.form.detail.stock;
|
||||
console.log(this.form.specData.spec_attr)
|
||||
},
|
||||
|
||||
/*选择属性*/
|
||||
selectAttr(attr_index, item_index) {
|
||||
let self = this;
|
||||
let items = self.form.specData.spec_attr[attr_index].spec_items;
|
||||
let curItem = items[item_index];
|
||||
if (curItem.checked) {
|
||||
curItem.checked = false;
|
||||
self.form.productSpecArr[attr_index] = null;
|
||||
} else {
|
||||
for (let i = 0; i < items.length; i++) {
|
||||
items[i].checked = false;
|
||||
}
|
||||
curItem.checked = true;
|
||||
self.form.productSpecArr[attr_index] = curItem.item_id;
|
||||
}
|
||||
|
||||
/*判断哪些规格可以选*/
|
||||
judgeSelect(self.form.specData.spec_attr, attr_index, self.form.productSpecArr, self.form.productSku);
|
||||
|
||||
let isall = true;
|
||||
for (let i = 0; i < self.form.productSpecArr.length; i++) {
|
||||
let item = self.form.productSpecArr[i];
|
||||
if (item == null) {
|
||||
isall = false;
|
||||
self.initShowSku();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (!isall) {
|
||||
self.initShowSku();
|
||||
return;
|
||||
}
|
||||
|
||||
// 更新商品规格信息
|
||||
self.updateSpecProduct();
|
||||
},
|
||||
|
||||
/*更新商品规格信息*/
|
||||
updateSpecProduct() {
|
||||
let self = this;
|
||||
|
||||
let specSkuId = self.form.productSpecArr.join('_');
|
||||
// 查找skuItem
|
||||
let spec_list = self.form.specData.spec_list,
|
||||
skuItem = spec_list.find(val => {
|
||||
return val.spec_sku_id == specSkuId;
|
||||
});
|
||||
// 记录product_sku_id
|
||||
// 更新商品价格、划线价、库存
|
||||
if (typeof skuItem === 'object') {
|
||||
let point_sku_list = self.form.detail.assembleSku,
|
||||
assembleSkuItem = point_sku_list.find(val => {
|
||||
return val.product_sku_id == skuItem.product_sku_id;
|
||||
});
|
||||
/*保存当前规格*/
|
||||
self.stock = assembleSkuItem.assemble_stock;
|
||||
if (self.form.show_sku.sum > self.stock) {
|
||||
self.form.show_sku.sum = self.stock > 0 ? self.stock : 1;
|
||||
}
|
||||
self.form.show_sku.product_sku_id = skuItem.spec_sku_id;
|
||||
self.form.show_sku.assemble_price = assembleSkuItem.assemble_price;
|
||||
self.form.show_sku.line_price = skuItem.spec_form.product_price;
|
||||
self.form.show_sku.assemble_stock = assembleSkuItem.assemble_stock;
|
||||
self.form.show_sku.assemble_product_sku_id = assembleSkuItem.assemble_product_sku_id;
|
||||
if (skuItem.spec_form.image_id > 0) {
|
||||
self.form.show_sku.sku_image = skuItem.spec_form.image_path;
|
||||
} else {
|
||||
self.form.show_sku.sku_image = self.form.detail.product.image[0].file_path;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
/*创建订单*/
|
||||
createdOrder() {
|
||||
let self = this;
|
||||
let assemble_product_id = self.form.detail.assemble_product_id;
|
||||
let num = self.form.show_sku.sum;
|
||||
let product_sku_id = self.form.show_sku.product_sku_id;
|
||||
let assemble_product_sku_id = self.form.show_sku.assemble_product_sku_id;
|
||||
|
||||
self.gotoPage('/pages/order/confirm-order?product_num=' +
|
||||
num +
|
||||
'&assemble_product_id=' +
|
||||
assemble_product_id +
|
||||
'&product_sku_id=' +
|
||||
product_sku_id +
|
||||
'&assemble_product_sku_id=' +
|
||||
assemble_product_sku_id +
|
||||
'&assemble_bill_id=' +
|
||||
self.form.show_sku.assemble_bill_id +
|
||||
'&order_type=assemble');
|
||||
},
|
||||
|
||||
/*商品增加*/
|
||||
add() {
|
||||
if (this.stock <= 0) {
|
||||
return;
|
||||
}
|
||||
if (this.form.show_sku.sum >= this.stock) {
|
||||
uni.showToast({
|
||||
title: '数量超过了库存',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
return false;
|
||||
}
|
||||
if (this.form.show_sku.sum >= this.form.detail.limit_num) {
|
||||
uni.showToast({
|
||||
title: '数量超过了限购数量',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
return false;
|
||||
}
|
||||
this.form.show_sku.sum++;
|
||||
},
|
||||
|
||||
/*商品减少*/
|
||||
sub() {
|
||||
if (this.stock <= 0) {
|
||||
return;
|
||||
}
|
||||
if (this.form.show_sku.sum < 2) {
|
||||
uni.showToast({
|
||||
title: '商品数量至少为1',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
return false;
|
||||
}
|
||||
this.form.show_sku.sum--;
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.product-popup {}
|
||||
|
||||
.product-popup .popup-bg {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background: rgba(0, 0, 0, .6);
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.product-popup .main {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
bottom: 0;
|
||||
min-height: 200rpx;
|
||||
// max-height: 1050rpx;
|
||||
background-color: #fff;
|
||||
transform: translate3d(0, 980rpx, 0);
|
||||
transition: transform .2s cubic-bezier(0, 0, .25, 1);
|
||||
// bottom: env(safe-area-inset-bottom);
|
||||
z-index: 99;
|
||||
border-radius: 12rpx;
|
||||
}
|
||||
|
||||
.product-popup.open .main {
|
||||
transform: translate3d(0, 0, 0);
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.product-popup.close .popup-bg {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.product-popup.close .main {
|
||||
display: none;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
|
||||
.product-popup .header {
|
||||
min-height: 120rpx;
|
||||
padding: 40rpx 0 40rpx 250rpx;
|
||||
position: relative;
|
||||
border-bottom: 1px solid #eeeeee;
|
||||
}
|
||||
|
||||
.product-popup .header .avt {
|
||||
position: absolute;
|
||||
top: 40rpx;
|
||||
left: 30rpx;
|
||||
width: 200rpx;
|
||||
height: 200rpx;
|
||||
border: 2px solid #ffffff;
|
||||
background: #ffffff;
|
||||
border-radius: 12rpx;
|
||||
}
|
||||
|
||||
.product-popup .header .stock {
|
||||
font-size: 26rpx;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.product-popup .close-btn {
|
||||
position: absolute;
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
top: 40rpx;
|
||||
right: 30rpx;
|
||||
}
|
||||
|
||||
.product-popup .price {
|
||||
height: 80rpx;
|
||||
color: $dominant-color;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.product-popup .price .num {
|
||||
padding: 0 4rpx;
|
||||
font-size: 50rpx;
|
||||
}
|
||||
|
||||
.product-popup .old-price {
|
||||
margin-left: 10rpx;
|
||||
font-size: 30rpx;
|
||||
color: #999999;
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.product-popup .body {
|
||||
padding: 20rpx 30rpx 39rpx 30rpx;
|
||||
// max-height: 600rpx;
|
||||
overflow-y: auto;
|
||||
padding-bottom: 88rpx;
|
||||
}
|
||||
|
||||
.product-popup .level-box {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.product-popup .level-box .key {
|
||||
font-size: 24rpx;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.product-popup .level-box .icon-box {
|
||||
width: 48rpx;
|
||||
height: 40rpx;
|
||||
background: #e0e0e0;
|
||||
}
|
||||
|
||||
.product-popup .num-wrap .iconfont {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.product-popup .num-wrap.no-stock .iconfont {
|
||||
color: #cccccc;
|
||||
}
|
||||
|
||||
.product-popup .level-box .text-wrap {
|
||||
margin: 0 4rpx;
|
||||
height: 60rpx;
|
||||
border: none;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.product-popup .level-box .text-wrap input {
|
||||
padding: 0 10rpx;
|
||||
height: 60rpx;
|
||||
line-height: 60rpx;
|
||||
width: 80rpx;
|
||||
font-size: 32rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.specs .specs-list {
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.specs .specs-list button {
|
||||
margin-right: 10rpx;
|
||||
margin-bottom: 10rpx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
.specs .specs-list button:after,
|
||||
.product-popup .btns button,
|
||||
.product-popup .btns button:after {
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
margin-bottom: 55rpx;
|
||||
}
|
||||
|
||||
.product-popup .btns .confirm-btn {
|
||||
width: 710rpx;
|
||||
height: 80rpx;
|
||||
background: linear-gradient(90deg, #FF6B6B 4%, #F6220C 100%);
|
||||
border-radius: 40rpx;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 55rpx;
|
||||
background-color: #FFFFFF;
|
||||
color: #FFFFFF;
|
||||
line-height: 80rpx;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
|
||||
.btn-checked {
|
||||
border: 1px solid #F6220C;
|
||||
border-radius: 6px;
|
||||
color: #F6220C;
|
||||
font-size: 26rpx;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
.btn-checke {
|
||||
border: 1rpx solid #D9D9D9;
|
||||
border-radius: 6rpx;
|
||||
font-size: 26rpx;
|
||||
color: #333333;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
</style>
|
||||
229
pages/plus/assemble/fight-group-detail/fight-group-detail.vue
Normal file
229
pages/plus/assemble/fight-group-detail/fight-group-detail.vue
Normal file
@ -0,0 +1,229 @@
|
||||
<template>
|
||||
<view class="fight-group-detail" v-if="!loadding">
|
||||
<!--产品-->
|
||||
<view class="product-info p30 d-s-c bg-white">
|
||||
<view class="product-cover">
|
||||
<image :src="productData.product.image[0].file_path" mode="aspectFit"></image>
|
||||
</view>
|
||||
<view class="info flex-1 ml30 f30">
|
||||
<text>{{productData.product.product_name}}</text>
|
||||
<view class="mt20">
|
||||
<text>{{productData.assemble_num}}人团:</text>
|
||||
<text class="ml30 red">¥</text>
|
||||
<text class="fb red f34">{{productData.assembleSku[0].assemble_price}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!--拼团人-->
|
||||
<view class="fight-users mt20 bg-white">
|
||||
<!--成员列表-->
|
||||
<view class="user-list d-c-c">
|
||||
<view class="user-box pr" v-for="(item,index) in billData.billUser" :key="index">
|
||||
<text class="leader" v-if="index==0">团长</text>
|
||||
<image :src="item.user.avatarUrl" mode="aspectFit"></image>
|
||||
</view>
|
||||
<view class="user-box user-who d-c-c">
|
||||
?
|
||||
</view>
|
||||
</view>
|
||||
<view class="d-c-c mt30 gray3">
|
||||
还差<text class="fb">{{dif_people}}</text>人成团
|
||||
</view>
|
||||
<view class="mt20 d-c-c gray6 f34">
|
||||
<Countdown :config="countdownConfig" @returnVal="returnValFunc"></Countdown>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="leader-info d-b-c p30">
|
||||
<view class="photo d-s-c">
|
||||
<image :src="billData.user.avatarUrl" mode="aspectFit"></image>
|
||||
<text class="ml20">{{billData.user.nickName}}</text>
|
||||
</view>
|
||||
<view class="gray9">
|
||||
<text>{{billData.create_time}}</text>
|
||||
<text class="ml10">开团</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!--底部按钮-->
|
||||
<view class="fight-group-btns">
|
||||
<button v-if="!reallyAssemble" type="default" class="btn-red" @click="gotoAssemble(billData)">去拼团</button>
|
||||
<button v-else type="default" class="btn-red" open-type="share" @click="shareFunc">分享拼团</button>
|
||||
</view>
|
||||
|
||||
<!--分享-->
|
||||
<share :isMpShare="isMpShare" :product_id="product_id" @close="closeShare"></share>
|
||||
<!--app分享-->
|
||||
<AppShare :isAppShare="isAppShare" :appParams="appParams" @close="closeAppShare"></AppShare>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Countdown from '@/components/countdown/countdown.vue';
|
||||
import share from '@/components/mp-share.vue';
|
||||
import AppShare from '@/components/app-share.vue';
|
||||
export default {
|
||||
components:{
|
||||
Countdown,
|
||||
share,
|
||||
AppShare
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
/*是否正在加载*/
|
||||
loadding:true,
|
||||
/*拼团组ID*/
|
||||
assemble_bill_id:null,
|
||||
/*拼团组对象*/
|
||||
billData:{},
|
||||
/*商品对象*/
|
||||
productData:{},
|
||||
/*倒计时配置*/
|
||||
countdownConfig: {
|
||||
type:'text',
|
||||
/*开始时间*/
|
||||
startstamp: 0,
|
||||
/*结束时间*/
|
||||
endstamp: 0
|
||||
},
|
||||
/*是否分享*/
|
||||
isMpShare:false,
|
||||
/*还差几人*/
|
||||
dif_people: 0,
|
||||
/*是否已经参团*/
|
||||
reallyAssemble:false,
|
||||
/*app分享*/
|
||||
isAppShare: false,
|
||||
appParams: {
|
||||
title: '',
|
||||
summary: '',
|
||||
path: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
onLoad(e) {
|
||||
this.assemble_bill_id = e.assemble_bill_id;
|
||||
//#ifdef H5
|
||||
if (this.isWeixin()) {
|
||||
this.url = window.location.href;
|
||||
}
|
||||
//#endif
|
||||
},
|
||||
mounted() {
|
||||
/*获取产品详情*/
|
||||
this.getData();
|
||||
},
|
||||
methods: {
|
||||
|
||||
/*获取数据*/
|
||||
getData() {
|
||||
let self = this;
|
||||
uni.showLoading({
|
||||
title: '加载中'
|
||||
});
|
||||
self._get(
|
||||
'plus.assemble.bill/detail',
|
||||
{
|
||||
assemble_bill_id: self.assemble_bill_id,
|
||||
url: self.url
|
||||
},
|
||||
function(res) {
|
||||
self.billData=res.data.bill;
|
||||
self.productData=res.data.product
|
||||
self.countdownConfig.startstamp=0;
|
||||
self.countdownConfig.endstamp=self.billData.end_time;
|
||||
self.dif_people = self.productData.assemble_num-self.billData.billUser.length<0?0:self.productData.assemble_num-self.billData.billUser.length
|
||||
// 配置微信分享参数
|
||||
//#ifdef H5
|
||||
if (self.url != '') {
|
||||
let params = {
|
||||
assemble_bill_id: self.assemble_bill_id
|
||||
};
|
||||
self.configWx(res.data.share.signPackage, res.data.share.shareParams, params);
|
||||
}
|
||||
//#endif
|
||||
console.log(self.billData.billUser);
|
||||
self.reallyAssemble=self.hasAssemble(self.billData.billUser);
|
||||
|
||||
self.loadding = false;
|
||||
uni.hideLoading();
|
||||
}
|
||||
);
|
||||
},
|
||||
|
||||
/*查看是否已经拼团*/
|
||||
hasAssemble(list){
|
||||
let flag=false;
|
||||
let user_id = this.getUserId();
|
||||
for(let i=0;i<list.length;i++){
|
||||
if(user_id==list[i].user_id){
|
||||
flag=true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return flag;
|
||||
},
|
||||
|
||||
/*分享*/
|
||||
shareFunc(){
|
||||
let self = this;
|
||||
//#ifndef APP-PLUS
|
||||
self.isMpShare = true;
|
||||
//#endif
|
||||
//#ifdef APP-PLUS
|
||||
self.appParams.title = '【仅限' + self.dif_people + '个名额】,快来参与拼团吧';
|
||||
self.appParams.summary = self.productData.product.product_name;
|
||||
// 构建页面参数
|
||||
let params = self.getShareUrlParams({
|
||||
assemble_bill_id: self.assemble_bill_id
|
||||
});
|
||||
self.appParams.path = '/pages/plus/assemble/fight-group-detail/fight-group-detail?' + params;
|
||||
self.appParams.image = self.productData.product.image[0].file_path;
|
||||
self.isAppShare = true;
|
||||
//#endif
|
||||
},
|
||||
/*关闭分享*/
|
||||
closeShare(){
|
||||
this.isMpShare=false;
|
||||
},
|
||||
//关闭分享
|
||||
closeAppShare(data) {
|
||||
this.isAppShare = false;
|
||||
},
|
||||
/*返回状态*/
|
||||
returnValFunc(){},
|
||||
/*小程序分享*/
|
||||
onShareAppMessage() {
|
||||
let self = this;
|
||||
// 构建页面参数
|
||||
let params = self.getShareUrlParams({
|
||||
assemble_bill_id: self.assemble_bill_id
|
||||
});
|
||||
return {
|
||||
title: '【仅限'+self.dif_people+'个名额】,快来参与拼团吧',
|
||||
path: '/pages/plus/assemble/fight-group-detail/fight-group-detail?' + params
|
||||
};
|
||||
},
|
||||
|
||||
/*去拼团*/
|
||||
gotoAssemble(e){
|
||||
let url='pages/plus/assemble/detail/detail?assemble_product_id=' + e.assemble_product_id+'&assemble_bill_id='+e.assemble_bill_id
|
||||
this.gotoPage(url);
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.fight-group-detail{ padding-bottom: 100rpx;}
|
||||
.fight-group-detail .product-cover image{ width: 200rpx; height: 200rpx;}
|
||||
.fight-group-detail .fight-users .user-box{ width: 80rpx; height: 80rpx; margin: 10rpx; border-radius: 50%; border: 1px dashed #CCCCCC;}
|
||||
.fight-group-detail .fight-users{ padding: 30rpx;}
|
||||
.fight-group-detail .fight-users .user-box image{width: 80rpx; height: 80rpx;border-radius: 50%;}
|
||||
.fight-group-detail .fight-users .user-box .leader{ position: absolute; top: -20rpx; left: 50%; margin-left: -30rpx; width: 60rpx; height: 30rpx; line-height: 30rpx; text-align: center; color: #FFFFFF; border-radius: 30rpx; border: 1px solid #FFFFFF; background: red;}
|
||||
.fight-group-detail .fight-users .user-box.user-who{ font-size: 50rpx; color: #999999;}
|
||||
.fight-group-detail .leader-info .photo image{ width: 60rpx; height: 60rpx; border-radius: 50%; }
|
||||
.fight-group-btns{ position: fixed; right: 0; bottom: 0; left: 0; padding: 0 30rpx; box-sizing: border-box;}
|
||||
.fight-group-btns button.btn-red{ margin-bottom: 20rpx; height: 80rpx; line-height: 80rpx; border-radius: 40rpx;}
|
||||
</style>
|
||||
372
pages/plus/assemble/list/list.vue
Normal file
372
pages/plus/assemble/list/list.vue
Normal file
@ -0,0 +1,372 @@
|
||||
<template>
|
||||
<view class="assemble-container">
|
||||
<view class="top-box">
|
||||
<view class="inner-tab" v-if="categorys.length>0">
|
||||
<scroll-view scroll-X="true" show-scrollbar="false" class="scroll-X">
|
||||
<view class="tab-list">
|
||||
<view :class="assemble_activity_id == item.assemble_activity_id ? 'item active' : 'item'" v-for="(item, index) in categorys"
|
||||
:key="index" @click="tabTypeFunc(index, item.assemble_activity_id)">
|
||||
{{ item.title }}
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
<!--图片-->
|
||||
<view class="banner-image d-c-c" v-if="listData.detail&&categorys.length>0">
|
||||
<image :src="listData.detail.file_path"></image>
|
||||
</view>
|
||||
<!--活动时间-->
|
||||
<view class="ad-datetime p-30-0 d-c-c pb0" v-if="listData.detail&&categorys.length>0">
|
||||
<Countdown ref='countdown' :config="countdownConfig" @ @returnVal="returnValFunc"></Countdown>
|
||||
</view>
|
||||
<view v-else class="p30 pt200 d-c-c d-c gray6 f26">
|
||||
<image style="width: 532rpx;margin-bottom: 80rpx;" src="/static/active-null.png" mode="widthFix"></image>
|
||||
<view class="tc gray9">暂无活动~~</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!--内容-->
|
||||
<view class="assemble-list" v-if="!loading">
|
||||
<scroll-view scroll-y="true" class="scroll-Y" :style="'height:' + scrollviewHigh + 'px;'" lower-threshold="50">
|
||||
|
||||
<!--列表-->
|
||||
<view class="list d-s-c f-w">
|
||||
<view class="item d-s-s d-stretch" v-for="(item, index) in listData.list" :key="index">
|
||||
<view class="product-cover pr">
|
||||
<image :src="item.product.file_path" mode="aspectFit"></image>
|
||||
</view>
|
||||
<view class="product-info d-b-c d-c">
|
||||
<view class="product-title text-ellipsis-2">{{ item.product.product_name }}</view>
|
||||
<view class="people-num price">
|
||||
<text class="f24">¥</text>
|
||||
<text class="f36 fb">{{ item.assemble_price }}</text>
|
||||
<text class="ml10 text-d-line gray9 f24">¥{{ item.product_price }}</text>
|
||||
</view>
|
||||
<view class="d-b-c ww100">
|
||||
<view class="f22">
|
||||
<text class="redF6">{{ item.assemble_num }}人团</text>
|
||||
<text class="ml10 gray9 <f22></f22>">已拼{{ item.product_sales }}件</text>
|
||||
</view>
|
||||
<view class="right-btn"><button type="primary" @click="gotoDetail(item)">去开团</button></view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Countdown from '@/components/countdown/countdown.vue'
|
||||
export default {
|
||||
components: {
|
||||
Countdown
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
/*手机高度*/
|
||||
phoneHeight: 0,
|
||||
/*可滚动视图区域高度*/
|
||||
scrollviewHigh: 0,
|
||||
/*活动类别*/
|
||||
categorys: [],
|
||||
/*当前活动Is*/
|
||||
assemble_activity_id: 0,
|
||||
/*商品列表*/
|
||||
listData: {
|
||||
list:[],
|
||||
detail:null
|
||||
},
|
||||
/*倒计时配置*/
|
||||
countdownConfig: {
|
||||
/*开始时间*/
|
||||
startstamp: 0,
|
||||
/*结束时间*/
|
||||
endstamp: 0
|
||||
},
|
||||
/*是否正在加载*/
|
||||
loading: true
|
||||
};
|
||||
},
|
||||
computed: {},
|
||||
onLoad(e) {},
|
||||
onShow() {
|
||||
/*获取产品列表*/
|
||||
this.getCategory();
|
||||
},
|
||||
mounted() {
|
||||
},
|
||||
onReachBottom() {},
|
||||
methods: {
|
||||
/*初始化*/
|
||||
init() {
|
||||
let _this = this;
|
||||
uni.getSystemInfo({
|
||||
success(res) {
|
||||
_this.phoneHeight = res.windowHeight;
|
||||
// 计算组件的高度
|
||||
let view = uni.createSelectorQuery().select('.top-box');
|
||||
view.boundingClientRect(data => {
|
||||
let h = _this.phoneHeight - data.height;
|
||||
_this.scrollviewHigh = h;
|
||||
}).exec();
|
||||
uni.hideLoading();
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
/*类别切换*/
|
||||
tabTypeFunc(e, n) {
|
||||
this.type_active = e;
|
||||
this.assemble_activity_id = n;
|
||||
this.productList = [];
|
||||
this.getProdct();
|
||||
},
|
||||
|
||||
/*获取数据*/
|
||||
getCategory() {
|
||||
let self = this;
|
||||
let param = {};
|
||||
let index = self.type_active;
|
||||
self._get('plus.assemble.product/active', {
|
||||
param
|
||||
}, function(res) {
|
||||
self.categorys = res.data.list;
|
||||
if(self.categorys.length > 0){
|
||||
self.assemble_activity_id = self.categorys[0].assemble_activity_id;
|
||||
}
|
||||
self.getProdct();
|
||||
});
|
||||
},
|
||||
|
||||
/*获取商品*/
|
||||
getProdct() {
|
||||
let self = this;
|
||||
uni.showLoading({
|
||||
title: '加载中'
|
||||
});
|
||||
let assemble_activity_id = self.assemble_activity_id;
|
||||
self.loading = true;
|
||||
self._get(
|
||||
'plus.assemble.product/product', {
|
||||
assemble_activity_id: assemble_activity_id
|
||||
},
|
||||
function(res) {
|
||||
self.listData = res.data;
|
||||
self.countdownConfig.endstamp = res.data.detail.end_time;
|
||||
self.countdownConfig.startstamp = res.data.detail.start_time;
|
||||
self.loading = false;
|
||||
self.$nextTick(()=>{
|
||||
self.init()
|
||||
})
|
||||
}
|
||||
);
|
||||
},
|
||||
|
||||
/*跳转产品列表*/
|
||||
gotoDetail(e) {
|
||||
console.log(e);
|
||||
this.$refs.countdown.clear();
|
||||
let url = 'pages/plus/assemble/detail/detail?assemble_product_id=' + e.assemble_product_id
|
||||
this.gotoPage(url);
|
||||
},
|
||||
|
||||
/*跳转搜索页面*/
|
||||
gotoSearch() {
|
||||
this.page = 1;
|
||||
this.getData();
|
||||
},
|
||||
|
||||
/*倒计时返回值*/
|
||||
returnValFunc(e) {
|
||||
console.log(e);
|
||||
},
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
page {
|
||||
background: #F2F2F2;
|
||||
}
|
||||
|
||||
.assemble-container .inner-tab {
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.assemble-container .inner-tab .tab-list {
|
||||
height: 100rpx;
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
background: #FFFFFF;
|
||||
}
|
||||
|
||||
.assemble-container .inner-tab .item {
|
||||
height: 100rpx;
|
||||
line-height: 100rpx;
|
||||
white-space: nowrap;
|
||||
padding: 0 30rpx;
|
||||
font-size: 30rpx;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.assemble-container .inner-tab .item.active,
|
||||
.assemble-container .inner-tab .item .arrow.active .iconfont {
|
||||
background: #FFFFFF;
|
||||
font-size: 32rpx;
|
||||
color: #F6220C;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.assemble-container .inner-tab .item.active::after {
|
||||
content: '';
|
||||
width: 60%;
|
||||
height: 4rpx;
|
||||
background: #F6220C;
|
||||
border-radius: 2rpx;
|
||||
position: absolute;
|
||||
bottom: 17rpx;
|
||||
left: 0;
|
||||
right: 0;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.assemble-container .inner-tab .box {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.assemble-container .inner-tab .arrows {
|
||||
margin-left: 10rpx;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.assemble-container .inner-tab .iconfont {
|
||||
line-height: 24rpx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
.assemble-container .inner-tab .arrow,
|
||||
.assemble-container .inner-tab .svg-icon {
|
||||
width: 20rpx;
|
||||
height: 20rpx;
|
||||
}
|
||||
|
||||
.assemble-container .banner-image {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.assemble-container .banner-image image {
|
||||
width: 750rpx;
|
||||
height: 365rpx;
|
||||
}
|
||||
|
||||
.assemble-container .ad-datetime::v-deep text {
|
||||
color: #333333;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.assemble-container .ad-datetime::v-deep .box {
|
||||
padding: 4rpx;
|
||||
border-radius: 4rpx;
|
||||
background: #F6220C;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.assemble-list .list {
|
||||
padding: 20rpx;
|
||||
}
|
||||
|
||||
.assemble-list .list .item {
|
||||
width: 100%;
|
||||
padding: 30rpx;
|
||||
margin-bottom: 20rpx;
|
||||
box-sizing: border-box;
|
||||
border-radius: 16rpx;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.assemble-list .product-cover {
|
||||
padding: 4rpx;
|
||||
}
|
||||
|
||||
.assemble-list .product-cover image {
|
||||
width: 200rpx;
|
||||
height: 200rpx;
|
||||
border-radius: 12rpx;
|
||||
}
|
||||
|
||||
.assemble-list .product-info {
|
||||
flex: 1;
|
||||
padding-left: 20rpx;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.assemble-list .product-cover .people-num {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
height: 50rpx;
|
||||
padding: 0 20rpx;
|
||||
line-height: 50rpx;
|
||||
font-size: 24rpx;
|
||||
box-sizing: border-box;
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
}
|
||||
|
||||
.assemble-list .product-title {
|
||||
width: 100%;
|
||||
height: 40rpx;
|
||||
line-height: 40rpx;
|
||||
font-size: 32rpx;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.assemble-list .people-num {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.assemble-list .already-sale {
|
||||
padding: 4rpx 0;
|
||||
color: #999;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
.assemble-list .price {
|
||||
width: 100%;
|
||||
color: $dominant-color;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
.assemble-list .price .num {
|
||||
padding: 0 4rpx;
|
||||
}
|
||||
|
||||
.assemble-list .slider-box .slider {
|
||||
margin-top: 10rpx;
|
||||
height: 10rpx;
|
||||
background: #cccccc;
|
||||
border-radius: 5rpx;
|
||||
}
|
||||
|
||||
.assemble-list .slider-box .slider-inner {
|
||||
height: 10rpx;
|
||||
background: #e2231a;
|
||||
border-radius: 5rpx;
|
||||
}
|
||||
|
||||
.assemble-list .right-btn button {
|
||||
height: 60rpx;
|
||||
line-height: 60rpx;
|
||||
border-radius: 30rpx;
|
||||
background: linear-gradient(90deg, #FF6B6B 4%, #F6220C 100%);
|
||||
color: #ffffff;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user