2025-02-24 01:34:57 +00:00
< template >
< view class = "flex-col page" >
< view class = "flex-col group" >
< view class = "flex-row self-stretch group_2" >
< image
class = "image_2"
: src = "productObject.goodImg"
/ >
< view class = "flex-col flex-1 self-start ml-15" >
< image
class = "self-end image"
@ click = "close()"
src = "./images/cha.png"
/ >
< view class = "flex-col items-start self-stretch mt-58" >
2025-02-26 15:56:19 +00:00
< text class = "text" > ¥ { { productObject . price } } < / text >
2025-02-24 01:34:57 +00:00
< text class = "font text_2 mt-14" > 请选择 < / text >
< / view >
< / view >
< / view >
< text class = "self-start font_2 text_3 mt-20" > 当前日期 : { { appointmentDateVOList [ appIdx ] . specificDate } } < / text >
< view class = "flex-row justify-between items-center self-stretch mt-20" >
< text class = "font_2" > 剩余预约人数 : { { restNumber } } < / text >
< view class = "flex-row items-center group_3" @click ="openyyxzTip()" >
< image
class = "shrink-0 image"
src = "./images/yyxz.png"
/ >
< text class = "font text_4 ml-3" > 预约须知 < / text >
< / view >
< / view >
< / view >
< view class = "flex-row equal-division group_4" >
< view class = "flex-col items-center section equal-division-item" :style ="selectObj[index]" v-for ="(item, index) in appointmentDateVOList" :key="index" @click="isSelected(index)" >
< text class = "font" :style ="fontColor[index]" > 星期二 < / text >
< text class = "font_3 mt-12" :style ="fontColor[index]" > { { item . specificDate . substring ( 5 ) } } < / text >
< / view >
< / view >
< view class = "flex-col group_5" >
< view class = "flex-row list_2 my_grid" >
< view class = "flex-col justify-start items-center text-wrapper"
v - for = "(item, index) in appointmentDateVOList[appIdx].timePeriodVOList" : key = "index" @ click = "itemIsSelected(index)" : style = "itemSelectObj[appIdx][index]" >
< text class = "font_3 text_5" :style ="itemFontColor[appIdx][index]" > { { item . timeSlot } } < / text >
< / view >
< / view >
< view style = "height: 1.88rpx; background-color: #d9d9d9; margin-top: 30rpx; margin-bottom: 20rpx;" > < / view >
< view class = "flex-row justify-between items-center group_7" >
< text class = "font_2 text_6" > 数量 < / text >
< view class = "flex-row" >
< image
@ click = "sub"
class = "image_3"
src = "./images/sub.png"
/ >
< view class = "flex-col justify-start items-center text-wrapper_2 ml-4" >
< text class = "font_3 text_7" > { { cnt } } < / text >
< / view >
< image
@ click = "add"
class = "image_4 ml-4"
src = "./images/add.png"
/ >
< / view >
< / view >
< / view >
2025-02-28 03:34:36 +00:00
< view class = "flex-col justify-start items-center text-wrapper_3" @click ="selectStatus()" > < text class = "font text_8" > { { btnText } } < / text > < / view >
2025-02-24 01:34:57 +00:00
< / view >
< uni -popup ref = "tip" :animation ="false" @maskClick ="maskClosehandler" >
< view class = "pop" >
< tipVue > < / tipVue >
< / view >
< / u n i - p o p u p >
< / template >
2025-02-28 03:34:36 +00:00
< script setup >
2025-02-24 01:34:57 +00:00
import tipVue from './tip.vue' ;
import { onMounted , ref } from 'vue'
import emitter from '../../../utils/emitter' ;
import { baseUrl } from '../../../api/request' ;
let selectObj = ref ( [ ] )
let fontColor = ref ( [ ] )
let itemSelectObj = ref ( [ ] )
let itemFontColor = ref ( [ ] )
const cookie = wx . getStorageSync ( "cookie" ) //请求头
const appIdx = ref ( 0 )
const cnt = ref ( 1 )
2025-02-26 15:56:19 +00:00
const productObject = ref ( )
2025-02-24 01:34:57 +00:00
const appointmentDateVOList = ref ( [ ] )
let appointmentDate = ''
let timeSlot = ''
const restNumber = ref ( '请选择时间段' )
let countMap = new Map ( )
onMounted ( ( ) => {
closeyyxzTip ( )
emitter . on ( 'getGoodData' , ( val ) => {
productObject . value = val
2025-02-26 15:56:19 +00:00
// console.log('');
2025-02-24 01:34:57 +00:00
appointmentDateVOList . value = val . appointmentDateVOList
selectObj . value = new Array ( appointmentDateVOList . value . length ) . fill ( null ) . map ( ( ) => ( {
backgroundColor : '#fff' ,
borderColor : '#C35C5D'
} ) ) ;
fontColor . value = new Array ( appointmentDateVOList . value . length ) . fill ( null ) . map ( ( ) => ( {
color : '#323233'
} ) )
selectObj . value [ 0 ] = { backgroundColor : '#FBDEDF' , borderColor : '#FBDEDF' }
fontColor . value [ 0 ] = { color : '#C35C5D' }
for ( var i = 0 ; i < appointmentDateVOList . value . length ; i ++ ) {
var col = appointmentDateVOList . value [ i ] . timePeriodVOList . length
itemSelectObj . value [ i ] = new Array ( col ) . fill ( null ) . map ( ( ) => ( {
backgroundColor : '#F3F3F3'
} ) )
itemFontColor . value [ i ] = new Array ( col ) . fill ( null ) . map ( ( ) => ( {
color : '#323233'
} ) )
}
} )
2025-02-28 03:34:36 +00:00
emitter . on ( 'getBookingNumberMap' , ( val ) => { //将map集合传过来
2025-02-24 01:34:57 +00:00
countMap = val
2025-02-26 15:56:19 +00:00
console . log ( "val==============>" , val )
2025-02-24 01:34:57 +00:00
appointmentDate = appointmentDateVOList . value [ appIdx . value ] . specificDate ;
} )
2025-02-28 03:34:36 +00:00
emitter . on ( 'count' , ( val ) => {
nowSelected . value = val
console . log ( '现在选择的是---->' , nowSelected . value ) ;
statusChange ( ) //更改按钮文字
} )
2025-02-24 01:34:57 +00:00
} )
const maskClosehandler = ( ) => {
}
2025-02-26 15:56:19 +00:00
const addCart = async ( ) => { //加入购物车方法
console . log ( '日期--->' , appointmentDate , '时间段--->' , timeSlot , '数量--->' , cnt . value , '商品id---->' , productObject . value . id ) ;
if ( appointmentDate === '' || timeSlot === '' ) {
await uni . showToast ( {
icon : 'error' ,
title : "字段不能为空"
} )
return ;
}
const res = await uni . request ( {
url : baseUrl + '/cartExperience/add' ,
method : 'POST' ,
header : {
'cookie' : wx . getStorageSync ( 'cookie' )
} ,
data : {
goodId : productObject . value . id ,
quantity : cnt . value ,
reservationDate : appointmentDate ,
timeSlot : timeSlot
}
} )
console . log ( '加入购物车结果' , res ) ;
if ( res . data . code === 1 ) {
uni . showToast ( {
icon : 'success' ,
2025-02-28 03:43:22 +00:00
title : "加入购物车成功"
2025-02-26 15:56:19 +00:00
} )
close ( ) //关闭弹窗
} else {
uni . showToast ( {
icon : 'error' ,
title : "服务错误"
} )
}
}
2025-02-24 01:34:57 +00:00
const tip = ref ( null )
const closeyyxzTip = ( ) => {
emitter . on ( 'closeyyxzTip' , ( ) => {
tip . value . close ( )
} )
}
const openyyxzTip = ( ) => {
tip . value . open ( )
}
2025-02-26 15:56:19 +00:00
const add = ( ) => { //添加商品方法
2025-02-24 01:34:57 +00:00
if ( restNumber . value === '请选择时间段' ) {
uni . showToast ( {
title : '请选择时间段' ,
icon : 'error'
} )
return ;
}
if ( cnt . value < Number ( restNumber . value ) ) {
cnt . value ++
}
}
2025-02-26 15:56:19 +00:00
const sub = ( ) => { //减少商品方法
2025-02-24 01:34:57 +00:00
if ( cnt . value > 1 ) {
cnt . value --
}
}
2025-02-26 15:56:19 +00:00
const close = ( ) => { //关闭弹窗
2025-02-24 01:34:57 +00:00
emitter . emit ( 'closeTimeDialog' )
}
2025-02-28 03:34:36 +00:00
const isSelected = ( index ) => { //选择预约日期方法
2025-02-24 01:34:57 +00:00
appIdx . value = index
restNumber . value = '请选择时间段'
appointmentDate = appointmentDateVOList . value [ appIdx . value ] . specificDate ;
2025-02-26 15:56:19 +00:00
timeSlot = ''
2025-02-24 01:34:57 +00:00
console . log ( 'appointmentDate===================================>' , appointmentDate )
for ( var i = 0 ; i < appointmentDateVOList . value . length ; i ++ ) {
if ( i == index ) {
selectObj . value [ i ] . backgroundColor = '#FBDEDF'
selectObj . value [ i ] . borderColor = '#FBDEDF'
fontColor . value [ i ] . color = '#C35C5D'
} else {
selectObj . value [ i ] . backgroundColor = '#fff'
selectObj . value [ i ] . borderColor = '#C35C5D'
fontColor . value [ i ] . color = '#323233'
}
}
var col = appointmentDateVOList . value [ appIdx . value ] . timePeriodVOList . length
for ( var i = 0 ; i < col ; i ++ ) {
itemSelectObj . value [ appIdx . value ] [ i ] . backgroundColor = '#F3F3F3'
itemFontColor . value [ appIdx . value ] [ i ] . color = '#323233'
}
}
2025-02-28 03:34:36 +00:00
const itemIsSelected = ( index ) => { //选择时间段方法
2025-02-24 01:34:57 +00:00
timeSlot = appointmentDateVOList . value [ appIdx . value ] . timePeriodVOList [ index ] . timeSlot
restNumber . value = countMap [ appointmentDate + '&' + timeSlot ]
console . log ( 'timeSlot====================================>' , timeSlot )
var col = appointmentDateVOList . value [ appIdx . value ] . timePeriodVOList . length
for ( var i = 0 ; i < col ; i ++ ) {
if ( i == index ) {
itemSelectObj . value [ appIdx . value ] [ i ] . backgroundColor = '#FBDEDF'
itemFontColor . value [ appIdx . value ] [ i ] . color = '#C35C5D'
} else {
itemSelectObj . value [ appIdx . value ] [ i ] . backgroundColor = '#F3F3F3'
itemFontColor . value [ appIdx . value ] [ i ] . color = '#323233'
}
}
}
2025-02-28 03:34:36 +00:00
const nowSelected = ref ( 0 ) //区别于加入购物车弹窗和立即预约弹窗
const btnText = ref ( '加入购物车' )
const statusChange = ( ) => {
if ( nowSelected . value === 2 ) {
btnText . value = '立即预约'
} else {
btnText . value = '加入购物车'
}
}
const selectStatus = ( ) => {
if ( btnText . value === '加入购物车' ) {
addCart ( )
} else {
goToBook ( )
}
}
const goToBook = ( ) => { //去预约方法
console . log ( '日期--->' , appointmentDate , '时间段--->' , timeSlot , '数量--->' , cnt . value , '商品id---->' , productObject . value . id ) ;
if ( appointmentDate === '' || timeSlot === '' ) {
uni . showToast ( {
icon : 'error' ,
title : "字段不能为空"
} )
return ;
}
console . log ( 'productObj--->' , productObject . value ) ;
console . log ( '数量--->' , cnt . value ) ;
uni . navigateTo ( { //跳转到待支付页面
//商品信息+数量
url : '/pages/order/singleServiceWait/singleServiceWait?obj=' + JSON . stringify ( productObject . value ) + '&cnt=' + JSON . stringify ( cnt . value ) + '&rest=' + JSON . stringify ( restNumber . value )
} )
}
2025-02-24 01:34:57 +00:00
< / script >
< style lang = "scss" scoped >
. ml - 15 {
margin - left : 28.13 rpx ;
}
. ml - 3 {
margin - left : 5.63 rpx ;
}
. mt - 91 {
margin - top : 170.63 rpx ;
}
. page {
padding : 0 20.63 rpx 48.75 rpx ;
background - color : # ffffff ;
border - radius : 37.5 rpx 37.5 rpx 0 rpx 0 rpx ;
width : 100 % ;
overflow - y : auto ;
overflow - x : hidden ;
height : 100 % ;
}
. group {
padding : 30 rpx 0 22.5 rpx ;
border - bottom : solid 1.88 rpx # d9d9d9 ;
}
. group _2 {
padding - left : 18.75 rpx ;
padding - right : 16.88 rpx ;
}
. image _2 {
margin - top : 7.5 rpx ;
border - radius : 5.63 rpx ;
width : 221.25 rpx ;
height : 232.5 rpx ;
}
. image {
width : 37.5 rpx ;
height : 37.5 rpx ;
}
. text {
margin - left : 6.92 rpx ;
color : # c35c5d ;
font - size : 37.5 rpx ;
font - family : Open Sans ;
line - height : 27.52 rpx ;
}
. font {
font - size : 26.25 rpx ;
font - family : Open Sans ;
line - height : 23.94 rpx ;
color : # 323233 ;
}
. text _2 {
line - height : 24.21 rpx ;
}
. font _2 {
font - size : 30 rpx ;
font - family : Open Sans ;
line - height : 27.71 rpx ;
color : # 323233 ;
}
. text _3 {
margin - left : 3.45 rpx ;
line - height : 27.86 rpx ;
}
. group _3 {
margin - right : 20.57 rpx ;
}
. text _4 {
color : # 000000 ;
line - height : 24.23 rpx ;
}
. equal - division {
margin - top : 43.13 rpx ;
}
. group _4 {
border - bottom : solid 1.88 rpx # d9d9d9 ;
padding - bottom : 40 rpx ;
- webkit - overflow - scrolling : touch ; /* 使滚动更加平滑 */
margin : 30 rpx auto ;
width : 100 % ;
overflow - x : auto ;
}
. group _4 : : - webkit - scrollbar {
display : none ; /* 隐藏滚动条 */
}
. section {
width : 150 rpx ;
margin : 0 15 rpx ;
}
. equal - division - item {
padding : 17.51 rpx 0 20.49 rpx ;
background - color : # ffffff ;
border - radius : 5.63 rpx ;
height : 106.88 rpx ;
border : solid 1.88 rpx # c35c5d ;
}
. font _3 {
font - size : 26.25 rpx ;
font - family : Open Sans ;
line - height : 19.29 rpx ;
color : # 323233 ;
}
. group _5 {
padding : 0 0 58.13 rpx ;
}
. list _2 {
margin - right : 3.77 rpx ;
// border-bottom: solid 1.88rpx #d9d9d9;
}
. list _2 : : - webkit - scrollbar {
display : none ; /* 隐藏滚动条 */
}
. my _grid {
margin : 0 auto ;
display : grid ;
grid - template - columns : repeat ( 3 , 1 fr ) ;
grid - template - rows : repeat ( 3 , 1 fr ) ;
row - gap : 20 rpx ;
column - gap : 40 rpx ;
overflow - y : auto ;
height : 350 rpx ;
}
. text - wrapper {
padding : 39.09 rpx 0 35.25 rpx ;
background - color : # f3f3f3 ;
border - radius : 5.63 rpx ;
height : 93.75 rpx ;
width : 200 rpx ;
margin - bottom : 20 rpx ;
}
. text _5 {
line - height : 19.41 rpx ;
}
. group _7 {
padding : 28.13 rpx 3.75 rpx 0 11.32 rpx ;
position : fixed ;
bottom : 180 rpx ;
left : 30 rpx ;
right : 30 rpx ;
}
. text _6 {
color : # 323232 ;
}
. image _3 {
border - radius : 9.38 rpx 0 rpx 0 rpx 9.38 rpx ;
width : 46.88 rpx ;
height : 46.88 rpx ;
}
. text - wrapper _2 {
padding : 15.02 rpx 0 13.13 rpx ;
background - color : # f3f3f3 ;
width : 46.88 rpx ;
height : 46.88 rpx ;
}
. text _7 {
color : # 323232 ;
line - height : 18.73 rpx ;
}
. image _4 {
border - radius : 0 rpx 9.38 rpx 9.38 rpx 0 rpx ;
width : 46.88 rpx ;
height : 46.88 rpx ;
}
. text - wrapper _3 {
width : 600 rpx ;
padding : 24.82 rpx 0 27.84 rpx ;
background - color : # fbdedf ;
border - radius : 37.5 rpx ;
position : fixed ;
bottom : 50 rpx ;
left : 0 ;
right : 0 ;
margin : 0 auto ;
}
. text _8 {
color : # c35c5d ;
line - height : 24.21 rpx ;
}
@ import url ( . . / . . / . . / common / css / global . css ) ;
< / style >