1
This commit is contained in:
parent
f691bf6749
commit
83c04d43b5
@ -334,7 +334,8 @@
|
|||||||
<view style="display: flex;font-weight: bold;font-size: 32rpx;"><u-icon style="margin-right: 20rpx;"
|
<view style="display: flex;font-weight: bold;font-size: 32rpx;"><u-icon style="margin-right: 20rpx;"
|
||||||
name="arrow-left" size="20" color="#fff" @click="navBack"></u-icon>供销综合云市场</view>
|
name="arrow-left" size="20" color="#fff" @click="navBack"></u-icon>供销综合云市场</view>
|
||||||
<view style="display: flex;position: relative;" @click="changeMap">
|
<view style="display: flex;position: relative;" @click="changeMap">
|
||||||
<view style="width: 250rpx;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;text-align: right;">
|
<view
|
||||||
|
style="width: 250rpx;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;text-align: right;">
|
||||||
{{street}}
|
{{street}}
|
||||||
</view>
|
</view>
|
||||||
<u-icon name="arrow-down" size="14" color="#fff"></u-icon>
|
<u-icon name="arrow-down" size="14" color="#fff"></u-icon>
|
||||||
@ -355,7 +356,8 @@
|
|||||||
<view class="wholeSale-nav">
|
<view class="wholeSale-nav">
|
||||||
<!-- <u-icon class="icon" name="arrow-left" size="20" @click="navBack"></u-icon> -->
|
<!-- <u-icon class="icon" name="arrow-left" size="20" @click="navBack"></u-icon> -->
|
||||||
<!-- 搜索 -->
|
<!-- 搜索 -->
|
||||||
<view @click="navTo(`/pages/columnGoods/goods_search/index?back=true&searchVal=${where.keyword}&shop=true`)"
|
<view
|
||||||
|
@click="navTo(`/pages/columnGoods/goods_search/index?back=true&searchVal=${where.keyword}&shop=true`)"
|
||||||
hover-class="none" class="search_content flex_a_c_j_sb">
|
hover-class="none" class="search_content flex_a_c_j_sb">
|
||||||
<view class="flex_a_c search_content_wrap">
|
<view class="flex_a_c search_content_wrap">
|
||||||
<view class="iconfont icon-sousuo" style="font-size: 39rpx;"></view>
|
<view class="iconfont icon-sousuo" style="font-size: 39rpx;"></view>
|
||||||
@ -373,8 +375,8 @@
|
|||||||
<block v-for="(item,index) in store_category" :key="index">
|
<block v-for="(item,index) in store_category" :key="index">
|
||||||
<view class="category-item" :class="{'category-item-active': index==cate_change}"
|
<view class="category-item" :class="{'category-item-active': index==cate_change}"
|
||||||
@click="changeCate(index)">
|
@click="changeCate(index)">
|
||||||
<u--image class="category-item-img" width="108rpx" :src="item.background" height="108rpx"
|
<u--image class="category-item-img" width="108rpx" :src="item.background"
|
||||||
shape="circle">
|
height="108rpx" shape="circle">
|
||||||
<template v-slot:loading>
|
<template v-slot:loading>
|
||||||
<u-loading-icon color="#999" size="15" />
|
<u-loading-icon color="#999" size="15" />
|
||||||
</template>
|
</template>
|
||||||
@ -412,9 +414,11 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<text style="margin-left: 20rpx;color: #FF6D20;font-size: 22.78rpx; ">{{item.service_score}}</text>
|
<text
|
||||||
|
style="margin-left: 20rpx;color: #FF6D20;font-size: 22.78rpx; ">{{item.service_score}}</text>
|
||||||
<text v-if="item.distance"
|
<text v-if="item.distance"
|
||||||
style="margin-left: 20rpx;font-size: 21.03rpx;color: #aaa;">{{item.distance}}</text>
|
style="margin-left: 20rpx;font-size: 21.03rpx;color: #aaa;">{{item.distance}}</text>
|
||||||
|
<text style="margin-left:20rpx;">{{item.category_name}}</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="content-two">
|
<view class="content-two">
|
||||||
<u--image :showLoading="true" src="/static/images/GXSC/DH.png" width="33.85rpx"
|
<u--image :showLoading="true" src="/static/images/GXSC/DH.png" width="33.85rpx"
|
||||||
@ -457,7 +461,9 @@
|
|||||||
import {
|
import {
|
||||||
HTTP_REQUEST_URL
|
HTTP_REQUEST_URL
|
||||||
} from '@/config/app';
|
} from '@/config/app';
|
||||||
import { Toast } from '../../../libs/uniApi';
|
import {
|
||||||
|
Toast
|
||||||
|
} from '../../../libs/uniApi';
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
WaterfallsFlow
|
WaterfallsFlow
|
||||||
@ -498,7 +504,8 @@
|
|||||||
if (!getAddress && !closeShow) this.isShowAddress = true;
|
if (!getAddress && !closeShow) this.isShowAddress = true;
|
||||||
this.street = this.$store.state.storage.address.townName;
|
this.street = this.$store.state.storage.address.townName;
|
||||||
if (this.$store.state.storage.location.lat) {
|
if (this.$store.state.storage.location.lat) {
|
||||||
this.where.location = `${this.$store.state.storage.location.lat},${this.$store.state.storage.location.long}`;
|
this.where.location =
|
||||||
|
`${this.$store.state.storage.location.lat},${this.$store.state.storage.location.long}`;
|
||||||
} else if (getAddress) {
|
} else if (getAddress) {
|
||||||
this.street = '';
|
this.street = '';
|
||||||
this.getLocation();
|
this.getLocation();
|
||||||
|
@ -89,7 +89,8 @@
|
|||||||
<view v-if="recommend_switch == 1" class="index-product-wrapper">
|
<view v-if="recommend_switch == 1" class="index-product-wrapper">
|
||||||
<!-- 首发新品 -->
|
<!-- 首发新品 -->
|
||||||
<recommend ref="recommendRef" :hostProduct="hostProduct[hostIndex]"
|
<recommend ref="recommendRef" :hostProduct="hostProduct[hostIndex]"
|
||||||
@changeRecommedTab="changeRecommedTab" showTab :indexP="true" :isLogin="isLogin" :loading="loading">
|
@changeRecommedTab="changeRecommedTab" showTab :indexP="true" :isLogin="isLogin"
|
||||||
|
:loading="loading">
|
||||||
</recommend>
|
</recommend>
|
||||||
<view class="loadingicon acea-row row-center-wrapper"
|
<view class="loadingicon acea-row row-center-wrapper"
|
||||||
v-if="hostProduct[hostIndex].length > 0 || hotLoading[hostIndex]">
|
v-if="hostProduct[hostIndex].length > 0 || hotLoading[hostIndex]">
|
||||||
@ -523,6 +524,35 @@
|
|||||||
isSupport: true
|
isSupport: true
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onTabItemTap(e) {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
// 滚动监听
|
||||||
|
onPageScroll(e) {
|
||||||
|
|
||||||
|
this.isFixed = e.scrollTop > 40;
|
||||||
|
|
||||||
|
// uni.setTabBarItem({
|
||||||
|
// index: 0,
|
||||||
|
// text: "123",
|
||||||
|
// selectedIconPath: "/static/tabbar_icon/b-a.png"
|
||||||
|
// })
|
||||||
|
|
||||||
|
// this.$forceUpdate();
|
||||||
|
|
||||||
|
if (this.isHeaderSerch) {
|
||||||
|
let isScroll = false
|
||||||
|
isScroll = e.scrollTop > 50
|
||||||
|
this.isScrolled = isScroll;
|
||||||
|
} else {
|
||||||
|
this.isScrolled = false
|
||||||
|
}
|
||||||
|
// 传入scrollTop值并触发所有easy-loadimage组件下的滚动监听事件
|
||||||
|
uni.$emit('scroll');
|
||||||
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户点击右上角分享
|
* 用户点击右上角分享
|
||||||
*/
|
*/
|
||||||
@ -1210,20 +1240,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 滚动监听
|
|
||||||
onPageScroll(e) {
|
|
||||||
this.isFixed = e.scrollTop > 40;
|
|
||||||
|
|
||||||
if (this.isHeaderSerch) {
|
|
||||||
let isScroll = false
|
|
||||||
isScroll = e.scrollTop > 50
|
|
||||||
this.isScrolled = isScroll;
|
|
||||||
} else {
|
|
||||||
this.isScrolled = false
|
|
||||||
}
|
|
||||||
// 传入scrollTop值并触发所有easy-loadimage组件下的滚动监听事件
|
|
||||||
uni.$emit('scroll');
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
|
@ -28,7 +28,8 @@
|
|||||||
<view class='nav acea-row row-between-wrapper'>
|
<view class='nav acea-row row-between-wrapper'>
|
||||||
<view>购物数量:<text class='num t-color'>{{cartTotalCount}}</text></view>
|
<view>购物数量:<text class='num t-color'>{{cartTotalCount}}</text></view>
|
||||||
<view v-if="cartList.valid.length > 0 || cartList.invalid.length > 0"
|
<view v-if="cartList.valid.length > 0 || cartList.invalid.length > 0"
|
||||||
class='administrate acea-row row-center-wrapper' @click='manage'>{{ footerswitch ? '管理' : '取消'}}
|
class='administrate acea-row row-center-wrapper' @click='manage'>
|
||||||
|
{{ footerswitch ? '管理' : '取消'}}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@ -45,18 +46,19 @@
|
|||||||
<text v-if="!item.allCheck" class="iconfont icon-weixuanzhong"></text>
|
<text v-if="!item.allCheck" class="iconfont icon-weixuanzhong"></text>
|
||||||
<text v-else class="iconfont icon-xuanzhong1"></text>
|
<text v-else class="iconfont icon-xuanzhong1"></text>
|
||||||
</view>
|
</view>
|
||||||
<navigator :url="hide_mer_status == 0 ? `/pages/store/home/index?id=${item.mer_id}&sale_type=${tabsCurr}` : '#'"
|
<navigator
|
||||||
|
:url="hide_mer_status == 0 ? `/pages/store/home/index?id=${item.mer_id}&sale_type=${tabsCurr}` : '#'"
|
||||||
class="info">
|
class="info">
|
||||||
<text class="iconfont icon-shangjiadingdan"></text>
|
<!-- <text class="iconfont icon-shangjiadingdan"></text> -->
|
||||||
<view class="name">{{item.mer_name}}</view>
|
<view class="name">{{item.mer_name}}</view>
|
||||||
<text class="iconfont icon-xiangyou"></text>
|
<text class="iconfont icon-xiangyou" style="font-weight: bold;"></text>
|
||||||
</navigator>
|
</navigator>
|
||||||
<view class="coupon-btn" style="width: auto;padding: 0 10rpx;">{{item.cloud_warehouse}}</view>
|
<!-- <view class="coupon-btn" style="width: auto;padding: 0 10rpx;">{{item.cloud_warehouse}}
|
||||||
<!-- <view class="coupon-btn" v-if="item.hasCoupon>0" @click="giveCoupon(item)">优惠券</view> -->
|
</view> -->
|
||||||
</view>
|
</view>
|
||||||
<navigator v-for="goods in item.list" :key="goods.cart_id"
|
<navigator v-for="goods in item.list" :key="goods.cart_id"
|
||||||
:url='`/pages/goods_details/index?id=${goods.product.product_id}&sale_type=${tabsCurr}`' hover-class='none'
|
:url='`/pages/goods_details/index?id=${goods.product.product_id}&sale_type=${tabsCurr}`'
|
||||||
class='picTxt acea-row'>
|
hover-class='none' class='picTxt acea-row'>
|
||||||
<view class="checkbox" @click.stop="goodsCheck(goods,index)">
|
<view class="checkbox" @click.stop="goodsCheck(goods,index)">
|
||||||
<text v-if="!goods.check" class="iconfont icon-weixuanzhong"></text>
|
<text v-if="!goods.check" class="iconfont icon-weixuanzhong"></text>
|
||||||
<text v-else class="iconfont icon-xuanzhong1"></text>
|
<text v-else class="iconfont icon-xuanzhong1"></text>
|
||||||
@ -67,7 +69,7 @@
|
|||||||
<!-- <image v-else :src='item.productInfo.image'></image> -->
|
<!-- <image v-else :src='item.productInfo.image'></image> -->
|
||||||
</view>
|
</view>
|
||||||
<view class='text'>
|
<view class='text'>
|
||||||
<view class='line1'>{{goods.product.store_name}}</view>
|
<view class='line1 goods-name'>{{goods.product.store_name}}</view>
|
||||||
<view class='infor line1' v-if="goods.productAttr.sku"
|
<view class='infor line1' v-if="goods.productAttr.sku"
|
||||||
@click.stop='changeCart(goods,goods.product_id)'>
|
@click.stop='changeCart(goods,goods.product_id)'>
|
||||||
{{goods.productAttr.sku}}
|
{{goods.productAttr.sku}}
|
||||||
@ -79,8 +81,13 @@
|
|||||||
v-if="goods.product.once_min_count>0">{{goods.product.once_min_count}}件起购,</text><text
|
v-if="goods.product.once_min_count>0">{{goods.product.once_min_count}}件起购,</text><text
|
||||||
v-if="goods.product.once_max_count>0">最多{{goods.product.once_max_count}}件</text>
|
v-if="goods.product.once_max_count>0">最多{{goods.product.once_max_count}}件</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
|
||||||
<view class='money acea-row row-middle'>
|
<view class='money acea-row row-middle'>
|
||||||
<text>¥{{goods.productAttr.price}}</text>
|
<view>
|
||||||
|
<text class="money-price">¥{{goods.productAttr.price}}</text>
|
||||||
|
<text class="money-unit">/份</text>
|
||||||
|
</view>
|
||||||
<view v-if="goods.productAttr.show_svip_price" class="vipImg">
|
<view v-if="goods.productAttr.show_svip_price" class="vipImg">
|
||||||
<image :src="`${domain}/static/images/svip.png`"></image>
|
<image :src="`${domain}/static/images/svip.png`"></image>
|
||||||
</view>
|
</view>
|
||||||
@ -305,8 +312,7 @@
|
|||||||
}, mapGetters(['isLogin', 'viewColor'])),
|
}, mapGetters(['isLogin', 'viewColor'])),
|
||||||
onReady() {},
|
onReady() {},
|
||||||
mounted: function() {},
|
mounted: function() {},
|
||||||
onLoad: function(options) {
|
onLoad: function(options) {},
|
||||||
},
|
|
||||||
onShow: function() {
|
onShow: function() {
|
||||||
let that = this
|
let that = this
|
||||||
let routes = getCurrentPages();
|
let routes = getCurrentPages();
|
||||||
@ -317,7 +323,8 @@
|
|||||||
if (this.isLogin == true) {
|
if (this.isLogin == true) {
|
||||||
this.isShowAuth = false;
|
this.isShowAuth = false;
|
||||||
try {
|
try {
|
||||||
if(this.$store.state.app.userInfo.mer_info.mer_settlement_agree_status&&this.tabsArr.length==1) this.tabsArr.push({
|
if (this.$store.state.app.userInfo.mer_info.mer_settlement_agree_status && this.tabsArr.length ==
|
||||||
|
1) this.tabsArr.push({
|
||||||
name: '商户购物车',
|
name: '商户购物车',
|
||||||
val: 2
|
val: 2
|
||||||
})
|
})
|
||||||
@ -371,7 +378,8 @@
|
|||||||
let that = this;
|
let that = this;
|
||||||
getUserInfo().then(res => {
|
getUserInfo().then(res => {
|
||||||
that.userInfo = res.data;
|
that.userInfo = res.data;
|
||||||
if(res.data.mer_info.mer_settlement_agree_status&&this.tabsArr.length==1) this.tabsArr.push({
|
if (res.data.mer_info.mer_settlement_agree_status && this.tabsArr.length == 1) this.tabsArr
|
||||||
|
.push({
|
||||||
name: '商户购物车',
|
name: '商户购物车',
|
||||||
val: 2
|
val: 2
|
||||||
})
|
})
|
||||||
@ -1064,16 +1072,15 @@
|
|||||||
z-index: 5;
|
z-index: 5;
|
||||||
top: 76rpx;
|
top: 76rpx;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.shoppingCart .nav .administrate {
|
.administrate {
|
||||||
font-size: 26rpx;
|
font-size: 26rpx;
|
||||||
color: #282828;
|
color: #fff;
|
||||||
width: 110rpx;
|
|
||||||
height: 46rpx;
|
|
||||||
border-radius: 6rpx;
|
border-radius: 6rpx;
|
||||||
border: 1px solid #868686;
|
background: #40AE36;
|
||||||
}
|
padding: 4rpx 32rpx;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.shoppingCart .noCart {
|
.shoppingCart .noCart {
|
||||||
@ -1098,6 +1105,11 @@
|
|||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.goods-name {
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #060606;
|
||||||
|
}
|
||||||
|
|
||||||
.shoppingCart .list {
|
.shoppingCart .list {
|
||||||
margin: 20rpx 0 20rpx;
|
margin: 20rpx 0 20rpx;
|
||||||
}
|
}
|
||||||
@ -1145,9 +1157,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.icon-xiangyou {
|
.icon-xiangyou {
|
||||||
margin-top: 6rpx;
|
margin-top: 4rpx;
|
||||||
font-size: 22rpx;
|
font-size: 22rpx;
|
||||||
color: #999;
|
color: #999;
|
||||||
|
margin-left: 6rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1198,18 +1211,18 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.shoppingCart .list .item .picTxt .pictrue {
|
.shoppingCart .list .item .picTxt .pictrue {
|
||||||
width: 160rpx;
|
width: 180rpx;
|
||||||
height: 160rpx;
|
height: 180rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.shoppingCart .list .item .picTxt .pictrue image {
|
.shoppingCart .list .item .picTxt .pictrue image {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border-radius: 6rpx;
|
border-radius: 20rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.shoppingCart .list .item .picTxt .text {
|
.shoppingCart .list .item .picTxt .text {
|
||||||
width: 444rpx;
|
width: 420rpx;
|
||||||
margin-left: 20rpx;
|
margin-left: 20rpx;
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
color: #282828;
|
color: #282828;
|
||||||
@ -1238,6 +1251,17 @@
|
|||||||
margin-top: 28rpx;
|
margin-top: 28rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.money-price {
|
||||||
|
color: #F55726;
|
||||||
|
font-size: 32rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.money-unit {
|
||||||
|
color: #999;
|
||||||
|
font-size: 22rpx;
|
||||||
|
}
|
||||||
|
|
||||||
.shoppingCart .list .item .picTxt .carnum {
|
.shoppingCart .list .item .picTxt .carnum {
|
||||||
height: 47rpx;
|
height: 47rpx;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -1247,7 +1271,7 @@
|
|||||||
|
|
||||||
.shoppingCart .list .item .picTxt .carnum view {
|
.shoppingCart .list .item .picTxt .carnum view {
|
||||||
border: 1px solid #a4a4a4;
|
border: 1px solid #a4a4a4;
|
||||||
min-width: 66rpx;
|
// min-width: 66rpx;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
line-height: 46rpx;
|
line-height: 46rpx;
|
||||||
@ -1255,15 +1279,16 @@
|
|||||||
color: #a4a4a4;
|
color: #a4a4a4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.shoppingCart .list .item .picTxt .carnum .reduce {
|
.shoppingCart .list .item .picTxt .carnum .reduce,
|
||||||
border-right: 0;
|
.shoppingCart .list .item .picTxt .carnum .plus {
|
||||||
// border-radius: 3rpx 0 0 3rpx;
|
width: 44rpx;
|
||||||
}
|
height: 44rpx;
|
||||||
|
background: #F8F9FA;
|
||||||
.shoppingCart .list .item .picTxt .carnum .reduce.on,
|
color: #333;
|
||||||
.shoppingCart .list .item .picTxt .carnum .plus.on {
|
font-size: 28rpx;
|
||||||
border-color: #e3e3e3;
|
border: 0;
|
||||||
color: #dedede;
|
border-radius: 50%;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.shoppingCart .list .item .picTxt .carnum .plus {
|
.shoppingCart .list .item .picTxt .carnum .plus {
|
||||||
@ -1272,7 +1297,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.shoppingCart .list .item .picTxt .carnum .num {
|
.shoppingCart .list .item .picTxt .carnum .num {
|
||||||
|
width: 78rpx;
|
||||||
|
height: 40rpx;
|
||||||
|
line-height: 40rpx;
|
||||||
|
text-align: center;
|
||||||
color: #282828;
|
color: #282828;
|
||||||
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.shoppingCart .invalidGoods {
|
.shoppingCart .invalidGoods {
|
||||||
|
@ -21,14 +21,16 @@
|
|||||||
<view>兑换方式</view>
|
<view>兑换方式</view>
|
||||||
<view class='itemCom'>积分兑换</view>
|
<view class='itemCom'>积分兑换</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view v-else class='item acea-row row-between-wrapper'>
|
<view v-else class='item acea-row row-between-wrapper'>
|
||||||
<view>支付方式</view>
|
<view>支付方式</view>
|
||||||
<view v-if="order_pay_info.pay_type==1 || order_pay_info.pay_type==2 || order_pay_info.pay_type==3"
|
<view
|
||||||
|
v-if="(order_pay_info.pay_type==1 || order_pay_info.pay_type==2 || order_pay_info.pay_type==3)"
|
||||||
class='itemCom'>微信</view>
|
class='itemCom'>微信</view>
|
||||||
<view v-else-if="order_pay_info.pay_type==4 || order_pay_info.pay_type==5" class='itemCom'>支付宝
|
<view v-else-if="order_pay_info.pay_type==4 || order_pay_info.pay_type==5" class='itemCom'>支付宝
|
||||||
</view>
|
</view>
|
||||||
<view v-else-if="order_pay_info.pay_type==9" class='itemCom'>商户余额</view>
|
<view v-else-if="order_pay_info.pay_type==9" class='itemCom'>商户余额</view>
|
||||||
<view v-else class='itemCom'>余额</view>
|
<view v-else class='itemCom'>{{JSON.stringify(order_pay_info)!='{}' ?'余额':''}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view v-if="order_type== 20" class='item acea-row row-between-wrapper'>
|
<view v-if="order_type== 20" class='item acea-row row-between-wrapper'>
|
||||||
<view>支付积分</view>
|
<view>支付积分</view>
|
||||||
|
@ -1,3 +1,53 @@
|
|||||||
|
<style lang="scss">
|
||||||
|
.tab-cont {
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
.aside-left-placeholder {
|
||||||
|
width: 152rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-left {
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
z-index: 2;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
width: 152rpx;
|
||||||
|
overflow-y: auto;
|
||||||
|
background-color: #F4F4F4;
|
||||||
|
|
||||||
|
.aside-left-item {
|
||||||
|
width: 100%;
|
||||||
|
height: 94rpx;
|
||||||
|
line-height: 94rpx;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0 14rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-active {
|
||||||
|
position: relative;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 26rpx;
|
||||||
|
color: #40AE36;
|
||||||
|
background-color: #fff;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: "";
|
||||||
|
display: inline-block;
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
width: 6rpx;
|
||||||
|
height: 36rpx;
|
||||||
|
background: #40AE36;
|
||||||
|
border-radius: 0rpx 4rpx 4rpx 0rpx;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<template>
|
<template>
|
||||||
<view class="store-home">
|
<view class="store-home">
|
||||||
<view class="header">
|
<view class="header">
|
||||||
@ -94,9 +144,23 @@
|
|||||||
</block>
|
</block>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="tab-cont" :style="viewColor,{'height':'calc(100vh - '+listHeight+' - 84rpx)'}"
|
<view class="tab-cont"
|
||||||
|
:style="viewColor,{'height':'calc(100vh - '+listHeight+' - 84rpx '+(tabActive == 2?' + 84rpx':'')+' )'}"
|
||||||
:class="{noPointer : preview}">
|
:class="{noPointer : preview}">
|
||||||
|
<!-- 占位 -->
|
||||||
|
<view class="aside-left-placeholder" v-if="tabActive != 2"></view>
|
||||||
|
|
||||||
|
<!-- 大分类 -->
|
||||||
|
<view class="aside-left" v-if="tabActive != 2"
|
||||||
|
:style="{'top':'calc('+headHeight+')','height':'calc(100vh - '+listHeight+' - 84rpx)'}">
|
||||||
|
|
||||||
|
<block v-for="item in asideMenu" :key="item.store_category_id">
|
||||||
|
<view class="aside-left-item line1" @click="onChangeAsideMenu(item.store_category_id)"
|
||||||
|
:class="{'aside-active':asideCurr == item.store_category_id?true:false}">
|
||||||
|
{{item.cate_name}}
|
||||||
|
</view>
|
||||||
|
</block>
|
||||||
|
</view>
|
||||||
|
|
||||||
<view v-show="diyActive == 0 && tabActive == 1">
|
<view v-show="diyActive == 0 && tabActive == 1">
|
||||||
<!-- #ifdef H5 -->
|
<!-- #ifdef H5 -->
|
||||||
@ -144,10 +208,11 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 首页 -->
|
<!-- 首页 -->
|
||||||
<view
|
<view style="margin:0 auto;"
|
||||||
v-show="(tabActive == 3 || tabActive == 7 || diyActive == 1 || diyActive == 2) && tabActive != 5 && tabActive != 2">
|
v-show="(tabActive == 3 || tabActive == 7 || diyActive == 1 || diyActive == 2) && tabActive != 5 && tabActive != 2">
|
||||||
<!-- 商品 -->
|
<!-- 商品 -->
|
||||||
<view v-if="goods.length" class="goods-wrap" id="goods" @touchmove="onTouchmove">
|
<view v-if="goods.length" class="goods-wrap" id="goods" @touchmove="onTouchmove"
|
||||||
|
:style="{'width':'calc(100vw - 152rpx)'}">
|
||||||
<view v-if="isColumn" class="goods column">
|
<view v-if="isColumn" class="goods column">
|
||||||
<view v-for="item in goods" :key="item.product_id" class="item"
|
<view v-for="item in goods" :key="item.product_id" class="item"
|
||||||
@click="goGoodsDetail(item)">
|
@click="goGoodsDetail(item)">
|
||||||
@ -181,38 +246,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="price-icon iconfont icon-gouwuche"></view>
|
<view class="price-icon iconfont icon-gouwuche"></view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- <view class="item_bot">
|
|
||||||
<view class="money-wrap acea-row">
|
|
||||||
<view class="money">
|
|
||||||
¥<text>{{ item.price }}</text>
|
|
||||||
</view>
|
</view>
|
||||||
<view
|
|
||||||
v-if="item.show_svip_info && item.show_svip_info.show_svip_price && item.svip_price"
|
|
||||||
class="acea-row row-middle">
|
|
||||||
<text class='vip-money'>¥{{item.svip_price}}</text>
|
|
||||||
<view class="vipImg">
|
|
||||||
<image class="image" :src="`${domain}/static/images/svip.png`">
|
|
||||||
</image>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view
|
|
||||||
v-if="item.product_type != 0 || item.issetCoupon || item.delivery_free == 1"
|
|
||||||
class="item_tags">
|
|
||||||
<text v-if="item.product_type != 0"
|
|
||||||
:class="'font_bg-red type'+item.product_type">{{item.product_type == 1 ? "秒杀" : item.product_type == 2 ? "预售" : item.product_type == 3 ? "助力" : item.product_type == 4 ? "拼团" : ""}}</text>
|
|
||||||
<text class="tags_item ticket" v-if="item.issetCoupon">领券</text>
|
|
||||||
<text class="tags_item delivery" v-if="item.delivery_free == 1">包邮</text>
|
|
||||||
</view>
|
|
||||||
<view class="score">{{ item.rate }}评分 {{ item.reply_count }}条评论</view>
|
|
||||||
</view> -->
|
|
||||||
</view>
|
|
||||||
<!-- <view v-if="item.max_extension>0 && (item.product_type == 0 || item.product_type == 2)"
|
|
||||||
class="foot">
|
|
||||||
<text v-show="!isColumn" class="iconfont"></text>
|
|
||||||
最高赚 ¥{{ item.max_extension }}
|
|
||||||
</view> -->
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view v-else class="goods">
|
<view v-else class="goods">
|
||||||
@ -227,7 +261,7 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 分类 -->
|
<!-- 分类 -->
|
||||||
<view v-show="tabActive == 2">
|
<view v-show="tabActive == 2" style="width:100%;">
|
||||||
<view class="category">
|
<view class="category">
|
||||||
<view class="section">
|
<view class="section">
|
||||||
<view class="head" @click="goCategoryGoods('')">
|
<view class="head" @click="goCategoryGoods('')">
|
||||||
@ -251,130 +285,13 @@
|
|||||||
{{loadTitle}}
|
{{loadTitle}}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
|
||||||
<!--生活服务 优惠券-->
|
|
||||||
<!-- <view v-show="tabActive === 5" id="product" @touchmove="onTouchmoves">
|
|
||||||
<view v-if="productList.length" class="goods column">
|
|
||||||
<view v-for="item in productList" :key="item.product_id" class="item"
|
|
||||||
@click="goGoodsDetail(item)">
|
|
||||||
<view class="image">
|
|
||||||
<easy-loadimage mode="widthFix" :image-src="item.image"></easy-loadimage>
|
|
||||||
</view>
|
|
||||||
<view class="text acea-row row-between-wrapper">
|
|
||||||
<view class="name line2">
|
|
||||||
<text class="name_text line1">{{ item.store_name }}</text>
|
|
||||||
</view>
|
|
||||||
<view class="item_bot">
|
|
||||||
<view class="money-wrap acea-row">
|
|
||||||
<view class="money">
|
|
||||||
¥
|
|
||||||
<text>{{ item.price }}</text>
|
|
||||||
</view>
|
|
||||||
<view
|
|
||||||
v-if="item.show_svip_info && item.show_svip_info.show_svip_price && item.svip_price"
|
|
||||||
class="acea-row row-middle">
|
|
||||||
<text class='vip-money'>¥{{item.svip_price}}</text>
|
|
||||||
<view class="vipImg">
|
|
||||||
<image class="image" :src="`${domain}/static/images/svip.png`"></image>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view v-if="item.product_type != 0 || item.issetCoupon || item.delivery_free == 1"
|
|
||||||
class="item_tags">
|
|
||||||
<text v-if="item.product_type != 0"
|
|
||||||
:class="'font_bg-red type'+item.product_type">{{item.product_type == 1 ? "秒杀" : item.product_type == 2 ? "预售" : item.product_type == 3 ? "助力" : item.product_type == 4 ? "拼团" : ""}}</text>
|
|
||||||
<text class="tags_item ticket" v-if="item.issetCoupon">领券</text>
|
|
||||||
<text class="tags_item delivery" v-if="item.delivery_free == 1">包邮</text>
|
|
||||||
</view>
|
|
||||||
<view class="score">{{ item.rate }}评分 {{ item.reply_count }}条评论</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view v-if="item.max_extension && (item.product_type == 0 || item.product_type == 2)"
|
|
||||||
class="foot">
|
|
||||||
<text v-show="!isColumn" class="iconfont"></text>
|
|
||||||
最高赚 ¥{{ item.max_extension }}
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view v-if="goodsLoading" class="acea-row row-center-wrapper loadingicon">
|
|
||||||
<text :hidden="!goodsLoading" class="iconfont icon-jiazai loading"></text>
|
|
||||||
{{loadTitle}}
|
|
||||||
</view>
|
|
||||||
<emptyPage v-if="productList.length == 0 && !goodsLoading" title="暂无商品~"></emptyPage>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<view v-show="diyActive == 3 && tabActive == 1">
|
|
||||||
<view v-if="coupon.length" class="coupon">
|
|
||||||
<view v-for="item in coupon" :key="item.coupon_id" class="item">
|
|
||||||
<view class="left gary" v-if="item.issue">
|
|
||||||
<view class="money">
|
|
||||||
¥
|
|
||||||
<text>{{ item.coupon_price }}</text>
|
|
||||||
</view>
|
|
||||||
<view>满{{ item.use_min_price }}元可用</view>
|
|
||||||
</view>
|
|
||||||
<view class="left" v-else
|
|
||||||
:style="{ 'background-image': `url(${domain}/static/diy/couponBg${keyColor}.png)` }">
|
|
||||||
<view class="money">
|
|
||||||
¥
|
|
||||||
<text>{{ item.coupon_price }}</text>
|
|
||||||
</view>
|
|
||||||
<view>满{{ item.use_min_price }}元可用</view>
|
|
||||||
</view>
|
|
||||||
<view class="right">
|
|
||||||
<view class="name line1">
|
|
||||||
<text :class="{gary:item.issue}">{{item.type===0?'店铺券':'商品券'}}</text>
|
|
||||||
{{ item.title }}
|
|
||||||
</view>
|
|
||||||
<view class="time-wrap" style="justify-content: space-between;">
|
|
||||||
<block v-if="item.coupon_type == 1">
|
|
||||||
<view class="time">
|
|
||||||
{{ item.use_start_time | dateFormat }}-{{ item.use_end_time | dateFormat }}
|
|
||||||
</view>
|
|
||||||
</block>
|
|
||||||
<block v-if="item.coupon_type == 0">
|
|
||||||
<view>领取后{{ item.coupon_time}}天内可用</view>
|
|
||||||
</block>
|
|
||||||
<block v-if="item.issue">
|
|
||||||
<view class="gary iconfont icon-yilingqu2"></view>
|
|
||||||
</block>
|
|
||||||
<block v-else>
|
|
||||||
<view class="button" @click="receiveCoupon(item)">立即领取</view>
|
|
||||||
</block>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<emptyPage v-if="coupon.length == 0" title="暂无优惠券~"></emptyPage>
|
|
||||||
</view> -->
|
|
||||||
|
|
||||||
<!--活动专场-->
|
|
||||||
<!-- <view v-show="tabActive === 4">
|
|
||||||
<block v-if="topicList.length>0">
|
|
||||||
<view class="main_count">
|
|
||||||
<navigator v-for="(item,index) in topicList" :key='item.group_data_id'
|
|
||||||
:url="`/pages/activity/topic_detail/index?id=${item.group_data_id}`" hover-class="none">
|
|
||||||
<view class='list'>
|
|
||||||
<image :src="item.pic" class="picture"></image>
|
|
||||||
</view>
|
|
||||||
</navigator>
|
|
||||||
</view>
|
|
||||||
</block>
|
|
||||||
<block v-else>
|
|
||||||
<view class='empty-box' v-cloak>
|
|
||||||
<image src='../static/images/no-topic.png'></image>
|
|
||||||
<view class="txt">暂无活动专场哦~</view>
|
|
||||||
</view>
|
|
||||||
</block>
|
|
||||||
</view> -->
|
|
||||||
</view>
|
</view>
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
|
|
||||||
<view class="footer" :style="viewColor" :class="{noPointer : preview}">
|
<view class="footer" :style="viewColor" :class="{noPointer : preview}">
|
||||||
<view v-for="(item, index) in tabs3" :key="index" :class="{ active: tabActive === item.value }" class="item"
|
<view v-for="(item, index) in tabs3" :key="index" :class="{ active: tabActive === item.value }" class="item"
|
||||||
@click="tab(item.value)">
|
@click="tab(item.value)">
|
||||||
<view :class="['iconfont', item.icon]"></view>
|
<view :class="['iconfont', item.icon,item.value==9?'car-number':'']" :data-attr="CartCount"></view>
|
||||||
<view>{{ item.name }}</view>
|
<view>{{ item.name }}</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@ -402,7 +319,8 @@
|
|||||||
followStore,
|
followStore,
|
||||||
unfollowStore,
|
unfollowStore,
|
||||||
storeServiceList,
|
storeServiceList,
|
||||||
hasServiceApi
|
hasServiceApi,
|
||||||
|
getCategoryIndexList
|
||||||
} from '@/api/store.js';
|
} from '@/api/store.js';
|
||||||
import {
|
import {
|
||||||
initiateAssistApi,
|
initiateAssistApi,
|
||||||
@ -425,6 +343,9 @@
|
|||||||
import {
|
import {
|
||||||
goShopDetail
|
goShopDetail
|
||||||
} from '@/libs/order.js';
|
} from '@/libs/order.js';
|
||||||
|
import {
|
||||||
|
getCartCounts
|
||||||
|
} from '@/api/order.js';
|
||||||
import history from "@/mixins/history";
|
import history from "@/mixins/history";
|
||||||
import emptyPage from '@/components/emptyPage.vue'
|
import emptyPage from '@/components/emptyPage.vue'
|
||||||
import shareScence from "@/libs/spread";
|
import shareScence from "@/libs/spread";
|
||||||
@ -453,6 +374,9 @@
|
|||||||
import pictureCube from '../../index/component/pictureCube'
|
import pictureCube from '../../index/component/pictureCube'
|
||||||
import titles from '../../index/component/titles';
|
import titles from '../../index/component/titles';
|
||||||
// #endif
|
// #endif
|
||||||
|
import {
|
||||||
|
merClassifly,
|
||||||
|
} from "@/api/store.js"
|
||||||
const app = getApp();
|
const app = getApp();
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
@ -578,6 +502,10 @@
|
|||||||
icon: 'icon-gouwu_o',
|
icon: 'icon-gouwu_o',
|
||||||
name: '商品',
|
name: '商品',
|
||||||
value: 3,
|
value: 3,
|
||||||
|
}, {
|
||||||
|
icon: 'icon-gouwuche',
|
||||||
|
name: '购物车',
|
||||||
|
value: 9,
|
||||||
}, {
|
}, {
|
||||||
icon: 'icon-yingyongAPP_o',
|
icon: 'icon-yingyongAPP_o',
|
||||||
name: '分类',
|
name: '分类',
|
||||||
@ -593,7 +521,11 @@
|
|||||||
type: 0,
|
type: 0,
|
||||||
serviceInfo: {},
|
serviceInfo: {},
|
||||||
preview: false,
|
preview: false,
|
||||||
listHeight: 0
|
listHeight: 0,
|
||||||
|
headHeight: 0,
|
||||||
|
asideMenu: [],
|
||||||
|
asideCurr: '',
|
||||||
|
CartCount: 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -605,8 +537,7 @@
|
|||||||
};
|
};
|
||||||
if ('postage_score' in store) {
|
if ('postage_score' in store) {
|
||||||
score.number = (parseFloat(store.postage_score) + parseFloat(store.product_score) + parseFloat(
|
score.number = (parseFloat(store.postage_score) + parseFloat(store.product_score) + parseFloat(
|
||||||
store.service_score)) /
|
store.service_score)) / 3;
|
||||||
3;
|
|
||||||
score.star = score.number / 5 * 100;
|
score.star = score.number / 5 * 100;
|
||||||
}
|
}
|
||||||
return score;
|
return score;
|
||||||
@ -701,6 +632,9 @@
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
this.getMerClassifly();
|
||||||
|
this.getCart();
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -732,6 +666,41 @@
|
|||||||
},
|
},
|
||||||
// #endif
|
// #endif
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
|
//获取购物车数量
|
||||||
|
getCart() {
|
||||||
|
let that = this;
|
||||||
|
console.log(111)
|
||||||
|
getCartCounts({
|
||||||
|
sale_type: this.where.sale_type
|
||||||
|
}).then(res => {
|
||||||
|
console.log(res)
|
||||||
|
that.CartCount = res.data[0].count;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// 修改菜单
|
||||||
|
onChangeAsideMenu(e) {
|
||||||
|
this.asideCurr = e;
|
||||||
|
this.resetParmas();
|
||||||
|
this.goods = [];
|
||||||
|
this.loadend = false;
|
||||||
|
this.getGoods();
|
||||||
|
},
|
||||||
|
|
||||||
|
// 获取分类
|
||||||
|
getMerClassifly() {
|
||||||
|
getCategoryIndexList({
|
||||||
|
mer_type: 2,
|
||||||
|
sale_type: this.where.sale_type
|
||||||
|
}).then(res => {
|
||||||
|
this.asideMenu = [{
|
||||||
|
cate_name: '全部',
|
||||||
|
store_category_id: ''
|
||||||
|
}, ...res.data];
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
navTo(url) {
|
navTo(url) {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: url
|
url: url
|
||||||
@ -775,6 +744,7 @@
|
|||||||
const headHeight = await this.getDomInfo('.header');
|
const headHeight = await this.getDomInfo('.header');
|
||||||
const footerHeight = await this.getDomInfo('.footer');
|
const footerHeight = await this.getDomInfo('.footer');
|
||||||
const navHeight = await this.getDomInfo('#nav-cont');
|
const navHeight = await this.getDomInfo('#nav-cont');
|
||||||
|
this.headHeight = headHeight;
|
||||||
|
|
||||||
this.listHeight = headHeight.height + footerHeight.height + 'px';
|
this.listHeight = headHeight.height + footerHeight.height + 'px';
|
||||||
})
|
})
|
||||||
@ -869,6 +839,7 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
// 本地生活服务商品
|
// 本地生活服务商品
|
||||||
get_service_list: function(isPage) {
|
get_service_list: function(isPage) {
|
||||||
let that = this;
|
let that = this;
|
||||||
@ -948,12 +919,16 @@
|
|||||||
},
|
},
|
||||||
// 获取商铺商品
|
// 获取商铺商品
|
||||||
getGoods: function() {
|
getGoods: function() {
|
||||||
|
console.log(2)
|
||||||
let that = this;
|
let that = this;
|
||||||
if (that.loadend) return;
|
if (that.loadend) return;
|
||||||
if (that.loading) return;
|
if (that.loading) return;
|
||||||
if (that.goodsLoading) return;
|
if (that.goodsLoading) return;
|
||||||
|
|
||||||
that.goodsLoading = true;
|
that.goodsLoading = true;
|
||||||
that.loadTitle = '';
|
that.loadTitle = '';
|
||||||
|
that.where.cate_pid = that.asideCurr;
|
||||||
|
|
||||||
if (this.tabActive == 7) getStoreCloudGoods(that.id, that.where).then(res => {
|
if (this.tabActive == 7) getStoreCloudGoods(that.id, that.where).then(res => {
|
||||||
that.goodsLoading = false;
|
that.goodsLoading = false;
|
||||||
let list = res.data.list;
|
let list = res.data.list;
|
||||||
@ -1176,11 +1151,17 @@
|
|||||||
url: '/pages/index/index'
|
url: '/pages/index/index'
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
// 商铺底部切换
|
// 商铺底部切换
|
||||||
tab: function(param) {
|
tab: function(param) {
|
||||||
|
console.log(param)
|
||||||
|
if (param == 9) return uni.switchTab({
|
||||||
|
url: "/pages/order_addcart/order_addcart"
|
||||||
|
})
|
||||||
this.tabActive = param;
|
this.tabActive = param;
|
||||||
this.goodsLoading = this.loadend = this.loading = false
|
this.goodsLoading = this.loadend = this.loading = false
|
||||||
},
|
},
|
||||||
|
|
||||||
resetParmas() {
|
resetParmas() {
|
||||||
this.navActive = 0;
|
this.navActive = 0;
|
||||||
this.where = {
|
this.where = {
|
||||||
@ -1259,6 +1240,24 @@
|
|||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.car-number {
|
||||||
|
position: relative;
|
||||||
|
backgrond: red;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: attr(data-attr);
|
||||||
|
display: inline-block;
|
||||||
|
position: absolute;
|
||||||
|
background-color: #40AE36;
|
||||||
|
color: #fff;
|
||||||
|
padding: 10rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
border-radius: 16rpx;
|
||||||
|
line-height: 16rpx;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.noPointer {
|
.noPointer {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
@ -1590,6 +1589,8 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
background: #fff;
|
||||||
|
border-bottom: 1px solid #f3f3f3;
|
||||||
|
|
||||||
.nav-cont {
|
.nav-cont {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -1701,7 +1702,7 @@
|
|||||||
padding-right: 20rpx;
|
padding-right: 20rpx;
|
||||||
padding-left: 20rpx;
|
padding-left: 20rpx;
|
||||||
background-color: #F5F5F5;
|
background-color: #F5F5F5;
|
||||||
width: 750rpx;
|
width: 100%;
|
||||||
|
|
||||||
.item {
|
.item {
|
||||||
width: 345rpx;
|
width: 345rpx;
|
||||||
@ -2235,7 +2236,6 @@
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
padding-top: 200rpx;
|
|
||||||
|
|
||||||
image {
|
image {
|
||||||
width: 414rpx;
|
width: 414rpx;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user