1189 lines
30 KiB
Vue
1189 lines
30 KiB
Vue
<template>
|
||
<view class="">
|
||
<u-navbar title="点单" :border-bottom="false" :background="bgc" back-icon-color="#fff" title-color='#fff'
|
||
title-size='36' height='36' id="navbar">
|
||
</u-navbar>
|
||
<view class="seat-selection" @click="chooseSeat">
|
||
<image class="qian" src="https://api.ccttiot.com/smartmeter/img/static/uGlQHVe71tVCmnjW8Tsu" mode=""></image> <text>{{kazuoid}}</text>
|
||
<image class="hou" src="https://api.ccttiot.com/smartmeter/img/static/uBrspupsx9JJF7xv7oDQ" mode="aspectFit"></image>
|
||
</view>
|
||
<view class="container">
|
||
<!-- 左侧商品分类导航 -->
|
||
<view class="category-nav">
|
||
<view class="category-item" v-for="(category, index) in categories" :key="index"
|
||
@click="selectCategory(category,index)">
|
||
<text :class="{ active: currentCategoryIndex == index }">{{ category.name }}</text>
|
||
</view>
|
||
</view>
|
||
<!-- 右侧商品列表 -->
|
||
<scroll-view class="product-list" scroll-y="true"
|
||
@scroll="onProductScroll"
|
||
:scroll-top="isScrolling ? scrollTop : ''"
|
||
scroll-with-animation="true">
|
||
<view class="product-item" v-for="(product, index) in filteredProducts" :key="index"
|
||
:id="`product-${product.categoryName}`"
|
||
:data-category-name="product.categoryName"
|
||
:data-category-id="product.categoryId">
|
||
<image class="product-image-placeholder" :src="product.image" mode="aspectFill"></image>
|
||
<view class="product-info">
|
||
<view class="product-name">{{ product.name }}</view>
|
||
<view class="product-status">已售 {{product.sales}} </view>
|
||
<view class="product-price">
|
||
价格: ¥{{ product.minPrice }}
|
||
</view>
|
||
</view>
|
||
<view class="product-actions">
|
||
<text>{{ getCartItemQuantity(product.id) }}</text>
|
||
<button @click="increaseQuantity(product,0)">+</button>
|
||
</view>
|
||
</view>
|
||
<view class="" style="width: 100%;text-align: center;margin-top: 50rpx;">
|
||
当前没有更多商品咯...
|
||
</view>
|
||
</scroll-view>
|
||
</view>
|
||
<view class="jiesuan">
|
||
<view class="bot">
|
||
<view class="" @click="btngw">
|
||
<image src="https://api.ccttiot.com/smartmeter/img/static/uMcQnAhQkEMQKThZM0tJ" mode="aspectFill"></image>
|
||
共<text>{{totalQuantity}}</text>件 共<text>¥{{totalPrice}}</text>元
|
||
</view>
|
||
<view class="anniu" @click="btnxuanhao">
|
||
我已选好
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="gouwu" v-if="gouwuflag">
|
||
<view class="top">
|
||
已选商品
|
||
<text @click="gouwuflag = false">×</text>
|
||
</view>
|
||
<view class="qingkong" @click="btnqk">
|
||
<image src="https://api.ccttiot.com/smartmeter/img/static/ulcfcW1isbjq2dVnQsUk" mode="aspectFill"></image> 清空购物车
|
||
</view>
|
||
<view class="product-list" style="height: 37vh;overflow: scroll;">
|
||
<view class="product-item" v-for="(product, index) in selectedItems" :key="index">
|
||
<image class="product-image-placeholder" :src="product.image" mode="aspectFill"></image>
|
||
<view class="product-info">
|
||
<view class="product-name">{{ product.goodsName }}</view>
|
||
<view class="" style="font-size: 24rpx;color: #ccc;margin-bottom: 10rpx;">
|
||
{{ product.description }}
|
||
</view>
|
||
<view class="product-price">
|
||
价格: ¥{{ product.price }}
|
||
</view>
|
||
</view>
|
||
<view class="product-actions">
|
||
<button @click="decreaseQuantity(product,1)" :disabled="product.quantity <= 0">-</button>
|
||
<text>{{ product.quantity }}</text>
|
||
<button @click="increaseQuantity(product,1)">+</button>
|
||
</view>
|
||
</view>
|
||
<view class="" style="text-align: center;width: 100%;margin-top: 50rpx;color: #ccc;">
|
||
没有更多选购商品咯...
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="mask" v-if="gouwuflag"></view>
|
||
|
||
<!-- 位置选择弹窗 -->
|
||
<view class="seat-selector" :class="{ 'show': addmenflag }" v-show="addmenflag">
|
||
<view class="selector-header">
|
||
<view class="title">选择卡座位置</view>
|
||
<view class="floor-tabs">
|
||
<view v-for="floor in floors" :key="floor.id"
|
||
:class="['floor-tab', currentFloor === floor.id ? 'active' : '']"
|
||
@click="selectFloor(floor.id)">
|
||
{{floor.name}}
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="selector-content">
|
||
<view class="area-list">
|
||
<view v-for="area in areas" :key="area.id"
|
||
:class="['area-item', currentArea === area.id ? 'active' : '']" @click="selectArea(area.id)">
|
||
{{area.name}}
|
||
</view>
|
||
</view>
|
||
<view class="seat-grid">
|
||
<view v-for="seat in seats" :key="seat.id"
|
||
:class="['seat-item', currentSeat === seat.id ? 'active' : '']" @click="selectSeat(seat)">
|
||
{{seat.name}}
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="selector-footer">
|
||
<view class="btn cancel" @click="addmenflag = false">取消</view>
|
||
<view class="btn confirm" @click="confirmSeatSelection">确认</view>
|
||
</view>
|
||
</view>
|
||
<view class="mask" v-if="addmenflag"></view>
|
||
|
||
<!-- 特殊要求弹窗 -->
|
||
<view class="teshu" v-if="teshuflag">
|
||
<view class="top">
|
||
{{shopobj.name}}
|
||
</view>
|
||
<view style="max-height: 46vh; overflow: scroll;">
|
||
<view v-for="specGroup in shopobj.specVO" :key="specGroup.id">
|
||
<!-- 规格组名称 -->
|
||
<view class="ts">{{specGroup.name}}</view>
|
||
<!-- 规格选项 -->
|
||
<view class="yqlist">
|
||
<view
|
||
v-for="option in specGroup.specValueVO"
|
||
:key="option.id"
|
||
:class="selectedSpecs[specGroup.id] === option.id ? 'ggactive' : ''"
|
||
@click="selectSpec(specGroup.id, option.id)">
|
||
{{option.value}}
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="anniu">
|
||
<view class="qx" @click="teshuflag = false">
|
||
取消
|
||
</view>
|
||
<view class="qd" @click="btnadd">
|
||
(¥{{price}})确定
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="mask" style="z-index: 2;" v-if="teshuflag"></view>
|
||
</view>
|
||
</template>
|
||
<script>
|
||
import { number } from 'echarts'
|
||
export default {
|
||
data() {
|
||
return {
|
||
categories: [],
|
||
currentCategoryIndex: 0,
|
||
categoryId:0,
|
||
products: [],
|
||
bgc: {
|
||
backgroundColor: "#111111",
|
||
},
|
||
teshuflag:false,
|
||
gouwuflag:false,
|
||
addmenflag: false,
|
||
currentFloor: '',
|
||
currentArea: '',
|
||
currentSeat: '',
|
||
selectedPosition: '',
|
||
floors: [],
|
||
areas: [],
|
||
seats: [],
|
||
kazuoid: '请选择卡座',
|
||
partId:'',
|
||
fenquid:'',
|
||
zuoweiid:'',
|
||
selectedItems:[],
|
||
shopobj:{},
|
||
qdshop:{},
|
||
num:'',
|
||
waiindex:'',
|
||
neiindex:'',
|
||
selectedSpecs: {}, // 格式: { 规格组ID: 选中的规格值ID }
|
||
price: 0,
|
||
matchedSku: null,
|
||
totalQuantity: 0,
|
||
totalPrice: 0,
|
||
boothId:'',
|
||
skuList:[],
|
||
xiadanflag:true,
|
||
scrollTop: 0,
|
||
isScrolling: false,
|
||
scrollTimer: null
|
||
}
|
||
},
|
||
computed: {
|
||
filteredProducts() {
|
||
// 显示所有商品,不进行过滤,以便滚动联动功能正常工作
|
||
return this.products
|
||
}
|
||
},
|
||
onLoad() {
|
||
this.getlouceng()
|
||
this.getlist()
|
||
},
|
||
onShow() {
|
||
this.xiadanflag = true
|
||
},
|
||
onReady() {
|
||
// 页面渲染完成后的初始化
|
||
},
|
||
methods: {
|
||
// 获取购物车中商品的数量
|
||
getCartItemQuantity(productId) {
|
||
// 找到所有相同商品ID的购物车项
|
||
const cartItems = this.selectedItems.filter(item => item.goodsId == productId);
|
||
// 计算所有规格的数量总和
|
||
return cartItems.reduce((total, item) => total + item.quantity, 0);
|
||
},
|
||
// 计算总数量和总价格
|
||
calculateTotal() {
|
||
this.totalQuantity = this.selectedItems.reduce((sum, item) => sum + item.quantity, 0);
|
||
this.totalPrice = this.selectedItems.reduce((sum, item) => sum + (item.price * item.quantity), 0).toFixed(2);
|
||
},
|
||
// 点击清空购物车
|
||
btnqk(){
|
||
let that = this
|
||
uni.showModal({
|
||
title: '提示',
|
||
content: '您确定要清空当前购物车吗?',
|
||
success: function (res) {
|
||
if (res.confirm) {
|
||
that.selectedItems = []
|
||
that.calculateTotal()
|
||
} else if (res.cancel) {
|
||
console.log('用户点击取消');
|
||
}
|
||
}
|
||
})
|
||
},
|
||
// 请求商品分类
|
||
getlist(){
|
||
this.$u.get(`/app/goodsCategory/list?pageNum=1&pageSize=999`).then(res =>{
|
||
if(res.code == 200){
|
||
this.categories = res.data
|
||
// 清理分类名称
|
||
this.categories.forEach(category => {
|
||
if (category.name) {
|
||
category.name = category.name.trim()
|
||
}
|
||
})
|
||
this.categoryId = res.data[0].id
|
||
console.log('分类数据加载完成:', this.categories)
|
||
// 分类加载完成后再加载商品
|
||
this.getshoplist()
|
||
}
|
||
})
|
||
},
|
||
// 请求商品列表
|
||
getshoplist(){
|
||
this.$u.get(`/app/goods/list?pageNum=1&pageSize=999`).then(res =>{
|
||
if(res.code == 200){
|
||
this.products = res.data
|
||
// 确保每个商品都有categoryId和categoryName属性
|
||
this.products.forEach((product, index) => {
|
||
// 如果商品没有categoryId,使用当前选中的分类ID
|
||
if (!product.categoryId && this.categoryId) {
|
||
product.categoryId = this.categoryId
|
||
}
|
||
// 确保categoryId是数字类型
|
||
product.categoryId = parseInt(product.categoryId) || this.categoryId
|
||
|
||
// 如果商品没有categoryName,从分类列表中查找
|
||
if (!product.categoryName) {
|
||
const category = this.categories.find(cat => cat.id === product.categoryId)
|
||
if (category) {
|
||
product.categoryName = category.name
|
||
}
|
||
}
|
||
|
||
// 清理分类名称,移除空格和特殊字符
|
||
if (product.categoryName) {
|
||
product.categoryName = product.categoryName.trim()
|
||
}
|
||
|
||
console.log(`商品${index}:`, product.name, '分类ID:', product.categoryId, '分类名称:', product.categoryName)
|
||
})
|
||
console.log('商品列表:', this.products)
|
||
console.log('分类列表:', this.categories)
|
||
console.log('当前分类ID:', this.categoryId)
|
||
}
|
||
}).catch(err => {
|
||
console.error('获取商品列表失败:', err)
|
||
})
|
||
},
|
||
// 点击我已选好
|
||
btnxuanhao(){
|
||
if(this.xiadanflag == true){
|
||
this.xiadanflag = false
|
||
if(this.kazuoid == '请选择卡座'){
|
||
uni.showToast({
|
||
title: '请选择卡座信息',
|
||
icon: 'none',
|
||
duration:3000
|
||
})
|
||
this.xiadanflag = true
|
||
}else if(this.totalQuantity > 0){
|
||
this.skuList = this.selectedItems.map(item => ({
|
||
skuId: item.id,
|
||
price: item.price,
|
||
number: item.quantity
|
||
}))
|
||
let data = {
|
||
payAmount:this.totalPrice,
|
||
boothId:this.boothId,
|
||
skuList:this.skuList
|
||
}
|
||
this.$u.post(`/app/goodsOrder`,data).then(res =>{
|
||
if(res.code == 200){
|
||
uni.navigateTo({
|
||
url:'/page_user/diandan/xiaofei?no=' + res.msg + '&totalQuantity=' + this.totalQuantity
|
||
})
|
||
}else{
|
||
uni.showToast({
|
||
title: res.msg,
|
||
icon: 'none',
|
||
duration:3000
|
||
})
|
||
this.xiadanflag = true
|
||
}
|
||
})
|
||
}else{
|
||
uni.showToast({
|
||
title: '请选择需要的商品',
|
||
icon: 'none',
|
||
duration:3000
|
||
})
|
||
this.xiadanflag = true
|
||
}
|
||
}
|
||
},
|
||
// 点击选择位置
|
||
confirmSeatSelection() {
|
||
const floor = this.floors.find(f => f.id === this.currentFloor)
|
||
const area = this.areas.find(a => a.id === this.currentArea)
|
||
const seat = this.seats.find(s => s.id === this.currentSeat)
|
||
if (floor && area && seat) { //判断有楼层,分区,卡座
|
||
this.selectedPosition = `${floor.name}-${area.name}-${seat.name}`
|
||
this.kazuoid = `${seat.name}`
|
||
this.boothId = `${seat.id}`
|
||
this.addmenflag = false
|
||
} else if(floor && seat){ //判断只有楼层和卡座
|
||
this.selectedPosition = `${floor.name}-${seat.name}`
|
||
this.kazuoid = `${seat.name}`
|
||
this.boothId = `${seat.id}`
|
||
this.addmenflag = false
|
||
} else {
|
||
uni.showToast({
|
||
title: '请选择完整的卡座信息',
|
||
icon: 'none'
|
||
})
|
||
}
|
||
},
|
||
// 查询楼层列表
|
||
getlouceng() {
|
||
this.$u.get(`/bst/part/list?storeId=${this.$store.state.storeId}&pageNum=1&pageSize=99&isFloor=true`).then(res => {
|
||
if (res.code === 200) {
|
||
this.floors = []
|
||
this.partId = res.data.partId
|
||
res.data.forEach(item => {
|
||
if (item.parentId == null) {
|
||
this.floors.push({
|
||
id: item.partId,
|
||
name: item.partName
|
||
})
|
||
}
|
||
})
|
||
if (this.floors.length > 0) {
|
||
this.fenquid = this.floors[0].id
|
||
this.currentFloor = this.floors[0].id
|
||
this.getfenqu()
|
||
}
|
||
}
|
||
})
|
||
},
|
||
// 查询分区
|
||
getfenqu() {
|
||
if (this.floors.length > 0) {
|
||
this.$u.get(`/bst/part/list?parentId=${this.fenquid}&pageNum=1&pageSize=99`).then(res => {
|
||
if (res.code === 200) {
|
||
this.areas = []
|
||
if(res.data){
|
||
res.data.forEach(item => {
|
||
this.areas.push({
|
||
id: item.partId,
|
||
name: item.partName
|
||
})
|
||
})
|
||
}
|
||
if (this.areas.length > 0) { //如果有分区则进行查下去没有分区则直接拿楼层id查卡座
|
||
this.zuoweiid = this.areas[0].id
|
||
this.currentArea = this.areas[0].id
|
||
this.getkazuo()
|
||
}else{
|
||
this.getkazuo()
|
||
}
|
||
}
|
||
})
|
||
}
|
||
},
|
||
// 查询卡座
|
||
getkazuo() {
|
||
this.$u.get(`/bst/booth/list?partId=${this.zuoweiid == undefined ? this.partId : this.zuoweiid }&pageNum=1&pageSize=99`).then(res => {
|
||
if (res.code === 200) {
|
||
this.seats = []
|
||
res.rows.forEach(item => {
|
||
this.seats.push({
|
||
id: item.boothId,
|
||
name: item.boothName
|
||
})
|
||
})
|
||
}
|
||
})
|
||
},
|
||
// 切换楼层
|
||
selectFloor(floorId) {
|
||
this.currentFloor = floorId
|
||
this.fenquid = floorId
|
||
this.getfenqu()
|
||
},
|
||
//切换分区
|
||
selectArea(areaId) {
|
||
this.currentArea = areaId
|
||
this.zuoweiid = areaId
|
||
this.getkazuo()
|
||
},
|
||
// 切换卡座
|
||
selectSeat(seat) {
|
||
this.currentSeat = seat.id
|
||
console.log(seat,this.currentSeat);
|
||
},
|
||
// 点击显示选择卡座位置
|
||
chooseSeat() {
|
||
this.addmenflag = true
|
||
},
|
||
// 点击分类滚动到对应商品
|
||
selectCategory(item, index) {
|
||
console.log('点击分类:', item.name, '分类ID:', item.id, '索引:', index)
|
||
|
||
// 更新当前分类
|
||
this.currentCategoryIndex = index
|
||
this.categoryId = item.id
|
||
|
||
// 设置滚动标志,防止用户滚动事件干扰
|
||
this.isScrolling = true
|
||
|
||
// 如果是第一个分类,直接回到顶部
|
||
if (index === 0) {
|
||
console.log('点击第一个分类,直接回到顶部')
|
||
this.scrollTop = 0
|
||
setTimeout(() => {
|
||
this.isScrolling = false
|
||
}, 500)
|
||
return
|
||
}
|
||
|
||
// 查找该分类下的第一个商品
|
||
const firstProductOfCategory = this.products.find(product =>
|
||
product.categoryName === item.name
|
||
)
|
||
|
||
if (firstProductOfCategory) {
|
||
// 先回到顶部,再滚动到目标位置
|
||
this.scrollToCategoryWithReset(item.name)
|
||
} else {
|
||
console.log('未找到分类商品:', item.name)
|
||
// 即使没找到商品也要重置滚动状态
|
||
setTimeout(() => {
|
||
this.isScrolling = false
|
||
}, 500)
|
||
}
|
||
},
|
||
// 先回到顶部,再滚动到指定分类
|
||
scrollToCategoryWithReset(categoryName) {
|
||
// 先回到顶部
|
||
this.scrollTop = 0
|
||
|
||
// 延迟执行滚动到目标位置,确保回到顶部的动画完成
|
||
setTimeout(() => {
|
||
this.scrollToCategory(categoryName)
|
||
}, 300)
|
||
},
|
||
// 滚动到指定分类
|
||
scrollToCategory(categoryName) {
|
||
const query = uni.createSelectorQuery().in(this)
|
||
query.selectAll('.product-item').boundingClientRect()
|
||
query.select('.product-list').boundingClientRect()
|
||
query.exec((res) => {
|
||
if (res && res[0] && res[1]) {
|
||
const items = res[0] // 商品项列表
|
||
const container = res[1] // 滚动容器
|
||
|
||
// 找到该分类的第一个商品
|
||
for (let i = 0; i < items.length; i++) {
|
||
const item = items[i]
|
||
if (item.dataset.categoryName === categoryName) {
|
||
// 计算正确的滚动位置
|
||
// 由于已经回到顶部,现在item.top就是相对于容器的位置
|
||
const targetScrollTop = Math.max(0, item.top - 20)
|
||
|
||
console.log('滚动到分类:', categoryName, '位置:', targetScrollTop)
|
||
|
||
// 设置滚动位置
|
||
this.scrollTop = targetScrollTop
|
||
|
||
// 延迟重置滚动状态
|
||
// setTimeout(() => {
|
||
// this.isScrolling = false
|
||
// }, 1000)
|
||
|
||
break
|
||
}
|
||
}
|
||
} else {
|
||
console.log('获取元素位置失败,重置滚动状态')
|
||
setTimeout(() => {
|
||
this.isScrolling = false
|
||
}, 500)
|
||
}
|
||
})
|
||
},
|
||
// 选择规格
|
||
selectSpec(groupId, optionId) {
|
||
this.$set(this.selectedSpecs, groupId, optionId)
|
||
this.updateMatchedSku()
|
||
},
|
||
// 更新匹配的SKU
|
||
updateMatchedSku() {
|
||
const selectedOptions = Object.values(this.selectedSpecs)
|
||
// 调试:打印关键数据
|
||
// console.log('当前选中选项ID:', selectedOptions)
|
||
console.log('所有SKU:', this.shopobj.skuVO.map(sku => ({
|
||
id: sku.id,
|
||
specs: sku.specs,
|
||
price: sku.price,
|
||
})))
|
||
// 匹配逻辑
|
||
this.matchedSku = this.shopobj.skuVO.find(sku => {
|
||
const isMatch = selectedOptions.every(optionId =>
|
||
sku.specs.includes(optionId))
|
||
// console.log(`检查SKU ${sku.id}:`, sku.specs, '匹配结果:', isMatch)
|
||
return isMatch
|
||
})
|
||
this.price = this.matchedSku?.price || 0
|
||
console.log('最终匹配:', this.matchedSku || '无匹配')
|
||
},
|
||
// 确定加入购物车
|
||
btnadd() {
|
||
// 检查是否所有规格都已选择
|
||
const selectedSpecsCount = Object.keys(this.selectedSpecs).length
|
||
const totalSpecsCount = this.shopobj.specVO.length
|
||
if (selectedSpecsCount !== totalSpecsCount) {
|
||
uni.showToast({
|
||
title: '请选择规格',
|
||
icon: 'none',
|
||
duration: 3000
|
||
})
|
||
return
|
||
}
|
||
// 1. 检查是否有匹配的SKU
|
||
if (!this.matchedSku) {
|
||
uni.showToast({
|
||
title: '请先选择完整规格',
|
||
icon: 'none',
|
||
duration:3000
|
||
})
|
||
return
|
||
}
|
||
// 2. 准备要添加的商品数据
|
||
const productToAdd = {
|
||
...this.matchedSku, // 复制SKU所有属性
|
||
quantity: 1, // 初始数量设为1
|
||
selectedSpecs: { ...this.selectedSpecs } // 保存当前选择的规格
|
||
}
|
||
// 3. 检查是否已存在相同规格的商品
|
||
const existingIndex = this.selectedItems.findIndex(item =>
|
||
item.id === this.matchedSku.id &&
|
||
this.isSameSpecs(item.selectedSpecs, this.selectedSpecs)
|
||
)
|
||
if (existingIndex >= 0) {
|
||
// 已存在则增加数量
|
||
this.selectedItems[existingIndex].quantity++
|
||
// 更新商品列表中的数量
|
||
const productIndex = this.products.findIndex(p => p.id === this.matchedSku.id)
|
||
if (productIndex >= 0) {
|
||
this.products[productIndex].quantity = this.selectedItems[existingIndex].quantity
|
||
}
|
||
uni.showToast({
|
||
title: '商品数量已增加',
|
||
icon: 'success',
|
||
duration:3000
|
||
})
|
||
} else {
|
||
// 不存在则添加新项
|
||
this.selectedItems.push(productToAdd)
|
||
// 更新商品列表中的数量
|
||
const productIndex = this.products.findIndex(p => p.id === this.matchedSku.id)
|
||
if (productIndex >= 0) {
|
||
this.products[productIndex].quantity = 1
|
||
}
|
||
uni.showToast({
|
||
title: '已加入购物车',
|
||
icon: 'success',
|
||
duration:3000
|
||
})
|
||
}
|
||
// 4. 关闭规格选择弹窗
|
||
this.teshuflag = false
|
||
this.calculateTotal()
|
||
// 5. 打印调试信息
|
||
console.log('当前购物车:', this.selectedItems)
|
||
},
|
||
// 辅助方法:比较两个规格是否相同
|
||
isSameSpecs(specs1, specs2) {
|
||
const keys1 = Object.keys(specs1).sort()
|
||
const keys2 = Object.keys(specs2).sort()
|
||
if (keys1.length !== keys2.length) return false
|
||
return keys1.every(key => specs1[key] === specs2[key])
|
||
},
|
||
// 根据id获取商品详情
|
||
getxq(id){
|
||
this.$u.get(`/app/goods/${id}`).then(res => {
|
||
if (res.code == 200) {
|
||
this.shopobj = res.data
|
||
this.teshuflag = true
|
||
}
|
||
})
|
||
},
|
||
// 点击商品加入购物车
|
||
increaseQuantity(product, num) {
|
||
if(num == 0){
|
||
this.selectedSpecs = {}
|
||
this.price = 0
|
||
this.qdshop = product
|
||
this.num = num
|
||
this.getxq(product.id) //点击商品的时候获取商品信息规格
|
||
} else {
|
||
const existingItem = this.selectedItems.find(item =>
|
||
item.id === product.id &&
|
||
this.isSameSpecs(item.selectedSpecs, product.selectedSpecs)
|
||
)
|
||
if (existingItem) {
|
||
existingItem.quantity++
|
||
} else {
|
||
this.selectedItems.push({
|
||
...product,
|
||
quantity: 1
|
||
})
|
||
}
|
||
this.calculateTotal()
|
||
}
|
||
},
|
||
// 点击商品从购物车列表删除商品
|
||
decreaseQuantity(product, num) {
|
||
const existingItem = this.selectedItems.find(item =>
|
||
item.id === product.id &&
|
||
this.isSameSpecs(item.selectedSpecs, product.selectedSpecs)
|
||
)
|
||
if (existingItem) {
|
||
if (existingItem.quantity > 1) {
|
||
existingItem.quantity--
|
||
} else {
|
||
const index = this.selectedItems.indexOf(existingItem)
|
||
this.selectedItems.splice(index, 1)
|
||
}
|
||
this.calculateTotal()
|
||
}
|
||
},
|
||
// 点击显示购物车列表商品
|
||
btngw(){
|
||
this.gouwuflag = true
|
||
},
|
||
// 商品列表滚动事件
|
||
onProductScroll(event) {
|
||
// 如果正在程序滚动,不处理用户滚动
|
||
if (this.isScrolling) {
|
||
return
|
||
}
|
||
|
||
const scrollTop = event.detail.scrollTop
|
||
|
||
// 清除之前的定时器
|
||
if (this.scrollTimer) {
|
||
clearTimeout(this.scrollTimer)
|
||
}
|
||
|
||
// 延迟执行,避免频繁触发
|
||
this.scrollTimer = setTimeout(() => {
|
||
this.updateCurrentCategoryByScroll(scrollTop)
|
||
}, 200)
|
||
},
|
||
// 根据滚动位置更新当前分类
|
||
updateCurrentCategoryByScroll(scrollTop) {
|
||
const query = uni.createSelectorQuery().in(this)
|
||
query.selectAll('.product-item').boundingClientRect()
|
||
query.select('.product-list').boundingClientRect()
|
||
query.exec((res) => {
|
||
if (res && res[0] && res[1]) {
|
||
const items = res[0]
|
||
const container = res[1]
|
||
|
||
// 找到当前可见的商品分类
|
||
let currentCategoryName = null
|
||
const threshold = 100 // 可视区域阈值
|
||
|
||
for (let i = 0; i < items.length; i++) {
|
||
const item = items[i]
|
||
// 计算商品相对于容器的位置
|
||
const itemTop = item.top - container.top
|
||
const itemBottom = itemTop + item.height
|
||
|
||
// 如果商品在可视区域内
|
||
if (itemTop <= threshold && itemBottom > threshold) {
|
||
currentCategoryName = item.dataset.categoryName
|
||
break
|
||
}
|
||
}
|
||
|
||
// 更新当前分类索引
|
||
if (currentCategoryName !== null) {
|
||
const categoryIndex = this.categories.findIndex(cat => cat.name === currentCategoryName)
|
||
if (categoryIndex !== -1 && categoryIndex !== this.currentCategoryIndex) {
|
||
this.currentCategoryIndex = categoryIndex
|
||
this.categoryId = this.categories[categoryIndex].id
|
||
}
|
||
}
|
||
}
|
||
})
|
||
},
|
||
}
|
||
}
|
||
</script>
|
||
<style scoped lang="less">
|
||
.container {
|
||
display: flex;
|
||
height: 87vh;
|
||
background-color: #1a1a2e;
|
||
color: white;
|
||
}
|
||
.ggactive{
|
||
background-color: #FF8998 !important;
|
||
color: #fff !important;
|
||
}
|
||
page {
|
||
background-color: #111111;
|
||
}
|
||
.teshu{
|
||
width: 658rpx;
|
||
max-height: 999rpx;
|
||
background: #1C1C1E;
|
||
border-radius: 16rpx 16rpx 16rpx 16rpx;
|
||
padding: 34rpx 38rpx;
|
||
box-sizing: border-box;
|
||
position: fixed;
|
||
top: 20%;
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
z-index: 3;
|
||
.top{
|
||
font-size: 32rpx;
|
||
color: #FFFFFF;
|
||
width: 100%;
|
||
text-align: center;
|
||
}
|
||
.ts{
|
||
font-size: 32rpx;
|
||
color: #FFFFFF;
|
||
margin-top: 36rpx;
|
||
}
|
||
.yqlist{
|
||
width: 100%;
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
view{
|
||
max-width: 884rpx;
|
||
padding: 4rpx 30rpx;
|
||
box-sizing: border-box;
|
||
height: 64rpx;
|
||
background: #2F2F2F;
|
||
border-radius: 6rpx 6rpx 6rpx 6rpx;
|
||
font-size: 24rpx;
|
||
color: #FFFFFF;
|
||
text-align: center;
|
||
line-height: 60rpx;
|
||
margin-right: 10rpx;
|
||
margin-top: 20rpx;
|
||
}
|
||
}
|
||
.anniu{
|
||
display: flex;
|
||
justify-content: space-between;
|
||
margin-top: 60rpx;
|
||
.qx{
|
||
background-color: transparent;
|
||
border: 1px solid #FF8998;
|
||
color: #FF8998;
|
||
}
|
||
view{
|
||
width: 262rpx;
|
||
height: 76rpx;
|
||
background: #FF8998;
|
||
border-radius: 6rpx 6rpx 6rpx 6rpx;
|
||
text-align: center;
|
||
line-height: 76rpx;
|
||
font-size: 32rpx;
|
||
color: #3D3D3D;
|
||
font-weight: 600;
|
||
color: #fff;
|
||
}
|
||
}
|
||
}
|
||
.mask{
|
||
width: 100%;
|
||
height: 100vh;
|
||
background: #010000;
|
||
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
||
opacity: 0.5;
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
}
|
||
.seat-selector {
|
||
position: fixed;
|
||
bottom: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 58vh;
|
||
background-color: #0B0B0B;
|
||
border-radius: 40rpx 40rpx 0 0;
|
||
z-index: 999;
|
||
padding-bottom: 100rpx;
|
||
box-sizing: border-box;
|
||
transform: translateY(100%);
|
||
transition: transform 0.3s ease-out;
|
||
|
||
&.show {
|
||
transform: translateY(0);
|
||
}
|
||
|
||
.selector-header {
|
||
padding: 40rpx 30rpx;
|
||
|
||
.title {
|
||
font-size: 32rpx;
|
||
color: #fff;
|
||
margin-bottom: 30rpx;
|
||
}
|
||
|
||
.floor-tabs {
|
||
display: flex;
|
||
gap: 20rpx;
|
||
|
||
.floor-tab {
|
||
padding: 10rpx 40rpx;
|
||
background: #1A1A1A;
|
||
color: #fff;
|
||
border-radius: 10rpx;
|
||
font-size: 28rpx;
|
||
|
||
&.active {
|
||
background: #FF8998;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.selector-content {
|
||
display: flex;
|
||
height: calc(100% - 300rpx);
|
||
|
||
.area-list {
|
||
width: 200rpx;
|
||
background: #1A1A1A;
|
||
|
||
.area-item {
|
||
height: 80rpx;
|
||
line-height: 80rpx;
|
||
text-align: center;
|
||
color: #fff;
|
||
font-size: 28rpx;
|
||
|
||
&.active {
|
||
background: #FF8998;
|
||
}
|
||
}
|
||
}
|
||
|
||
.seat-grid {
|
||
flex: 1;
|
||
padding: 20rpx;
|
||
display: grid;
|
||
grid-template-columns: repeat(3, 1fr);
|
||
gap: 20rpx;
|
||
overflow-y: auto;
|
||
|
||
.seat-item {
|
||
height: 80rpx;
|
||
line-height: 80rpx;
|
||
text-align: center;
|
||
background: #1A1A1A;
|
||
color: #fff;
|
||
border-radius: 10rpx;
|
||
font-size: 28rpx;
|
||
|
||
&.active {
|
||
background: #FF8998;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.selector-footer {
|
||
position: absolute;
|
||
bottom: 44rpx;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 120rpx;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
padding: 20rpx 30rpx;
|
||
box-sizing: border-box;
|
||
background: #0B0B0B;
|
||
|
||
.btn {
|
||
width: 45%;
|
||
height: 80rpx;
|
||
line-height: 80rpx;
|
||
text-align: center;
|
||
border-radius: 10rpx;
|
||
font-size: 28rpx;
|
||
|
||
&.cancel {
|
||
background: #1A1A1A;
|
||
color: #fff;
|
||
}
|
||
|
||
&.confirm {
|
||
background: #FF8998;
|
||
color: #fff;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
.gouwu{
|
||
width: 750rpx;
|
||
height: 786rpx;
|
||
background: #010000;
|
||
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
||
position: fixed;
|
||
bottom: 160rpx;
|
||
left: 0;
|
||
z-index: 1;
|
||
.product-list{
|
||
background-color: #010000;
|
||
.product-item{
|
||
background-color: #010000;
|
||
font-weight: 600;
|
||
font-size: 32rpx;
|
||
color: #FFFFFF;
|
||
.product-info{
|
||
.product-price{
|
||
color: #FF8998;
|
||
font-size: 32rpx;
|
||
font-weight: 400;
|
||
}
|
||
.product-status{
|
||
width: 320rpx;
|
||
height: 46rpx;
|
||
background: #1A1A1A;
|
||
border-radius: 4rpx 4rpx 4rpx 4rpx;
|
||
padding-left: 12rpx;
|
||
line-height: 46rpx;
|
||
font-size: 24rpx;
|
||
font-weight: 400;
|
||
color: #FF8998;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
.qingkong{
|
||
width: 100%;
|
||
height: 90rpx;
|
||
line-height: 90rpx;
|
||
text-align: right;
|
||
background: #1A1A1A;
|
||
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
||
padding-right: 30rpx;
|
||
box-sizing: border-box;
|
||
color: #fff;
|
||
image{
|
||
width: 32rpx;
|
||
height: 32rpx;
|
||
vertical-align: text-top;
|
||
margin-right: 14rpx;
|
||
}
|
||
}
|
||
.top{
|
||
width: 100%;
|
||
height: 98rpx;
|
||
line-height: 98rpx;
|
||
text-align: center;
|
||
position: relative;
|
||
color: #fff;
|
||
text{
|
||
font-size: 40rpx;
|
||
color: #fff;
|
||
position: absolute;
|
||
top: 0;
|
||
right: 36rpx;
|
||
}
|
||
}
|
||
}
|
||
.jiesuan{
|
||
width: 750rpx;
|
||
height: 160rpx;
|
||
line-height: 160rpx;
|
||
background: #111111;
|
||
box-shadow: 0rpx -8rpx 6rpx 0rpx rgba(0,0,0,0.2);
|
||
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
||
position: fixed;
|
||
left: 0;
|
||
bottom: 0;
|
||
z-index: 1;
|
||
.bot{
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding-left: 22rpx;
|
||
box-sizing: border-box;
|
||
.anniu{
|
||
width: 176rpx;
|
||
height: 80rpx;
|
||
background: #FF8998;
|
||
border-radius: 6rpx 6rpx 6rpx 6rpx;
|
||
display: flex;
|
||
justify-content: center;
|
||
}
|
||
view{
|
||
display: flex;
|
||
align-items: center;
|
||
font-size: 28rpx;
|
||
color: #FFFFFF;
|
||
text{
|
||
color: #FF8998;
|
||
}
|
||
image{
|
||
width: 40rpx;
|
||
height: 40rpx;
|
||
margin-right: 24rpx;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
.seat-selection {
|
||
display: flex;
|
||
align-items: center;
|
||
width: 100%;
|
||
color: #fff;
|
||
background-color: #111111;
|
||
padding: 15rpx;
|
||
z-index: 1;
|
||
.qian{
|
||
width: 36rpx;
|
||
height: 36rpx;
|
||
margin-right: 14rpx;
|
||
}
|
||
.hou{
|
||
width: 32rpx;
|
||
height: 32rpx;
|
||
}
|
||
}
|
||
|
||
.seat-selection text {
|
||
font-size: 28rpx;
|
||
}
|
||
|
||
.seat-selection image {
|
||
width: 20rpx;
|
||
height: 20rpx;
|
||
}
|
||
|
||
.category-nav {
|
||
width: 200rpx;
|
||
background-color: #111111;
|
||
padding: 20rpx 0;
|
||
text-align: center;
|
||
}
|
||
|
||
.category-item {
|
||
padding: 30rpx 20rpx;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.category-item text {
|
||
font-size: 28rpx;
|
||
color: #ccc;
|
||
}
|
||
|
||
.category-item text.active {
|
||
color: #FF8998;
|
||
}
|
||
|
||
.product-list {
|
||
flex: 1;
|
||
padding: 20rpx;
|
||
background-color: #1A1A1A;
|
||
padding-bottom: 200rpx;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.product-item {
|
||
display: flex;
|
||
align-items: center;
|
||
background-color: #111111;
|
||
padding: 20rpx;
|
||
border-radius: 10rpx;
|
||
margin-bottom: 20rpx;
|
||
}
|
||
|
||
.product-image-placeholder {
|
||
width: 160rpx;
|
||
height: 160rpx;
|
||
background-color: #ccc;
|
||
margin-right: 20rpx;
|
||
border-radius: 5rpx;
|
||
}
|
||
|
||
.product-info {
|
||
flex: 1;
|
||
}
|
||
|
||
.product-name {
|
||
font-size: 32rpx;
|
||
margin-bottom: 10rpx;
|
||
}
|
||
|
||
.product-status {
|
||
font-size: 24rpx;
|
||
color: #ccc;
|
||
margin-bottom: 10rpx;
|
||
}
|
||
|
||
.product-price {
|
||
font-size: 28rpx;
|
||
}
|
||
|
||
.member-price {
|
||
color: #e94b64;
|
||
margin-left: 10rpx;
|
||
}
|
||
|
||
.product-actions {
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.product-actions button {
|
||
width: 40rpx;
|
||
height: 40rpx;
|
||
line-height: 40rpx;
|
||
font-size: 28rpx;
|
||
background-color: #e94b64;
|
||
color: white;
|
||
border: none;
|
||
border-radius: 50%;
|
||
padding: 0;
|
||
margin: 0 10rpx;
|
||
}
|
||
|
||
.product-actions button:disabled {
|
||
opacity: 0.5;
|
||
}
|
||
</style>
|
||
|