2024-12-17 03:09:39 +00:00
|
|
|
<template>
|
|
|
|
<view class="flex-row relative page">
|
2025-01-09 02:50:05 +00:00
|
|
|
<view class="flex-row justify-between items-center section_2 pos">
|
2024-12-17 03:09:39 +00:00
|
|
|
<text class="text">商品</text>
|
2025-03-02 03:27:11 +00:00
|
|
|
<view class="flex-row items-center section_3" @click="goToSearch">
|
2024-12-17 03:09:39 +00:00
|
|
|
<image
|
|
|
|
class="image"
|
2025-01-09 02:50:05 +00:00
|
|
|
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FODjBDedI-sousuo.png"
|
2024-12-17 03:09:39 +00:00
|
|
|
/>
|
2025-03-02 03:27:11 +00:00
|
|
|
<input class="text-wrapper" placeholder="搜索商品" disabled />
|
2024-12-17 03:09:39 +00:00
|
|
|
</view>
|
|
|
|
</view>
|
2025-03-02 03:27:11 +00:00
|
|
|
|
|
|
|
<!-- <image
|
2025-01-09 02:50:05 +00:00
|
|
|
class="image_2 pos_2"
|
|
|
|
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FloZarLZD-%E6%B5%8B%E8%AF%95%E6%8F%92%E5%85%A5.jpg"
|
2025-03-02 03:27:11 +00:00
|
|
|
/> -->
|
|
|
|
<carousel class="pos_2" :img-list="imgList" url-key="url" @selected="selectedBanner"/>
|
|
|
|
|
2025-01-09 02:50:05 +00:00
|
|
|
<!-- 类别列表 -->
|
|
|
|
<view class="flex-col justify-start items-center section_4 pos_3">
|
|
|
|
<!-- <view class="flex-col"> -->
|
2025-03-02 03:27:11 +00:00
|
|
|
<view class="my-aside">
|
2025-01-09 02:50:05 +00:00
|
|
|
<view class="flex-col items-center self-stretch group"
|
|
|
|
v-for="(item, index) in sort"
|
|
|
|
:key="index"
|
|
|
|
@click="changeTypes(item , index)"
|
|
|
|
>
|
|
|
|
<image
|
|
|
|
:style="changeImgStyle(index)"
|
|
|
|
class="image_3"
|
|
|
|
:src="item.imgurl"
|
|
|
|
/>
|
|
|
|
<text class="font_2 text_4" :style="FontsStyle(index)">{{ item.name }}</text>
|
|
|
|
</view>
|
2025-03-01 05:33:28 +00:00
|
|
|
</view>
|
2025-01-09 02:50:05 +00:00
|
|
|
<!-- </view> -->
|
2024-12-17 03:09:39 +00:00
|
|
|
</view>
|
2025-01-09 02:50:05 +00:00
|
|
|
<!-- 商品列表 -->
|
|
|
|
<view class="flex-col pos_5">
|
2025-03-02 03:27:11 +00:00
|
|
|
<view class="good-list">
|
2025-01-09 02:50:05 +00:00
|
|
|
<view class="flex-row list-item mt-9" v-for="(item, index) in productList" :key="index" @click="goToProduct(item)">
|
2024-12-17 03:09:39 +00:00
|
|
|
<image
|
|
|
|
class="self-center image_4"
|
2025-01-09 02:50:05 +00:00
|
|
|
:src="item.goodImg.split(';')[0]"
|
2024-12-17 03:09:39 +00:00
|
|
|
/>
|
2025-01-09 02:50:05 +00:00
|
|
|
<view class="flex-col items-start self-center group_1">
|
|
|
|
<text class="font">{{ item.name }}</text>
|
|
|
|
<text class="font_3 mt-9">{{ item.intro }}</text>
|
|
|
|
<text class="font_4 text_5 text_1 mt-9">¥{{ item.price }}</text>
|
2025-03-02 03:27:11 +00:00
|
|
|
</view>
|
2025-02-27 06:22:52 +00:00
|
|
|
<!-- <image
|
2024-12-17 03:09:39 +00:00
|
|
|
class="self-start image_5"
|
2025-01-09 02:50:05 +00:00
|
|
|
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FhuDBpAGx-add.png"
|
|
|
|
@click.stop
|
2025-02-27 06:22:52 +00:00
|
|
|
/> -->
|
2025-03-02 03:27:11 +00:00
|
|
|
|
|
|
|
|
2024-12-17 03:09:39 +00:00
|
|
|
</view>
|
2025-03-02 03:27:11 +00:00
|
|
|
</view>
|
2024-12-17 03:09:39 +00:00
|
|
|
</view>
|
2025-01-09 02:50:05 +00:00
|
|
|
<text class="font text_3 pos_4">{{ product_type.type }}</text>
|
2024-12-17 03:09:39 +00:00
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { ref,onMounted, toRaw } from 'vue';
|
|
|
|
import { baseUrl, testUrl , suiUrl} from '@/api/request';
|
2025-01-13 06:38:48 +00:00
|
|
|
import { onLoad,onPullDownRefresh } from '@dcloudio/uni-app';
|
2025-03-02 03:27:11 +00:00
|
|
|
import carousel from '@/components/vear-carousel/vear-carousel'
|
|
|
|
|
2024-12-17 03:09:39 +00:00
|
|
|
const currentColor = ref(0);
|
|
|
|
const sort =ref([{}]) //商品类别对象数组
|
|
|
|
const headerList = ref([{}]) //类别标题和介绍
|
2025-03-02 03:27:11 +00:00
|
|
|
const productList = ref([{}]) //类别下对应的商品
|
|
|
|
const cookie = wx.getStorageSync("cookie")
|
|
|
|
|
2025-01-09 02:50:05 +00:00
|
|
|
const product_type = ref({
|
|
|
|
type: "材料包"
|
|
|
|
})
|
2025-03-02 03:27:11 +00:00
|
|
|
|
2024-12-17 03:09:39 +00:00
|
|
|
onMounted( async () => {
|
|
|
|
console.log('cookie--->',cookie);
|
|
|
|
})
|
2025-01-13 06:38:48 +00:00
|
|
|
onLoad( async (options)=>{
|
|
|
|
await Getsort()
|
|
|
|
await changeTypes( sort.value[0] , 0 ) //首先获取最开始的类别
|
|
|
|
await getFonts() //获取字体
|
|
|
|
})
|
|
|
|
onPullDownRefresh( async ()=>{ //下拉刷新
|
|
|
|
await Getsort()
|
|
|
|
await changeTypes( sort.value[0] , 0 ) //首先获取最开始的类别
|
|
|
|
setTimeout(()=>{
|
|
|
|
uni.stopPullDownRefresh() //停止下拉刷新
|
|
|
|
},1000)
|
|
|
|
})
|
2024-12-17 03:09:39 +00:00
|
|
|
//获取商品分类
|
|
|
|
const Getsort = async ()=>{
|
|
|
|
const res = await uni.request({
|
|
|
|
url: baseUrl + '/category/list',
|
|
|
|
method:'POST',
|
|
|
|
header: {
|
|
|
|
cookie,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if(res.data.code === 1){
|
|
|
|
for(let key in res.data.data) {
|
|
|
|
sort.value[key] = {//类别列表
|
|
|
|
name : res.data.data[key].typeName,
|
|
|
|
imgurl : res.data.data[key].typeUrl,
|
|
|
|
id : res.data.data[key].id
|
|
|
|
}//标题列表
|
|
|
|
headerList.value[key] = {
|
|
|
|
name : res.data.data[key].typeName,
|
|
|
|
typeIntro : res.data.data[key].typeIntro
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
uni.showToast({ //提示请求错误
|
|
|
|
title: '请求商品分类错误',
|
|
|
|
icon: 'none',
|
|
|
|
duration: 2000
|
|
|
|
})
|
|
|
|
}
|
|
|
|
console.log('获取商品分类==>',res.data);
|
|
|
|
}
|
|
|
|
//更改类别
|
|
|
|
const changeTypes = async (item , index) =>{
|
2025-01-09 02:50:05 +00:00
|
|
|
currentColor.value = index
|
|
|
|
product_type.value.type = item.name
|
2024-12-17 03:09:39 +00:00
|
|
|
const res = await uni.request({
|
|
|
|
url: baseUrl + '/category/list/type',
|
|
|
|
method: 'POST',
|
|
|
|
data: {
|
|
|
|
id : item.id
|
|
|
|
},
|
|
|
|
header:{
|
|
|
|
cookie,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if(res.data.code === 1) {
|
|
|
|
productList.value = res.data.data[item.id]
|
|
|
|
} else {
|
|
|
|
uni.showToast({ //商品请求错误
|
|
|
|
title: '更改类别错误',
|
|
|
|
icon: 'none',
|
|
|
|
duration: 2000
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2025-01-09 02:50:05 +00:00
|
|
|
//点击后颜色变为红色
|
|
|
|
const FontsStyle = (index) => ({
|
|
|
|
color: currentColor.value === index ? '#C35C5D' : '#727272'
|
|
|
|
})
|
|
|
|
//点击后类别图片有阴影
|
|
|
|
const changeImgStyle = (index) => ({
|
|
|
|
filter: currentColor.value === index ? 'drop-shadow(0rpx 7.5rpx 3.75rpx #acacac)' : 'none'
|
2024-12-17 03:09:39 +00:00
|
|
|
});
|
2025-01-09 02:50:05 +00:00
|
|
|
//跳转商品详情
|
2024-12-17 03:09:39 +00:00
|
|
|
const goToProduct = (item) => {
|
2025-01-09 02:50:05 +00:00
|
|
|
console.log('跳转商品详情的item--->',item);
|
2024-12-17 03:09:39 +00:00
|
|
|
uni.navigateTo({
|
2025-01-09 02:50:05 +00:00
|
|
|
url: '../../../pages/store-home/ProductDetails/ProductDetails?gid=' + JSON.stringify(item.id)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
const getFonts = () => { //导入字体
|
|
|
|
uni.loadFontFace({
|
|
|
|
family: 'FangZhengFonts',
|
|
|
|
source: `url("https://carbon2.obs.cn-north-4.myhuaweicloud.com/fonts/FangZhengFonts.TTF")`,
|
|
|
|
success: (res) => {
|
|
|
|
console.log('success', res);
|
|
|
|
},
|
|
|
|
fail: (err) => {
|
|
|
|
console.log('err', err);
|
|
|
|
}
|
2024-12-17 03:09:39 +00:00
|
|
|
})
|
|
|
|
}
|
2025-03-02 03:27:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const imgList = ref([{
|
|
|
|
url: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FVZJcndFL-VCG211334705187.png',
|
|
|
|
id: 1
|
|
|
|
},{
|
|
|
|
url: ' https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FplnBXSNq-VCG211345185434.png',
|
|
|
|
id: 2
|
|
|
|
},{
|
|
|
|
url: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FpWmCgSml-VCG21gic13424447.png',
|
|
|
|
id: 3
|
|
|
|
},{
|
|
|
|
url: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FbGthWnIG-VCG211247054746.png',
|
|
|
|
id: 4
|
|
|
|
},])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const goToSearch = () => {
|
|
|
|
uni.navigateTo({
|
|
|
|
url: '../../workshop/searchGood/searchGood?type=1'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-12-17 03:09:39 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2025-03-01 05:33:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
display: none;
|
2025-01-09 02:50:05 +00:00
|
|
|
}
|
2025-03-01 05:33:28 +00:00
|
|
|
|
2025-03-02 03:27:11 +00:00
|
|
|
.good-list {
|
|
|
|
overflow: auto;
|
|
|
|
height: 750rpx;
|
|
|
|
}
|
|
|
|
|
2025-03-01 05:33:28 +00:00
|
|
|
.my-aside {
|
2025-03-02 03:27:11 +00:00
|
|
|
overflow: auto;
|
|
|
|
height: 800rpx;
|
2025-03-01 05:33:28 +00:00
|
|
|
}
|
|
|
|
|
2024-12-17 03:09:39 +00:00
|
|
|
.mt-9 {
|
|
|
|
margin-top: 16.88rpx;
|
|
|
|
}
|
|
|
|
.page {
|
|
|
|
background-color: #ffffff;
|
2025-01-09 02:50:05 +00:00
|
|
|
background-image: url('https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FQfLHXSAU-feiyigongfangbeijin.png');
|
2024-12-17 03:09:39 +00:00
|
|
|
background-size: 100% 100%;
|
|
|
|
background-repeat: no-repeat;
|
2025-01-09 02:50:05 +00:00
|
|
|
height: 100vh;
|
2024-12-17 03:09:39 +00:00
|
|
|
width: 100%;
|
2025-01-09 02:50:05 +00:00
|
|
|
overflow: hidden;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
|
|
|
.section_2 {
|
2025-03-02 03:27:11 +00:00
|
|
|
padding: 20rpx 35.41rpx 23.75rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
background-color: #ebe7e4;
|
|
|
|
}
|
2025-01-09 02:50:05 +00:00
|
|
|
.pos {
|
2024-12-17 03:09:39 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
.text {
|
|
|
|
color: #000000;
|
2025-03-02 03:27:11 +00:00
|
|
|
font-size: 35rpx;
|
2025-01-09 02:50:05 +00:00
|
|
|
font-family: FangZhengFonts;
|
2025-03-02 03:27:11 +00:00
|
|
|
line-height: 35.66rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
|
|
|
.section_3 {
|
|
|
|
margin-right: 38.96rpx;
|
|
|
|
padding: 5.49rpx 12.99rpx 5.76rpx;
|
|
|
|
background-color: #f2eeeb;
|
2025-03-02 03:27:11 +00:00
|
|
|
height: 70rpx;
|
|
|
|
width: 550rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
border: solid 1.88rpx #fffef8;
|
2025-03-02 03:27:11 +00:00
|
|
|
border-radius: 28.13rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
|
|
|
.image {
|
2025-03-02 03:27:11 +00:00
|
|
|
width: 60.63rpx;
|
|
|
|
height: 45rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
2025-01-09 02:50:05 +00:00
|
|
|
.text-wrapper {
|
2025-03-02 03:27:11 +00:00
|
|
|
padding: 0 10rpx 0;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
|
|
|
.image_2 {
|
2025-03-02 03:27:11 +00:00
|
|
|
// width: 100vw;
|
|
|
|
// height: 900rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
2025-01-09 02:50:05 +00:00
|
|
|
.pos_2 {
|
2024-12-17 03:09:39 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2025-03-02 03:27:11 +00:00
|
|
|
top: 118.75rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
|
|
|
.section_4 {
|
2025-01-09 02:50:05 +00:00
|
|
|
padding: 7.5rpx 0 0rpx;
|
|
|
|
background-color: #f4f3f1;
|
2025-03-01 05:33:28 +00:00
|
|
|
width: 119.75rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
2025-01-09 02:50:05 +00:00
|
|
|
.pos_3 {
|
2024-12-17 03:09:39 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2025-01-09 02:50:05 +00:00
|
|
|
top: 566.25rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
|
|
|
.group {
|
2025-01-09 02:50:05 +00:00
|
|
|
margin: 0 2.44rpx 20rpx 0;
|
|
|
|
// margin-right: 2.44rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
|
|
|
.image_3 {
|
2025-01-09 02:50:05 +00:00
|
|
|
// filter: drop-shadow(0rpx 7.5rpx 3.75rpx #acacac); //点击图片有阴影
|
|
|
|
width: 90rpx;
|
|
|
|
height: 90rpx;
|
|
|
|
margin-bottom: 10rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
|
|
|
.font_2 {
|
2025-01-09 02:50:05 +00:00
|
|
|
font-size: 26.25rpx;
|
|
|
|
font-family: FangZhengFonts;
|
|
|
|
line-height: 24.41rpx;
|
|
|
|
color: #000000;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
2025-01-09 02:50:05 +00:00
|
|
|
.text_4 {
|
|
|
|
font-size: 12px;
|
|
|
|
color: #727272;
|
|
|
|
line-height: 25.43rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
2025-01-09 02:50:05 +00:00
|
|
|
.pos_5 {
|
2024-12-17 03:09:39 +00:00
|
|
|
position: absolute;
|
2025-01-09 02:50:05 +00:00
|
|
|
right: 34.63rpx;
|
|
|
|
top: 628.13rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
|
|
|
.list-item {
|
2025-01-09 02:50:05 +00:00
|
|
|
width: 580rpx;
|
|
|
|
padding: 17.53rpx 13.89rpx 18.23rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
background-color: #ffffff;
|
|
|
|
border-radius: 9.38rpx;
|
|
|
|
}
|
|
|
|
.list-item:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
.image_4 {
|
|
|
|
border-radius: 9.38rpx;
|
2025-01-09 02:50:05 +00:00
|
|
|
width: 121.88rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
height: 112.5rpx;
|
|
|
|
}
|
2025-01-09 02:50:05 +00:00
|
|
|
.group_1 {
|
|
|
|
margin-left: 21.68rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
2025-01-09 02:50:05 +00:00
|
|
|
.font {
|
2024-12-17 03:09:39 +00:00
|
|
|
font-size: 30rpx;
|
2025-01-09 02:50:05 +00:00
|
|
|
font-family: FangZhengFonts;
|
2024-12-17 03:09:39 +00:00
|
|
|
line-height: 28.95rpx;
|
2025-01-09 02:50:05 +00:00
|
|
|
color: #000000;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
|
|
|
.font_3 {
|
|
|
|
font-size: 22.5rpx;
|
2025-01-09 02:50:05 +00:00
|
|
|
font-family: FangZhengFonts;
|
2024-12-17 03:09:39 +00:00
|
|
|
line-height: 21.88rpx;
|
|
|
|
color: #727272;
|
2025-01-09 02:50:05 +00:00
|
|
|
width: 180px;
|
|
|
|
word-wrap: break-word;
|
2024-12-17 03:09:39 +00:00
|
|
|
}
|
|
|
|
.font_4 {
|
2025-01-09 02:50:05 +00:00
|
|
|
font-size: 26.25rpx;
|
|
|
|
font-family: FangZhengFonts;
|
|
|
|
line-height: 17.53rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
color: #ff0000;
|
|
|
|
}
|
2025-01-09 02:50:05 +00:00
|
|
|
.text_5 {
|
2024-12-17 03:09:39 +00:00
|
|
|
-webkit-text-stroke: 1.88rpx #ff000040;
|
|
|
|
}
|
2025-01-09 02:50:05 +00:00
|
|
|
.text_1 {
|
|
|
|
margin-left: 3.43rpx;
|
|
|
|
}
|
2024-12-17 03:09:39 +00:00
|
|
|
.image_5 {
|
2025-01-09 02:50:05 +00:00
|
|
|
margin: 37.77rpx 2.8rpx 0 0.85rpx;
|
2024-12-17 03:09:39 +00:00
|
|
|
border-radius: 9.38rpx;
|
|
|
|
width: 52.5rpx;
|
|
|
|
height: 48.75rpx;
|
|
|
|
}
|
2025-01-09 02:50:05 +00:00
|
|
|
.text_3 {
|
|
|
|
color: #c35c5d;
|
|
|
|
line-height: 29.06rpx;
|
|
|
|
}
|
|
|
|
.pos_4 {
|
|
|
|
position: absolute;
|
|
|
|
left: 142.29rpx;
|
|
|
|
top: 585.94rpx;
|
|
|
|
}
|
2024-12-17 03:09:39 +00:00
|
|
|
@import url(../../../common/css/global.css);
|
|
|
|
</style>
|