2024-08-07 10:31:42 +08:00
|
|
|
|
<!-- 商品分类列表 -->
|
|
|
|
|
<template>
|
2024-10-29 11:14:45 +08:00
|
|
|
|
<s-layout title="分类" tabbar="/pages/index/category" :bgStyle="{ color: '#fff' }">
|
|
|
|
|
<view class="s-category">
|
|
|
|
|
<view class="three-level-wrap ss-flex ss-col-top" :style="[{ height: pageHeight + 'px' }]">
|
|
|
|
|
<!-- 商品分类(左) -->
|
|
|
|
|
<scroll-view class="side-menu-wrap" scroll-y :style="[{ height: pageHeight + 'px' }]">
|
|
|
|
|
<view class="menu-item ss-flex" v-for="(item, index) in state.categoryList" :key="item.id"
|
2024-11-13 17:16:25 +08:00
|
|
|
|
:class="[
|
|
|
|
|
{ 'menu-item-active': index === state.activeMenu && state.themeType == '' },
|
|
|
|
|
{ [state.themeType + 'vv']: index === state.activeMenu && state.themeType }
|
|
|
|
|
]"
|
|
|
|
|
@tap="onMenu(index)">
|
|
|
|
|
<view class="menu-title ss-line-1" :class="state.themeType && index === state.activeMenu ? `${state.themeType}v` : ''">
|
2024-10-29 11:14:45 +08:00
|
|
|
|
{{ item.name }}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</scroll-view>
|
|
|
|
|
<!-- 商品分类(右) -->
|
|
|
|
|
<scroll-view class="goods-list-box" scroll-y :style="[{ height: pageHeight + 'px' }]"
|
|
|
|
|
v-if="state.categoryList?.length">
|
|
|
|
|
|
2024-10-30 18:49:19 +08:00
|
|
|
|
|
2024-10-29 11:14:45 +08:00
|
|
|
|
<!-- <image v-if="state.categoryList[state.activeMenu].picUrl" class="banner-img" :src="sheep.$url.cdn(state.categoryList[state.activeMenu].picUrl)" mode="widthFix"/> -->
|
|
|
|
|
<first-one v-if="state.style === 'first_one'" :pagination="state.pagination" />
|
|
|
|
|
<first-two v-if="state.style === 'first_two'" :pagination="state.pagination" />
|
2024-10-30 18:49:19 +08:00
|
|
|
|
<!-- 样式1 -->
|
2024-11-08 17:29:51 +08:00
|
|
|
|
<second-one v-show="state.typeId === '1'" :data="state.categoryList"
|
|
|
|
|
:activeMenu="state.activeMenu" />
|
2024-10-30 18:49:19 +08:00
|
|
|
|
<!-- 样式2 -->
|
2024-11-08 17:29:51 +08:00
|
|
|
|
<second-second ref="secondRef" v-show="state.typeId === '2'" :data="state.categoryList"
|
2024-11-13 17:16:25 +08:00
|
|
|
|
:activeMenu="state.activeMenu" :vl="state.themeType" />
|
2024-10-30 18:49:19 +08:00
|
|
|
|
|
2024-10-29 11:14:45 +08:00
|
|
|
|
<uni-load-more v-if="
|
|
|
|
|
(state.style === 'first_one' || state.style === 'first_two') &&
|
|
|
|
|
state.pagination.total > 0
|
|
|
|
|
" :status="state.loadStatus" :content-text="{
|
|
|
|
|
contentdown: '点击查看更多',
|
|
|
|
|
}" @tap="loadMore" />
|
|
|
|
|
</scroll-view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</s-layout>
|
2024-08-07 10:31:42 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2024-10-29 11:14:45 +08:00
|
|
|
|
import secondOne from './components/second-one.vue';
|
2024-10-30 18:49:19 +08:00
|
|
|
|
import secondSecond from './components/second-second.vue';
|
2024-10-29 11:14:45 +08:00
|
|
|
|
import firstOne from './components/first-one.vue';
|
|
|
|
|
import firstTwo from './components/first-two.vue';
|
|
|
|
|
import sheep from '@/sheep';
|
|
|
|
|
import CategoryApi from '@/sheep/api/product/category';
|
|
|
|
|
import SpuApi from '@/sheep/api/product/spu';
|
|
|
|
|
import {
|
|
|
|
|
onLoad,
|
|
|
|
|
onReachBottom
|
|
|
|
|
} from '@dcloudio/uni-app';
|
|
|
|
|
import {
|
|
|
|
|
computed,
|
2024-10-30 18:49:19 +08:00
|
|
|
|
reactive,
|
|
|
|
|
ref
|
2024-10-29 11:14:45 +08:00
|
|
|
|
} from 'vue';
|
|
|
|
|
import _ from 'lodash';
|
|
|
|
|
import {
|
|
|
|
|
handleTree
|
|
|
|
|
} from '@/sheep/util';
|
2024-11-13 17:16:25 +08:00
|
|
|
|
const app = computed(() => sheep.$store('app'));
|
2024-10-29 11:14:45 +08:00
|
|
|
|
const state = reactive({
|
|
|
|
|
style: 'second_one', // first_one(一级 - 样式一), first_two(二级 - 样式二), second_one(二级)
|
|
|
|
|
categoryList: [], // 商品分类树
|
|
|
|
|
activeMenu: 0, // 选中的一级菜单,在 categoryList 的下标
|
|
|
|
|
|
|
|
|
|
pagination: {
|
|
|
|
|
// 商品分页
|
|
|
|
|
list: [], // 商品列表
|
|
|
|
|
total: [], // 商品总数
|
|
|
|
|
pageNo: 1,
|
|
|
|
|
pageSize: 6,
|
|
|
|
|
},
|
|
|
|
|
loadStatus: '',
|
2024-11-13 17:16:25 +08:00
|
|
|
|
typeId:'1',
|
|
|
|
|
themeType:app.value.platform.themeType
|
2024-10-29 11:14:45 +08:00
|
|
|
|
});
|
2024-11-08 17:29:51 +08:00
|
|
|
|
state.typeId = app.value.platform.goodsType;//判断是什么样式
|
|
|
|
|
// console.log(app.value.platform.goodsType,"------------------------")
|
2024-10-30 18:49:19 +08:00
|
|
|
|
const secondRef = ref(null);
|
2024-10-29 11:14:45 +08:00
|
|
|
|
|
|
|
|
|
const {
|
|
|
|
|
safeArea
|
|
|
|
|
} = sheep.$platform.device;
|
|
|
|
|
const pageHeight = computed(() => safeArea.height - 44 - 50);
|
|
|
|
|
|
|
|
|
|
// 加载商品分类
|
|
|
|
|
async function getList() {
|
|
|
|
|
const {
|
|
|
|
|
code,
|
|
|
|
|
data
|
|
|
|
|
} = await CategoryApi.getCategoryList();
|
|
|
|
|
if (code !== 0) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
state.categoryList = handleTree(data);
|
2024-10-30 18:49:19 +08:00
|
|
|
|
// console.log(state.categoryList,"ssssssssssssss")
|
2024-10-29 11:14:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 选中菜单
|
|
|
|
|
const onMenu = (val) => {
|
|
|
|
|
state.activeMenu = val;
|
2024-10-30 18:49:19 +08:00
|
|
|
|
if (state.style === 'second_one' && secondRef.value) {
|
2024-11-13 17:16:25 +08:00
|
|
|
|
secondRef.value.onFilterItem(state.categoryList[state.activeMenu].children[0].id,0);
|
2024-10-30 18:49:19 +08:00
|
|
|
|
}
|
2024-10-29 11:14:45 +08:00
|
|
|
|
if (state.style === 'first_one' || state.style === 'first_two') {
|
|
|
|
|
state.pagination.pageNo = 1;
|
|
|
|
|
state.pagination.list = [];
|
|
|
|
|
state.pagination.total = 0;
|
|
|
|
|
getGoodsList();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 加载商品列表
|
|
|
|
|
async function getGoodsList() {
|
|
|
|
|
// 加载列表
|
|
|
|
|
state.loadStatus = 'loading';
|
|
|
|
|
const res = await SpuApi.getSpuPage({
|
|
|
|
|
categoryId: state.categoryList[state.activeMenu].id,
|
|
|
|
|
pageNo: state.pagination.pageNo,
|
|
|
|
|
pageSize: state.pagination.pageSize,
|
|
|
|
|
});
|
|
|
|
|
if (res.code !== 0) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// 合并列表
|
|
|
|
|
state.pagination.list = _.concat(state.pagination.list, res.data.list);
|
|
|
|
|
state.pagination.total = res.data.total;
|
|
|
|
|
state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 加载更多商品
|
|
|
|
|
function loadMore() {
|
|
|
|
|
if (state.loadStatus === 'noMore') {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
state.pagination.pageNo++;
|
|
|
|
|
getGoodsList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onLoad(async () => {
|
|
|
|
|
await getList();
|
|
|
|
|
// 如果是 first 风格,需要加载商品分页
|
|
|
|
|
if (state.style === 'first_one' || state.style === 'first_two') {
|
|
|
|
|
onMenu(0);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
onReachBottom(() => {
|
|
|
|
|
loadMore();
|
|
|
|
|
});
|
2024-08-07 10:31:42 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2024-11-13 17:16:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-10-29 11:14:45 +08:00
|
|
|
|
.s-category {
|
|
|
|
|
:deep() {
|
|
|
|
|
.side-menu-wrap {
|
2024-10-30 18:49:19 +08:00
|
|
|
|
width: 170rpx;
|
2024-10-29 11:14:45 +08:00
|
|
|
|
height: 100%;
|
|
|
|
|
// padding-left: 12rpx;
|
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
|
|
|
|
|
|
.menu-item {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 88rpx;
|
|
|
|
|
position: relative;
|
|
|
|
|
transition: all linear 0.2s;
|
|
|
|
|
|
|
|
|
|
.menu-title {
|
|
|
|
|
line-height: 32rpx;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #333;
|
2024-10-30 18:49:19 +08:00
|
|
|
|
// margin-left: 28rpx;
|
2024-10-29 11:14:45 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 0;
|
2024-10-30 18:49:19 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
width: 100%;
|
2024-10-29 11:14:45 +08:00
|
|
|
|
&::before {
|
|
|
|
|
content: '';
|
|
|
|
|
width: 64rpx;
|
|
|
|
|
height: 12rpx;
|
|
|
|
|
background: linear-gradient(90deg,
|
|
|
|
|
var(--ui-BG-Main-gradient),
|
|
|
|
|
var(--ui-BG-Main-light)) !important;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -64rpx;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
transition: all linear 0.2s;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.menu-item-active {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
|
|
|
|
// border-radius: 20rpx 0 0 20rpx;
|
|
|
|
|
&::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 2px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
// background: radial-gradient(circle at 0 100%, transparent 20rpx, #fff 0);
|
|
|
|
|
background: rgba(236, 72, 29);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -20rpx;
|
|
|
|
|
right: 0;
|
|
|
|
|
width: 20rpx;
|
|
|
|
|
height: 20rpx;
|
|
|
|
|
background: radial-gradient(circle at 0% 0%, transparent 20rpx, #fff 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-title {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: rgba(236, 72, 29);
|
|
|
|
|
// &::before {
|
|
|
|
|
// left: 0;
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.goods-list-box {
|
|
|
|
|
background-color: #fff;
|
2024-10-30 18:49:19 +08:00
|
|
|
|
width: calc(100vw - 85px);
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
|
2024-10-29 11:14:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.banner-img {
|
|
|
|
|
width: calc(100vw - 130px);
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-11-13 17:16:25 +08:00
|
|
|
|
|
|
|
|
|
/* 主题颜色 */
|
|
|
|
|
|
|
|
|
|
.lvv{
|
|
|
|
|
color:rgba(72,204,82) !important;
|
|
|
|
|
}
|
|
|
|
|
.bluev{
|
|
|
|
|
color:rgba(28,165,233) !important;
|
|
|
|
|
}
|
|
|
|
|
.pinkv{
|
|
|
|
|
color:#ff448f !important;
|
|
|
|
|
}
|
|
|
|
|
.orangev{
|
|
|
|
|
color:#fe5c2d !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lvvv{
|
|
|
|
|
&::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 2px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background:rgba(72,204,82) !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.bluevv{
|
|
|
|
|
&::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 2px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background:rgba(28,165,233);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.pinkvv{
|
|
|
|
|
&::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 2px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background:#ff448f !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.orangevv{
|
|
|
|
|
&::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 2px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background:#fe5c2d !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-10-29 11:14:45 +08:00
|
|
|
|
</style>
|