494 lines
13 KiB
Vue
Raw Normal View History

2024-04-25 18:02:30 +08:00
<template>
<view class="content">
<up-navbar placeholder style="z-index: 10080;">
<!-- #ifdef MP-WEIXIN -->
<template #left>
2024-04-27 18:02:43 +08:00
<view style="width: 500rpx;"><up-search placeholder="请输入商品" @search="searchKeyword" v-model="keyword" :showAction="false"></up-search>
2024-04-25 18:02:30 +08:00
</view>
</template>
<!-- #endif -->
<!-- #ifndef MP-WEIXIN -->
<template #left>
<view></view>
</template>
<template #center>
2024-04-27 18:02:43 +08:00
<view style="width: 700rpx;"><up-search placeholder="请输入商品" @search="searchKeyword" v-model="keyword" :showAction="false"></up-search>
2024-04-25 18:02:30 +08:00
</view>
</template>
<!-- #endif -->
</up-navbar>
<view style="position: relative;overflow: hidden;">
<scroll-view class="head-view" scroll-x>
<view class="list">
2024-04-27 18:02:43 +08:00
<view class="item" :class="{'item-active': topActive==index}" v-for="(item, index) in 10" :key="index" @click="changeOne(item, index)">
2024-04-25 18:02:30 +08:00
<image class="c-img" src="https://cdn.uviewui.com/uview/album/1.jpg"></image>
<view class="c-text u-line-1">惠农生活{{item}}</view>
</view>
<view class="item" style="width: 80rpx;height: 20rpx;">
</view>
</view>
</scroll-view>
<view class="r-btn" @click="show=1">
<view></view>
<view></view>
<up-icon name="list"></up-icon>
</view>
</view>
<viewPopup nav v-if="show===1" @close="show=0">
<view class="cateOne">
<view class="head-title">全部分类</view>
2024-04-27 18:02:43 +08:00
<scroll-view scroll-y style="height: 600rpx;">
2024-04-25 18:02:30 +08:00
<view class="list">
2024-04-27 18:02:43 +08:00
<view class="item" :class="{'item-active': topActive==index}" v-for="(item, index) in 10" :key="index" @click="changeOne(item, index)">
2024-04-25 18:02:30 +08:00
<image class="c-img" src="https://cdn.uviewui.com/uview/album/1.jpg"></image>
<view class="c-text u-line-1">惠农生活{{item}}</view>
</view>
</view>
</scroll-view>
</view>
</viewPopup>
<view class="scroll-box">
<scroll-view class="left" scroll-y>
<view class="item u-line-1" :class="{'item-active': leftActive==index}" v-for="(item, index) in 20"
2024-04-27 18:02:43 +08:00
:key="index" @click="changeTwo(item, index)">惠农生活{{item}}</view>
2024-04-25 18:02:30 +08:00
<view style="width: 100%;height: 200rpx;"></view>
</scroll-view>
<view class="right">
<view class="classify">
<scroll-view style="height: 90rpx;" scroll-x>
<view class="classify-list">
<view class="classify-list-item u-line-1" :class="{'item-active': rightActive==index}"
2024-04-27 18:02:43 +08:00
v-for="(item, index) in 6" :key="index" @click="changeThree(item, index)">
2024-04-25 18:02:30 +08:00
牛肉
</view>
<view style="width: 70rpx;flex-shrink: 0;"></view>
</view>
</scroll-view>
<view class="done" @click="show=2">
<up-icon name="arrow-down"></up-icon>
</view>
<view class="order-by">
2024-04-27 18:02:43 +08:00
<view class="item" :class="{'order-active': where.order==''}" @click="changeOrder('')">综合</view>
<view class="item" :class="{'order-active': where.order=='desc'||where.order=='asc'}"
@click="changeOrder(where.order=='asc'?'desc':'asc')">价格</view>
<view class="item" :class="{'order-active': where.order=='sales'}" @click="changeOrder('sales')">销量</view>
2024-04-25 18:02:30 +08:00
</view>
</view>
<viewPopup v-if="show===2" @close="show=0">
<view class="cateOne">
<scroll-view scroll-y style="height: 230rpx;">
<view class="classify-list">
<view class="classify-list-item u-line-1" :class="{'item-active': rightActive==index}"
2024-04-27 18:02:43 +08:00
v-for="(item, index) in 6" :key="index" @click="changeThree(item, index)">
2024-04-25 18:02:30 +08:00
牛肉
</view>
</view>
</scroll-view>
</view>
</viewPopup>
<scroll-view class="list" scroll-y>
<view class="shop-item" v-for="(item, index) in 20" :key="index">
<image class="shop-img" src="https://cdn.uviewui.com/uview/album/1.jpg"></image>
<view class="shop-content">
<view class="title">
<view class="name u-line-2">好吃的瓜果{{item}}</view>
<view class="tip u-line-1">香味辛辣|葱香味浓|调味增香香味辛辣|葱香味浓|调味增香</view>
</view>
<view class="price-btn">
<view class="price">12.00</view>
<view class="btn">
<u--icon name="minus-circle-fill" size="20" color="#20b128"></u--icon>
<view class="num">{{1}}</view>
<u--icon name="plus-circle-fill" size="20" color="#20b128"></u--icon>
</view>
</view>
</view>
</view>
<view style="width: 100%;height: 200rpx;"></view>
</scroll-view>
</view>
</view>
2024-04-27 18:02:43 +08:00
2024-04-25 18:02:30 +08:00
</view>
</template>
<script setup>
2024-04-27 18:02:43 +08:00
import { onLoad } from "@dcloudio/uni-app"
2024-04-25 18:02:30 +08:00
import { ref } from "vue"
2024-04-27 18:02:43 +08:00
import viewPopup from "@/components/viewPopup.vue"
const show = ref(0);
2024-04-25 18:02:30 +08:00
const topActive = ref(0);
2024-04-27 18:02:43 +08:00
const changeOne = (item, index)=>{
console.log('选择', item, index);
topActive.value = index;
show.value = 0;
}
2024-04-25 18:02:30 +08:00
const leftActive = ref(2);
2024-04-27 18:02:43 +08:00
const changeTwo = (item, index)=>{
console.log('选择', item, index);
leftActive.value = index;
show.value = 0;
}
2024-04-25 18:02:30 +08:00
const rightActive = ref(1);
2024-04-27 18:02:43 +08:00
const changeThree = (item, index)=>{
console.log('选择', item, index);
rightActive.value = index;
show.value = 0;
}
const keyword = ref('');
const searchKeyword = ()=>{
console.log('搜索', keyword.value);
where.value = keyword.value;
}
const changeOrder = (order)=>{
console.log('排序', order);
where.value.order = order;
}
const where = ref({
page: 1,
pageSize: 15,
keyword: '',
order: ''
})
const loading = ref(true);
const getGoodList = ()=>{
loading.value = true;
setTimeout(()=>{
loading.value = false;
},3000)
}
onLoad(()=>{
getGoodList();
})
2024-04-25 18:02:30 +08:00
</script>
<style lang="scss">
.content {
background-color: #fff;
}
.head-view {
background-color: #fff;
height: 180rpx;
width: 750rpx;
.list {
height: 100%;
display: flex;
align-items: center;
padding: 0 20rpx;
font-size: 22rpx;
.item {
width: 120rpx;
flex-shrink: 0;
margin-right: 20rpx;
display: flex;
flex-direction: column;
align-items: center;
.c-img {
height: 100rpx;
width: 100rpx;
flex-shrink: 0;
border-radius: 50%;
border: 2px solid transparent;
}
.c-text {
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 2rpx 4rpx 3rpx 4rpx;
border-radius: 50rpx;
margin-top: 5rpx;
}
}
.item-active {
.c-img {
border: 2px solid #20b128;
}
.c-text {
background-color: #20b128;
color: #fff;
}
}
}
}
.r-btn {
position: absolute;
right: 0;
top: 0;
height: 100%;
width: 60rpx;
font-size: 24rpx;
background-color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: -10rpx 0 60rpx 1rpx rgba(0, 0, 0, 0.3);
}
.cateOne {
background-color: #fff;
.head-title {
color: #666666;
font-size: 30rpx;
height: 80rpx;
line-height: 80rpx;
padding-left: 30rpx;
}
.list {
padding: 20rpx 0;
font-size: 22rpx;
display: grid;
grid-template-columns: auto auto auto auto auto;
justify-content: center;
grid-gap: 20rpx;
.item {
width: 120rpx;
display: flex;
flex-direction: column;
align-items: center;
.c-img {
height: 100rpx;
width: 100rpx;
flex-shrink: 0;
border-radius: 50%;
border: 2px solid transparent;
}
.c-text {
width: 100%;
text-align: center;
box-sizing: border-box;
padding: 2rpx 4rpx 3rpx 4rpx;
border-radius: 50rpx;
margin-top: 5rpx;
}
}
.item-active {
.c-img {
border: 2px solid #20b128;
}
.c-text {
background-color: #20b128;
color: #fff;
}
}
}
.classify-list {
padding: 20rpx 0;
font-size: 22rpx;
display: grid;
grid-template-columns: auto auto auto;
justify-content: center;
grid-gap: 20rpx;
.classify-list-item {
flex-shrink: 0;
text-align: center;
width: 150rpx;
height: 42rpx;
line-height: 42rpx;
background: #F6F6F6;
border-radius: 22rpx 22rpx 22rpx 22rpx;
border: 1rpx solid transparent;
}
.item-active {
border: 1rpx solid #20b128;
color: #20b128;
background-color: rgba(#20b128, 0.1);
}
}
}
.scroll-box {
// background-color: red;
display: flex;
.left {
height: calc(100vh - var(--window-top) - var(--window-bottom) - 180rpx);
/* #ifdef H5 */
height: calc(100vh - 96px - 180rpx);
/* #endif */
width: 170rpx;
box-sizing: border-box;
background-color: #eee;
font-size: 24rpx;
.item {
height: 96rpx;
line-height: 96rpx;
text-align: center;
}
.item-active {
background-color: #fff;
position: relative;
color: #20b128;
&::before {
content: '';
background-color: #20b128;
width: 6rpx;
height: 48rpx;
border-radius: 10rpx;
position: absolute;
left: 0;
top: 50%;
transform: translate(0, -50%);
}
}
}
.right {
height: calc(100vh - var(--window-top) - var(--window-bottom) - 180rpx);
/* #ifdef H5 */
height: calc(100vh - 96px - 180rpx);
/* #endif */
width: 580rpx;
box-sizing: border-box;
position: relative;
overflow: hidden;
.classify {
height: 150rpx;
background-color: #fff;
border-bottom: 1rpx solid #eee;
position: relative;
font-size: 24rpx;
.classify-list {
display: flex;
padding: 20rpx;
.classify-list-item {
flex-shrink: 0;
text-align: center;
width: 108rpx;
height: 42rpx;
line-height: 42rpx;
background: #F6F6F6;
border-radius: 22rpx 22rpx 22rpx 22rpx;
margin-right: 20rpx;
border: 1rpx solid transparent;
}
.item-active {
border: 1rpx solid #20b128;
color: #20b128;
background-color: rgba(#20b128, 0.1);
}
}
.done {
height: 90rpx;
width: 60rpx;
position: absolute;
top: 0;
right: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: #fff;
}
.order-by {
display: flex;
justify-content: flex-end;
align-items: center;
.item {
padding-right: 20rpx;
}
2024-04-27 18:02:43 +08:00
.order-active{
color: #20b128;
}
2024-04-25 18:02:30 +08:00
}
}
.list {
height: calc(100vh - var(--window-top) - var(--window-bottom) - 180rpx - 150rpx);
/* #ifdef H5 */
height: calc(100vh - 96px - 180rpx);
/* #endif */
.shop-item {
padding: 20rpx;
border-bottom: 1rpx solid #eee;
background-color: #fff;
display: flex;
.shop-img {
height: 160rpx;
width: 160rpx;
margin-right: 20rpx;
border-radius: 14rpx;
}
.shop-content {
width: 380rpx;
display: flex;
flex-direction: column;
justify-content: space-between;
.title {
.name {
font-size: 28rpx;
}
.tip {
color: #999;
font-size: 24rpx;
margin: 12rpx 0;
}
}
.price {
font-size: 30rpx;
font-weight: bold;
color: #F55726;
}
.price-btn {
display: flex;
justify-content: space-between;
.btn {
display: flex;
align-items: center;
.num {
width: 60rpx;
text-align: center;
}
}
}
}
}
}
}
}
</style>