1006 lines
26 KiB
Vue
1006 lines
26 KiB
Vue
<template>
|
|
<view class="wholeSale">
|
|
<!-- 顶部 -->
|
|
<view class="wholeSale-header">
|
|
<view class="wholeSale-header-wrap">
|
|
<!-- 适配不同机 -->
|
|
<view style="height: var(--status-bar-height);"></view>
|
|
|
|
<!-- 滚动tab -->
|
|
<scroll-view scroll-x="true" :scroll-top="100" :show-scrollbar="false" scroll-into-view="a1">
|
|
<view class="scrollview">
|
|
<block v-for="(item,indx) in tabsArr" :key="indx">
|
|
<view class="scrollview-item" :id="'a' + indx"
|
|
:class="{'scrollview-active':tabsCurr == item.val}" @click="tabsChange(item.val)">
|
|
{{item.name}}
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
|
|
<view class="wholeSale-header-search-wrap" :style="{height:wrapHeight + 'rpx'}">
|
|
<u-subsection v-if="tabsCurr==2" :list="subList" @change="changeSub" :current="subCurr"
|
|
mode="subsection" activeColor="#40ae36" fontSize="14" style="margin-bottom: 24rpx;"></u-subsection>
|
|
|
|
<view class="wholeSale-nav">
|
|
<view
|
|
@click="navTo(`/pages/columnGoods/goods_search/index?back=true&searchVal=${where.keyword}&shop=${subCurr!=1 || (subCurr==1 && tabsCurr!=2) ? false : true}`)"
|
|
hover-class="none" class="search_content flex_a_c_j_sb">
|
|
<view class="flex_a_c search_content_wrap">
|
|
<view class="iconfont icon-sousuo" style="font-size: 39rpx;"></view>
|
|
<input type="text"
|
|
:placeholder="subCurr!=1 || (subCurr==1 && tabsCurr!=2) ? '搜索您需要批发进货的产品名称': '搜索店铺名称'"
|
|
:value="where.keyword" placeholder-style="font-size: 30rpx;color:#999;" disabled
|
|
style="pointer-events: none;">
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 商品大分类 -->
|
|
<view class="category">
|
|
<scroll-view scroll-x="true">
|
|
<view class="category-wrap">
|
|
<block v-for="(item,index) in store_category" :key="index">
|
|
<view class="category-item" :class="{'category-item-active': index==cate_change}"
|
|
@click="changeCate(index)">
|
|
<block v-if="subCurr!=1 || (subCurr==1 && tabsCurr!=2)">
|
|
<u--image class="category-item-img" width="108rpx" :src="item.pic"
|
|
height="108rpx" shape="circle">
|
|
<template v-slot:loading>
|
|
<u-loading-icon color="#999" size="15" />
|
|
</template>
|
|
</u--image>
|
|
<text class="category-item-text">{{item.cate_name}}</text>
|
|
</block>
|
|
<block v-else>
|
|
<u--image class="category-item-img" width="108rpx" :src="item.background"
|
|
height="108rpx" shape="circle">
|
|
<template v-slot:loading>
|
|
<u-loading-icon color="#999" size="15" />
|
|
</template>
|
|
</u--image>
|
|
<text class="category-item-text">{{item.category_name}}</text>
|
|
</block>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</scroll-view>
|
|
<view class="category-all" v-if="store_category.length > 0" @click="onAllCategory">
|
|
<view style="margin-bottom: 20rpx;">全部</view>
|
|
<u-icon name="list"></u-icon>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 商品小分类 -->
|
|
<view class="cate" v-if="store_category_children.length>1">
|
|
<scroll-view scroll-x="true">
|
|
<view class="cate-wrap">
|
|
<block v-for="(item,index) in store_category_children" :key="index">
|
|
<view class="cate-item" :class="{'cate-item-active':index == cate_change_children}"
|
|
@click="changeChildrenCate(index)">
|
|
<text>{{item.cate_name}}</text>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
|
|
<!-- 综合查询 -->
|
|
<view class="comprehensive" v-if="subCurr!=1 || (subCurr==1 && tabsCurr!=2)">
|
|
<view class="comprehensive-price" :class="{'comp-color': orderCurr==1}"
|
|
@click="toOrder('price', 1)">
|
|
<text>价格</text>
|
|
<image v-if="orderCurr==1" style="width: 15rpx;height: 21rpx;"
|
|
:src="where.order == 'price_asc' ? domain+'/static/diy/up'+keyColor+'.png' : domain+'/static/diy/down'+keyColor+'.png'">
|
|
</image>
|
|
<view v-else style="width: 15rpx;height: 21rpx;"></view>
|
|
</view>
|
|
<view class="comprehensive-sales_num" :class="{'comp-color': orderCurr==2}"
|
|
@click="toOrder('sales', 2)">
|
|
<text>销量</text>
|
|
</view>
|
|
<view class="comprehensive-discount" :class="{'comp-color': orderCurr==3}" v-if="tabsCurr!=1"
|
|
@click="toOrder('', 3)">
|
|
<text>综合</text>
|
|
</view>
|
|
<view class="comprehensive-discount" v-else @click="deduction_rate=!deduction_rate;">
|
|
<text>抵扣</text>
|
|
<image class="loudou" src="@/static/new_define/loudou.png"></image>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 综合查询 -->
|
|
<view class="comprehensive" v-if="deduction_rate && tabsCurr==1">
|
|
<view class="comprehensive-sales_num" :class="{'comp-color': where.deduction_rate==''}"
|
|
@click="changeDeduction('')">
|
|
<text>全部</text>
|
|
</view>
|
|
<view class="comprehensive-sales_num" :class="{'comp-color': where.deduction_rate=='10'}"
|
|
@click="changeDeduction('10')">
|
|
<text>1:9</text>
|
|
</view>
|
|
<view class="comprehensive-sales_num" :class="{'comp-color': where.deduction_rate=='15'}"
|
|
@click="changeDeduction('15')">
|
|
<text>2:8</text>
|
|
</view>
|
|
<view class="comprehensive-sales_num" :class="{'comp-color': where.deduction_rate=='20'}"
|
|
@click="changeDeduction('20')">
|
|
<text>3:7</text>
|
|
</view>
|
|
<view class="comprehensive-sales_num" :class="{'comp-color': where.deduction_rate=='25'}"
|
|
@click="changeDeduction('25')">
|
|
<text>4:6</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 内容 -->
|
|
<view class="wholeSale-con"
|
|
:style="{height:'calc(100vh - '+wrapHeight+'rpx - 142rpx '+(isShowSmall?' - 48rpx':'')+')'}">
|
|
<scroll-view :scroll-y="true" @scrolltolower="onScrollBottom" @scroll="onScroll" style="height: 100%;"
|
|
:refresher-enabled="true" :refresher-triggered="isTriggered" @refresherpulling="onPulling"
|
|
@refresherrefresh="onRefresh" :refresher-threshold="45" :scroll-anchoring='true'>
|
|
<!-- 流水瀑布 -->
|
|
<WaterfallsFlow v-if="subCurr!=1 || (subCurr==1 && tabsCurr!=2)" :wfList='hostProduct'
|
|
@itemTap="goDetail" :type="0" :sale_type="2" />
|
|
|
|
<!-- 列表 -->
|
|
<view class="goods_list" v-else>
|
|
<view class="goods" v-for="(item, index) in shopList" :key="index" @click="goStore(item.mer_id)">
|
|
<view class="avatar">
|
|
<u--image width="160rpx" height="160rpx" :src="item.mer_avatar" mode="aspectFill">
|
|
<template v-slot:loading>
|
|
<u-loading-icon color="#999" size="15" />
|
|
</template>
|
|
</u--image>
|
|
</view>
|
|
<view class="content">
|
|
<view class="content-head">
|
|
<view class="title">{{item.mer_name}}</view>
|
|
<text style="font-size: 21.03rpx;color: #aaa;"
|
|
v-if="item.sales>=100">月销{{item.sales}}</text>
|
|
</view>
|
|
<view class="content-two">
|
|
<view class="score">
|
|
<view class="star">
|
|
<view
|
|
:style="{width: `${(item.service_score / 5 * 100).toFixed(0)}%`, backgroundImage: `url(${domain}/static/diy/score1${keyColor}.png)`}">
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<text
|
|
style="margin-left: 20rpx;color: #FF6D20;font-size: 22.78rpx; ">{{item.service_score}}</text>
|
|
<text v-if="item.distance"
|
|
style="margin-left: 20rpx;font-size: 21.03rpx;color: #aaa;">{{item.distance}}</text>
|
|
|
|
<text style="margin-left: 20rpx;" class="line1">{{item.category_name}}</text>
|
|
</view>
|
|
<view class="content-two">
|
|
<u--image :showLoading="true" src="/static/images/GXSC/DH.png" width="33.85rpx"
|
|
height="33.85rpx"></u--image>
|
|
<text> {{item.service_phone}}</text>
|
|
<u--image style="margin-left: 28rpx;" v-if="item.mer_take_time" :showLoading="true"
|
|
src="/static/images/GXSC/SJ.png" width="33.85rpx" height="33.85rpx"></u--image>
|
|
<text
|
|
v-if="item.mer_take_time">{{item.mer_take_time[0]}}-{{item.mer_take_time[1]}}</text>
|
|
</view>
|
|
<view class="content-two">
|
|
<u--image :showLoading="true" src="/static/images/GXSC/DW.png" width="33.85rpx"
|
|
height="33.85rpx"></u--image>
|
|
<text class="address">{{item.mer_address}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<loadmore :type="isLoading" v-if="isLoading || hostProduct.length > 0"
|
|
style="background-color: #fff;padding: 12rpx 0;">
|
|
</loadmore>
|
|
<view class='pictrue' v-if="!isLoading && hostProduct.length == 0">
|
|
<image :src="`${domain}/static/images/noCart.png`"></image>
|
|
<view>暂无商品,看点别的吧</view>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
|
|
<!-- 弹框大分类 -->
|
|
<uni-popup ref="popup" type="top" border-radius="10px 10px 0 0" z-index="1000">
|
|
<view class="popup-wrap">
|
|
<view style="height: var(--status-bar-height);"></view>
|
|
<view class="popup-wrap-title">分类</view>
|
|
<view class="popup-wrap-category">
|
|
<view class="popup-wrap-category-wrap">
|
|
<block v-for="(item,index) in store_category" :key="index">
|
|
<view class="popup-wrap-category-item"
|
|
:class="{'popup-wrap-category-item-active': index==cate_change}"
|
|
@click="changeCate(index)">
|
|
<block v-if="subCurr!=1 || (subCurr==1 && tabsCurr!=2)">
|
|
<u--image class="popup-wrap-category-item-img" width="108rpx" :src="item.pic"
|
|
height="108rpx" shape="circle">
|
|
<template v-slot:loading>
|
|
<u-loading-icon color="#999" size="15" />
|
|
</template>
|
|
</u--image>
|
|
<text class="popup-wrap-category-item-text">{{item.cate_name}}</text>
|
|
</block>
|
|
<block v-else>
|
|
<u--image class="popup-wrap-category-item-img" width="108rpx" :src="item.background"
|
|
height="108rpx" shape="circle">
|
|
<template v-slot:loading>
|
|
<u-loading-icon color="#999" size="15" />
|
|
</template>
|
|
</u--image>
|
|
<text class="popup-wrap-category-item-text">{{item.category_name}}</text>
|
|
</block>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</uni-popup>
|
|
|
|
<!--自定义底部tab栏-->
|
|
<customTab :newData="newData" :activeRouter="activeRouter"></customTab>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
goShopDetail
|
|
} from '@/libs/order.js'
|
|
import {
|
|
getStoreCategory,
|
|
getProductslist,
|
|
getCategoryIndexList,
|
|
merClassifly,
|
|
storeMerchantList
|
|
} from "@/api/store.js"
|
|
import customTab from '@/components/customTab';
|
|
import {
|
|
getVersion,
|
|
getNavigation
|
|
} from "@/api/public";
|
|
import {
|
|
configMap
|
|
} from "@/utils"
|
|
import {
|
|
mapGetters
|
|
} from "vuex";
|
|
import {
|
|
HTTP_REQUEST_URL
|
|
} from '@/config/app';
|
|
import WaterfallsFlow from '@/components/WaterfallsFlow/WaterfallsFlow.vue'
|
|
export default {
|
|
components: {
|
|
WaterfallsFlow,
|
|
customTab
|
|
},
|
|
data() {
|
|
return {
|
|
domain: HTTP_REQUEST_URL,
|
|
tabsArr: [{
|
|
name: '里海云仓批发',
|
|
val: 1
|
|
}, {
|
|
name: '供销云市场批发',
|
|
val: 2
|
|
}, {
|
|
name: '名优农特产批发',
|
|
val: 3
|
|
}],
|
|
tabsCurr: 1,
|
|
orderCurr: 3, //当前选择的排序类型
|
|
subList: ['批发市场', '批发商户'],
|
|
subCurr: 0,
|
|
newData: {},
|
|
activeRouter: '',
|
|
hostProduct: [],
|
|
shopList: [], //商户分类
|
|
store_category: [], //商品大分类
|
|
store_category_shop: [], //商户分类
|
|
store_category_children: [], //商品小分类
|
|
cate_change: 0,
|
|
cate_change_children: 0,
|
|
isLoading: 0,
|
|
deduction_rate: false, //是否显示
|
|
where: {
|
|
page: 1,
|
|
limit: 20,
|
|
sale_type: 2, //1为零售, 2为批发
|
|
mer_type: 1,
|
|
cate_pid: '', //
|
|
cate_id: '',
|
|
keyword: '',
|
|
deduction_rate: '', //抵扣比例
|
|
order: '', // 销量sales, 价格低到高price_asc, 价格高到低price_desc
|
|
rand: 1,
|
|
},
|
|
isIndexClick: true,
|
|
bigTypeDomInfo: null,
|
|
smallTypeDomInfo: null,
|
|
categoryWrapHeight: 0,
|
|
wrapHeight: 332,
|
|
isShowSmall: false,
|
|
scrollTop: 0,
|
|
isTriggered: false
|
|
}
|
|
},
|
|
computed: {
|
|
...configMap({
|
|
margin_ico_switch: 0,
|
|
margin_ico: '',
|
|
}, mapGetters(['isLogin', 'uid', 'viewColor', 'keyColor'])),
|
|
},
|
|
onLoad() {
|
|
this.getNav();
|
|
this.initData();
|
|
},
|
|
|
|
onTabItemTap(e) {
|
|
if (this.isIndexClick) {
|
|
uni.pageScrollTo({
|
|
scrollTop: 0,
|
|
duration: 300
|
|
});
|
|
} else {
|
|
this.isIndexClick = true;
|
|
}
|
|
},
|
|
|
|
onShow() {
|
|
this.isIndexClick = false;
|
|
},
|
|
|
|
onPageScroll(e) {
|
|
uni.$emit('scroll');
|
|
|
|
if (e.scrollTop >= 100) {
|
|
uni.setTabBarItem({
|
|
index: 1,
|
|
text: "批发",
|
|
selectedIconPath: "/static/tabbar_icon/back_a.png"
|
|
})
|
|
} else {
|
|
uni.setTabBarItem({
|
|
index: 1,
|
|
text: "批发",
|
|
selectedIconPath: "/static/tabbar_icon/b-a.png"
|
|
})
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
'where.cate_pid'(newVal, oldVal) {
|
|
if (newVal && !oldVal) {
|
|
this.wrapHeight = this.tabsCurr == 2 ? 400 : (332 + 48);
|
|
this.isShowSmall = true;
|
|
}
|
|
if (!newVal && oldVal) {
|
|
this.wrapHeight = this.tabsCurr == 2 ? 400 : 332;
|
|
this.isShowSmall = false;
|
|
}
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
|
|
// 下拉加载
|
|
onPulling() {
|
|
if (!this.isTriggered) {
|
|
this.isTriggered = true;
|
|
this.initData(true, true);
|
|
}
|
|
},
|
|
onRefresh(e) {
|
|
this.isTriggered = true;
|
|
},
|
|
|
|
onScrollBottom(e) {
|
|
this.initData(false, true);
|
|
},
|
|
|
|
onAllCategory() {
|
|
this.$refs.popup.open();
|
|
},
|
|
|
|
onScroll(e) {
|
|
if (this.scrollTop >= e.target.scrollTop) { //上拉
|
|
this.wrapHeight = this.tabsCurr == 2 ? 400 : 332;
|
|
if (this.where.cate_pid) this.wrapHeight = this.wrapHeight + 48;
|
|
} else {
|
|
this.wrapHeight = 0;
|
|
}
|
|
this.scrollTop = e.target.scrollTop;
|
|
},
|
|
|
|
initData(re = false, stop = false) {
|
|
if (!stop) this.getStoreCategory();
|
|
if (this.tabsCurr == 2 && this.subCurr == 1) this.storeMerchantList(re, stop);
|
|
else this.getProductslist(re, stop);
|
|
},
|
|
changeDeduction(e) {
|
|
this.where.deduction_rate = e;
|
|
this.getProductslist(true);
|
|
},
|
|
changeSub(e) {
|
|
this.subCurr = e;
|
|
this.where = {
|
|
page: 1,
|
|
limit: this.where.limit,
|
|
sale_type: this.where.sale_type,
|
|
keyword: this.where.keyword,
|
|
}
|
|
if (this.subCurr != 1) this.where.mer_type = 2;
|
|
this.cate_change = 0;
|
|
this.cate_change_children = 0;
|
|
this.initData(true);
|
|
},
|
|
toOrder(type, index = -1) {
|
|
if (this.where.order == type) {
|
|
type = "";
|
|
this.orderCurr = -1
|
|
} else this.orderCurr = index;
|
|
if (type == 'price') {
|
|
if (this.where.order == 'price_asc') this.where.order = 'price_desc';
|
|
else this.where.order = 'price_asc';
|
|
} else this.where.order = type;
|
|
this.getProductslist(true);
|
|
},
|
|
navTo(url) {
|
|
uni.navigateTo({
|
|
url: url,
|
|
success: () => {
|
|
uni.$once('searchValue', (e) => {
|
|
this.$nextTick(() => {
|
|
this.where.keyword = e;
|
|
this.initData(true);
|
|
})
|
|
})
|
|
}
|
|
})
|
|
},
|
|
getNav() {
|
|
getNavigation().then(res => {
|
|
this.newData = res.data
|
|
if (this.newData.status && this.newData.status.status) {
|
|
uni.hideTabBar()
|
|
} else {
|
|
uni.showTabBar()
|
|
}
|
|
})
|
|
},
|
|
tabsChange(e) {
|
|
this.tabsCurr = e;
|
|
this.orderCurr = -1;
|
|
this.where = {
|
|
page: 1,
|
|
limit: this.where.limit,
|
|
sale_type: this.where.sale_type,
|
|
keyword: this.where.keyword,
|
|
order: '',
|
|
rand: this.where.rand,
|
|
}
|
|
this.cate_change = 0;
|
|
this.cate_change_children = 0;
|
|
if (this.tabsCurr != 2 || (this.tabsCurr == 2 && this.subCurr != 1)) this.where.mer_type = e;
|
|
this.wrapHeight = this.tabsCurr == 2 ? 400 : this.where.cate_pid ? (332 + 48) : 332;
|
|
this.initData(true);
|
|
},
|
|
changeCate(e) {
|
|
this.cate_change = e;
|
|
this.store_category_children = [];
|
|
if (this.tabsCurr == 2 && this.subCurr == 1) {
|
|
this.where.merchant_category_id = this.store_category[e].merchant_category_id;
|
|
return this.storeMerchantList(true);
|
|
}
|
|
if (this.store_category[e].children) this.store_category_children = [...this.store_category[e]
|
|
.children
|
|
];
|
|
this.store_category_children.unshift({
|
|
cate_name: '全部',
|
|
store_category_id: ''
|
|
})
|
|
this.cate_change_children = 0;
|
|
if (this.tabsCurr == 1) this.where.cate_pid = this.store_category[e].store_category_id;
|
|
else {
|
|
this.where.cate_pid = this.store_category[e].store_category_id;
|
|
this.where.cate_id = "";
|
|
}
|
|
this.getProductslist(true);
|
|
|
|
// 关闭popup
|
|
this.$refs.popup && this.$refs.popup.close();
|
|
},
|
|
changeChildrenCate(e) {
|
|
this.cate_change_children = e;
|
|
let key = 'cate_pid';
|
|
if (this.tabsCurr != 1) key = 'cate_id';
|
|
this.where[key] = this.store_category_children[e].store_category_id;
|
|
if (e == 0) this.where[key] = this.store_category[this.cate_change].store_category_id; // 如若选中全部, 则取父级id
|
|
this.getProductslist(true);
|
|
},
|
|
getStoreCategory() {
|
|
this.store_category = [];
|
|
if (this.tabsCurr == 1) getStoreCategory(259, {
|
|
sale_type: 2
|
|
}).then(res => {
|
|
this.initStoreCate(res);
|
|
})
|
|
else if (this.tabsCurr == 2 && this.subCurr == 1) merClassifly().then(res => {
|
|
this.store_category = [{
|
|
category_name: '全部',
|
|
merchant_category_id: '',
|
|
background: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/def/0bc7a202404021652194310.png'
|
|
}, ...res.data];
|
|
})
|
|
else getCategoryIndexList({
|
|
mer_type: this.where.mer_type,
|
|
sale_type: this.where.sale_type
|
|
}).then(res => {
|
|
this.initStoreCate(res);
|
|
})
|
|
},
|
|
initStoreCate(res) {
|
|
this.store_category = [{
|
|
cate_name: '全部',
|
|
pic: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/def/0bc7a202404021652194310.png',
|
|
store_category_id: ''
|
|
}, ...res.data];
|
|
this.store_category_children = this.store_category[0].children || [];
|
|
this.store_category_children.unshift({
|
|
cate_name: '全部',
|
|
store_category_id: ''
|
|
})
|
|
},
|
|
getProductslist(reLoad = false, stop = false) {
|
|
if (reLoad) {
|
|
this.where.page = 1;
|
|
this.hostProduct = [];
|
|
this.isLoading = 0;
|
|
}
|
|
if (this.isLoading == -1) return;
|
|
this.isLoading = 1;
|
|
if (this.where.order) this.where.rand = 0;
|
|
else this.where.rand = 1;
|
|
getProductslist(this.where, true).then(res => {
|
|
this.where.limit = res.data.limit
|
|
this.where.page = res.data.page
|
|
this.isTriggered = false;
|
|
if (reLoad) this.hostProduct = [];
|
|
this.hostProduct = [...this.hostProduct, ...res.data.list];
|
|
this.isLoading = 0;
|
|
if (res.data.list.length < this.where.limit) this.isLoading = -1;
|
|
this.where.page++;
|
|
})
|
|
},
|
|
storeMerchantList(reLoad = false, stop) {
|
|
if (reLoad) {
|
|
this.where.page = 1;
|
|
this.shopList = [];
|
|
this.isLoading = 0;
|
|
}
|
|
if (this.isLoading == -1) return;
|
|
this.isLoading = 1;
|
|
storeMerchantList(this.where).then(res => {
|
|
this.isTriggered = false;
|
|
this.shopList = [...this.shopList, ...res.data.list];
|
|
this.isLoading = 0;
|
|
if (res.data.list.length < this.where.limit) this.isLoading = -1;
|
|
this.where.page++;
|
|
})
|
|
},
|
|
goDetail(item) {
|
|
goShopDetail(item, this.uid, 2).then(res => {
|
|
if (this.isLogin) {
|
|
initiateAssistApi(item.activity_id).then(res => {
|
|
let id = res.data.product_assist_set_id;
|
|
uni.hideLoading();
|
|
uni.navigateTo({
|
|
url: `/pages/activity/assist_detail/index?id=${id}&sale_type=2`
|
|
});
|
|
}).catch((err) => {
|
|
uni.showToast({
|
|
title: err,
|
|
icon: 'none'
|
|
})
|
|
});
|
|
} else {
|
|
toLogin();
|
|
}
|
|
})
|
|
},
|
|
// 进店
|
|
goStore(id) {
|
|
uni.navigateTo({
|
|
url: `/pages/store/home/index?id=${id}&sale_type=${this.where.sale_type}`
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
page {
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
.wholeSale {
|
|
.wholeSale-header {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 90;
|
|
margin-bottom: 20rpx;
|
|
|
|
.wholeSale-header-wrap {
|
|
background-color: #40AE36;
|
|
}
|
|
|
|
.wholeSale-header-search-wrap {
|
|
position: sticky;
|
|
top: calc(82rpx + var(--status-bar-height));
|
|
transition: height .5s;
|
|
overflow: hidden;
|
|
padding: 30rpx 20rpx 0;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.scrollview {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 98rpx;
|
|
padding-left: 32rpx;
|
|
|
|
.scrollview-item {
|
|
margin-right: 30rpx;
|
|
font-size: 28rpx;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.scrollview-active {
|
|
position: relative;
|
|
font-weight: bold;
|
|
font-size: 36rpx;
|
|
color: #FFFFFF;
|
|
|
|
&::after {
|
|
content: "";
|
|
display: inline-block;
|
|
position: absolute;
|
|
bottom: -6rpx;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 100%;
|
|
height: 6rpx;
|
|
background-color: #FFFFFF;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.wholeSale-con {
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.search_content {
|
|
margin-bottom: 40rpx;
|
|
height: 70rpx;
|
|
padding: 2px 2px 2px 21.05rpx;
|
|
border-radius: 80rpx;
|
|
background: #EDEFF2;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
|
|
.search_content_wrap {
|
|
width: 100%;
|
|
|
|
.icon-sousuo {
|
|
font-size: 26.32rpx;
|
|
font-weight: bold;
|
|
color: #c8c7c6;
|
|
margin-right: 17.54rpx;
|
|
}
|
|
|
|
input {
|
|
width: 80%;
|
|
}
|
|
}
|
|
|
|
.search_btn {
|
|
width: 106rpx;
|
|
height: 60rpx;
|
|
line-height: 60rpx;
|
|
background: #40AE36;
|
|
border-radius: 100px;
|
|
font-size: 28rpx;
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
.category {
|
|
width: 100%;
|
|
overflow: auto;
|
|
position: relative;
|
|
padding-right: 70rpx;
|
|
|
|
.category-wrap {
|
|
display: flex;
|
|
padding-bottom: 20rpx;
|
|
height: 192rpx;
|
|
|
|
.category-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-right: 38rpx;
|
|
|
|
text {
|
|
margin-top: 16rpx;
|
|
font-size: 24rpx;
|
|
color: #666666;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.category-item-text {
|
|
width: 120rpx;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
.category-item-active {
|
|
position: relative;
|
|
|
|
.category-item-img {
|
|
border: 2px solid #40AE36;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
text {
|
|
background-color: #40AE36;
|
|
color: #fff;
|
|
padding: 2rpx 10rpx 6rpx 10rpx;
|
|
border-radius: 50rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
.category-all {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
height: 100%;
|
|
background-color: #f3f3f3;
|
|
z-index: 10;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
font-size: 24rpx;
|
|
border-radius: 4rpx;
|
|
width: 70rpx;
|
|
color: #919191;
|
|
}
|
|
}
|
|
|
|
.cate {
|
|
width: 100%;
|
|
overflow: auto;
|
|
margin-bottom: 30rpx;
|
|
|
|
.cate-wrap {
|
|
display: flex;
|
|
padding-bottom: 8rpx;
|
|
|
|
.cate-item {
|
|
|
|
text {
|
|
padding: 4rpx 16rpx;
|
|
white-space: nowrap;
|
|
font-size: 30rpx;
|
|
color: #333;
|
|
}
|
|
}
|
|
|
|
.cate-item-active {
|
|
text {
|
|
color: #40AE36;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.popup-wrap {
|
|
background-color: #fff;
|
|
padding: 20rpx;
|
|
|
|
.popup-wrap-title {
|
|
font-size: 36rpx;
|
|
color: #333;
|
|
font-weight: bold;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.popup-wrap-category {
|
|
width: 100%;
|
|
|
|
.popup-wrap-category-wrap {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
.popup-wrap-category-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 0 20rpx 20rpx 0;
|
|
|
|
&:nth-child(5n) {
|
|
margin-right: 0;
|
|
}
|
|
|
|
text {
|
|
margin-top: 16rpx;
|
|
font-size: 24rpx;
|
|
color: #666666;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.popup-wrap-category-item-text {
|
|
width: 120rpx;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
.popup-wrap-category-item-active {
|
|
position: relative;
|
|
|
|
.popup-wrap-category-item-img {
|
|
border: 2px solid #40AE36;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
text {
|
|
background-color: #40AE36;
|
|
color: #fff;
|
|
padding: 2rpx 10rpx 6rpx 10rpx;
|
|
border-radius: 50rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.comprehensive {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 20rpx 50rpx;
|
|
|
|
[class^=comprehensive-] {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
text {
|
|
margin-right: 12rpx;
|
|
font-size: 26rpx;
|
|
color: #666666;
|
|
}
|
|
|
|
image {
|
|
width: 28rpx;
|
|
height: 28rpx;
|
|
}
|
|
|
|
.loudou {
|
|
width: 24rpx;
|
|
height: 24rpx;
|
|
}
|
|
}
|
|
|
|
.comp-color {
|
|
|
|
text {
|
|
margin-right: 12rpx;
|
|
font-size: 26rpx;
|
|
color: #40ae36 !important;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
.pictrue {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
color: #999;
|
|
|
|
image {
|
|
width: 414rpx;
|
|
height: 305rpx;
|
|
}
|
|
}
|
|
|
|
.goods_list {
|
|
.goods {
|
|
height: 200rpx;
|
|
margin: 20rpx auto;
|
|
margin-top: 0;
|
|
background-color: #fff;
|
|
border-radius: 24rpx;
|
|
display: flex;
|
|
|
|
.avatar {
|
|
height: 160rpx;
|
|
width: 160rpx;
|
|
margin: 20rpx;
|
|
border-radius: 12rpx;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.content {
|
|
margin: 20rpx 0;
|
|
width: 520rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
|
|
.content-head {
|
|
width: 500rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
|
|
.title {
|
|
width: 360rpx;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
.content-two {
|
|
display: flex;
|
|
font-size: 24rpx;
|
|
color: #666;
|
|
align-items: center;
|
|
|
|
.star {
|
|
position: relative;
|
|
width: 111rpx;
|
|
height: 19rpx;
|
|
margin-right: 10rpx;
|
|
background: url(../columnGoods/images/star.png) left top/100% 100% no-repeat;
|
|
overflow: hidden;
|
|
|
|
view {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: url(../columnGoods/images/star_active.png) left top/111rpx 19rpx no-repeat;
|
|
|
|
&.star_purple {
|
|
background: url(../columnGoods/images/star_active_purple.png) left top/111rpx 19rpx no-repeat;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style> |