jiangchengfeiyi-xiaochengxu/pages/workshop/productmain/productmain.vue

400 lines
9.3 KiB
Vue
Raw Normal View History

2024-12-10 07:05:57 +00:00
<template>
2025-03-24 03:33:28 +00:00
<view class="flex-col page" :style="{ backgroundImage: 'url(' + bkgPubilcPath + ')' }">
2024-12-10 07:05:57 +00:00
<view class="flex-col self-stretch section">
<image
2025-03-19 07:16:09 +00:00
class="image_3" mode="aspectFill"
:src="publicPath + productObject.goodImg"
2024-12-10 07:05:57 +00:00
/>
<view class="flex-col list">
<view class="flex-col section_3">
<view class="self-start group">
<text class="font_2 text_3"></text>
2024-12-12 02:14:25 +00:00
<text class="text_2">{{ productObject.price }}</text>
2024-12-10 07:05:57 +00:00
</view>
<view class="flex-col self-stretch mt-15">
2024-12-12 02:14:25 +00:00
<text class="font text_4">{{ productObject.name }}</text>
2024-12-10 07:05:57 +00:00
<text class="font_2 text_5 mt-11">
2025-03-23 10:32:01 +00:00
{{ productObject.intro }}
2024-12-10 07:05:57 +00:00
</text>
</view>
2025-03-23 10:32:01 +00:00
<!-- <view class="flex-row items-baseline self-stretch group_2 mt-15">
2025-01-09 02:50:05 +00:00
<text class="font_3" style="margin-left: 0;">最近可预约时间{{ specificDate }}</text>
<text class="font_3 ml-1" style="margin-left: 20rpx;">{{ specificTime }}</text>
2025-03-17 10:10:19 +00:00
</view> -->
2024-12-10 07:05:57 +00:00
</view>
2025-03-26 03:45:49 +00:00
2025-03-23 10:32:01 +00:00
<view class="flex-col section_4 mt-6">
2025-03-26 03:45:49 +00:00
<rich-text class="richText" :nodes="productObject.richText"></rich-text>
<!-- <text class="self-start font text_6">用户须知</text>
2024-12-10 07:05:57 +00:00
<text class="self-start font_2 text_7 text_1 mt-16">
1.请根据预约时间提前10-15分钟到达活动地点以便顺利参与体验
</text>
<text class="self-start font_2 text_8 mt-16">2.穿着轻便易清洗的衣物以防止材料染色</text>
<text class="self-stretch font_2 text_9 mt-16">
3.如您在购买服务后因个人原因需要取消服务或者变更服务的预约时间请您务必联系我们的客服
</text>
<text class="self-start font_2 text_7 mt-16">
4.只要您在体验活动开始前取消购买我们将为您提供全额退款服务
</text>
<text class="self-stretch font_2 text_10 mt-16">
5.如遇特殊情况如突发疾病或其他不可抗力因素请及时与客服沟通我们将根据实际情况处理退款事宜
2025-03-26 03:45:49 +00:00
</text> -->
2025-03-23 10:32:01 +00:00
</view>
2025-03-26 03:45:49 +00:00
2024-12-10 07:05:57 +00:00
</view>
<view class="flex-row section_5">
<view class="flex-col items-center shrink-0 self-start">
2025-03-25 12:58:10 +00:00
<button style="background-color: #ffffff;" class="flex-col" open-type="contact" bindcontact="handleContact" session-from="sessionFrom">
2024-12-10 07:05:57 +00:00
<image
class="image_4"
2025-03-17 10:10:19 +00:00
:src="workshopUrl + '/productmain/lxkf.png'"
2024-12-10 07:05:57 +00:00
/>
<text class="text_13 mt-3">客服</text>
2025-03-25 12:58:10 +00:00
</button>
2024-12-10 07:05:57 +00:00
</view>
<view class="flex-row flex-1 self-center ml-26">
<view class="flex-col justify-start items-center text-wrapper" @click="loadPopCart">
2024-12-10 07:05:57 +00:00
<text class="font_3 text_11">加入购物车</text>
</view>
<view class="flex-col justify-start items-center text-wrapper_2 ml-31" @click="loadPopBook">
2024-12-10 07:05:57 +00:00
<text class="font text_12">立即预约</text>
</view>
</view>
</view>
</view>
2025-03-17 10:10:19 +00:00
<!-- <text class="self-start text_14">服务详情</text> -->
2025-03-26 03:45:49 +00:00
<!-- <image
2024-12-10 07:05:57 +00:00
class="self-stretch image_5"
2024-12-12 02:14:25 +00:00
:src="productObject.detailImg"
mode="aspectFill"
2025-03-26 03:45:49 +00:00
/> -->
2024-12-10 07:05:57 +00:00
</view>
2024-12-12 02:14:25 +00:00
<uni-popup ref="popup" background-color="#fff">
<view class="popup-content">
2025-02-24 01:34:57 +00:00
<timeSelectVue></timeSelectVue>
2024-12-12 02:14:25 +00:00
</view>
</uni-popup>
2024-12-10 07:05:57 +00:00
</template>
<script setup>
2025-03-09 10:55:38 +00:00
import { ref,onMounted, nextTick, onUnmounted } from 'vue'
2024-12-12 02:14:25 +00:00
import { onLoad } from "@dcloudio/uni-app";
2025-03-12 13:15:24 +00:00
import { getFonts } from '../../../common/globalFont';
2024-12-12 02:14:25 +00:00
import { baseUrl } from '../../../api/request';
2025-03-16 16:46:57 +00:00
import { workshopUrl } from '../../../common/globalImagesUrl';
2025-02-24 01:34:57 +00:00
import timeSelectVue from '../component/timeSelect.vue';
2024-12-12 02:14:25 +00:00
import emitter from '../../../utils/emitter' //导入emitter传值组件
2025-03-24 03:33:28 +00:00
import { publicPath,bkgPubilcPath } from '../../../common/globalImagesUrl';
2024-12-12 02:14:25 +00:00
const pid = ref(0) //商品id
const cookie = wx.getStorageSync("cookie") //请求头
const productObject = ref({})
const popup = ref(null) //弹窗对象
2025-02-24 01:34:57 +00:00
const pObj = {}
2025-03-02 03:27:11 +00:00
const appointmentDateVOList = ref([])
2025-03-09 10:55:38 +00:00
const closeTimeDialogHandler = () => {
close()
}
2024-12-12 02:14:25 +00:00
onMounted(()=>{
2025-03-09 10:55:38 +00:00
emitter.on('closeTimeDialog', closeTimeDialogHandler)
2024-12-12 02:14:25 +00:00
})
2025-03-09 10:55:38 +00:00
onUnmounted(() => {
emitter.off('closeTimeDialog', closeTimeDialogHandler)
})
2024-12-12 02:14:25 +00:00
onLoad((options)=>{
2025-03-12 13:15:24 +00:00
getFonts()
2024-12-12 02:14:25 +00:00
pid.value = JSON.parse(options.info)
getProduct()
2025-02-24 01:34:57 +00:00
getBookingNumberMap()
2024-12-12 02:14:25 +00:00
})
2025-02-24 01:34:57 +00:00
const getProduct = async () =>{
2024-12-12 02:14:25 +00:00
const res = await uni.request({
url: baseUrl + '/goods/service/list/id',
method: 'POST',
data: {
id: pid.value
},
header: {
cookie
}
})
console.log('单个服务类商品信息---->',res.data.data);
2024-12-12 02:14:25 +00:00
if(res.data.code === 1) {
productObject.value = res.data.data
2025-03-02 03:27:11 +00:00
appointmentDateVOList.value = res.data.data.appointmentDateVOList
2024-12-12 02:14:25 +00:00
} else {
uni.showToast({
icon: 'error',
title: "请求错误"
})
return;
}
}
2025-02-24 01:34:57 +00:00
let countMap = new Map()
const getBookingNumberMap = async () => {
const res = await uni.request({
url: baseUrl + '/pending/list/advance/count',
method: 'POST',
data: {
id: pid.value
},
header: {
cookie
}
})
countMap = res.data.data
console.log(countMap)
}
2024-12-12 02:14:25 +00:00
const close =()=> { //关闭弹窗
nextTick(()=>{
popup.value.close()
})
2024-12-12 02:14:25 +00:00
}
2025-03-02 03:27:11 +00:00
const check = () => {
if (appointmentDateVOList.value.length === 0) {
uni.showModal({
title: '提示',
content: '当前服务类商品的所有时段已约满',
showCancel: false
})
return true;
}
return false
}
const loadPopCart =()=> {
2025-03-02 03:27:11 +00:00
if(check()) {
return ;
}
2025-02-24 01:34:57 +00:00
emitter.emit('getGoodData', productObject.value)
emitter.emit('getBookingNumberMap', countMap)
2024-12-12 02:14:25 +00:00
popup.value.open('bottom') //从底部弹
emitter.emit('count',1) //区别于加入购物车弹窗和立即预约弹窗
}
const loadPopBook = ()=> {
2025-03-02 03:27:11 +00:00
if (check()) {
return ;
}
emitter.emit('getGoodData', productObject.value)
emitter.emit('getBookingNumberMap', countMap)
popup.value.open('bottom') //从底部弹
emitter.emit('count',2) //区别于加入购物车弹窗和立即预约弹窗
2024-12-12 02:14:25 +00:00
}
2025-02-24 01:34:57 +00:00
2024-12-10 07:05:57 +00:00
</script>
<style lang="scss" scoped>
2025-03-26 03:45:49 +00:00
.richText {
word-break:break-all;
word-wrap:break-word;
}
2025-03-25 12:58:10 +00:00
button::after {
border: none;
}
2024-12-12 02:14:25 +00:00
.popup-content {
2025-02-24 01:34:57 +00:00
height: 85vh;
2024-12-12 02:14:25 +00:00
}
2024-12-10 07:05:57 +00:00
.ml-13 {
margin-left: 24.38rpx;
}
.mt-11 {
margin-top: 20.63rpx;
}
.mt-15 {
margin-top: 28.13rpx;
}
.ml-1 {
margin-left: 1.88rpx;
}
.mt-3 {
margin-top: 5.63rpx;
}
.ml-31 {
margin-left: 58.13rpx;
}
.page {
background-color: #ffffff;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
2025-03-26 03:45:49 +00:00
height: 100vh;
2024-12-10 07:05:57 +00:00
}
.section {
padding-bottom: 41.25rpx;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.section_2 {
padding: 22.5rpx 22.5rpx 20.63rpx;
background-color: #ffffff;
}
.image_2 {
width: 33.75rpx;
height: 35.63rpx;
}
.font {
font-size: 30rpx;
2025-03-19 07:16:09 +00:00
font-family: FangZhengFonts;
2024-12-10 07:05:57 +00:00
line-height: 29.7rpx;
}
.text {
2025-03-25 12:58:10 +00:00
color: #323232;
2024-12-10 07:05:57 +00:00
line-height: 28.37rpx;
}
.image {
border-radius: 50%;
width: 46.88rpx;
height: 46.88rpx;
}
.image_3 {
margin-top: 15rpx;
width: 100vw;
height: 70vw;
}
.list {
2025-03-26 03:45:49 +00:00
// margin-top: 18.75rpx;
2024-12-10 07:05:57 +00:00
}
.section_3 {
padding: 36.73rpx 17.1rpx 39.64rpx 17.12rpx;
2025-03-26 03:45:49 +00:00
width: 726rpx;
margin: 0 auto;
background-color: #fff;
border-radius: 18.75rpx;
2024-12-10 07:05:57 +00:00
}
.group {
margin-left: 12.04rpx;
line-height: 29.7rpx;
}
.font_2 {
font-size: 26.25rpx;
2025-03-19 07:16:09 +00:00
font-family: FangZhengFonts;
2024-12-10 07:05:57 +00:00
line-height: 31.88rpx;
color: #323232;
}
.text_3 {
color: #ff0000;
line-height: 16.91rpx;
}
.text_2 {
color: #ff0000;
font-size: 45rpx;
2025-03-19 07:16:09 +00:00
font-family: FangZhengFonts;
2024-12-10 07:05:57 +00:00
line-height: 29.7rpx;
}
.text_4 {
2024-12-12 02:14:25 +00:00
margin-left: 14rpx;
2024-12-10 07:05:57 +00:00
color: #323233;
line-height: 35.63rpx;
}
.text_5 {
margin-left: 5.79rpx;
margin-right: 3.58rpx;
}
.group_2 {
padding: 0 14.94rpx;
}
.font_3 {
font-size: 26.25rpx;
2025-03-19 07:16:09 +00:00
font-family: FangZhengFonts;
2024-12-10 07:05:57 +00:00
line-height: 24.92rpx;
2025-03-25 12:58:10 +00:00
color: #323232;
2024-12-10 07:05:57 +00:00
}
.section_4 {
2025-03-26 03:45:49 +00:00
background-color: #ffffff;
border-radius: 18.75rpx;
width: 726rpx;
padding: 20rpx;
margin: 20rpx auto 160rpx;
2024-12-10 07:05:57 +00:00
}
.text_6 {
margin-left: 3.71rpx;
color: #323232;
line-height: 28.01rpx;
text-decoration: underline;
}
.text_7 {
width: 648.75rpx;
}
.text_1 {
margin-left: 3.66rpx;
}
.text_8 {
margin-left: 3.86rpx;
line-height: 25.63rpx;
}
.text_9 {
margin-left: 3.96rpx;
}
.text_10 {
margin-left: 3.96rpx;
margin-right: 3.77rpx;
}
.section_5 {
position: fixed;
left: 0;
right: 0;
bottom: 0;
2025-03-17 10:10:19 +00:00
margin-top: 31.88rpx;
padding: 22.5rpx 33.75rpx 30.13rpx 39.38rpx;
background-color: #ffffff;
2024-12-10 07:05:57 +00:00
}
.image_4 {
width: 46.88rpx;
height: 46.88rpx;
}
.text_13 {
color: #9d2624;
font-size: 22.5rpx;
font-family: Open Sans;
line-height: 20.72rpx;
}
.text-wrapper {
padding: 29.1rpx 0 28.69rpx;
flex: 1 1 260.63rpx;
2025-03-02 03:27:11 +00:00
background-color: #e79ea1;
2024-12-10 07:05:57 +00:00
border-radius: 93.75rpx;
height: 82.5rpx;
}
.text_11 {
color: #ffffff;
line-height: 24.71rpx;
}
.text-wrapper_2 {
padding: 26.49rpx 0 28.57rpx;
flex: 1 1 260.63rpx;
2025-03-02 03:27:11 +00:00
background-color: #c35c5d;
2024-12-10 07:05:57 +00:00
border-radius: 93.75rpx;
height: 82.5rpx;
}
.text_12 {
color: #ffffff;
line-height: 27.43rpx;
}
.text_14 {
margin-left: 4.74rpx;
margin-top: 32.87rpx;
2025-03-25 12:58:10 +00:00
color: #323232;
2024-12-10 07:05:57 +00:00
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.71rpx;
}
.image_5 {
2024-12-12 02:14:25 +00:00
margin: 18.17rpx 0 140.17rpx 0;
2024-12-10 07:05:57 +00:00
width: 100vw;
2024-12-12 02:14:25 +00:00
// height: 531.5vw;
2024-12-10 07:05:57 +00:00
}
@import url(../../../common/css/global.css);
</style>