写真产品已完成

This commit is contained in:
chen-xin-zhi 2025-02-26 23:53:03 +08:00
parent d755959f05
commit 0d54aa847c
5 changed files with 56 additions and 11 deletions

View File

@ -4,4 +4,4 @@ export const suiUrl = 'http://154.8.193.216:9092/api' //隋宇霏的接口地
export const domain = 'https://www.carboner.cn/api'
export const myIp = 'http://8.130.119.119:9092/api'
export const baseUrl = Url
export const baseUrl = Url

View File

@ -1,5 +1,12 @@
{
"pages": [
{
"path" : "pages/book/photoProductsOrder/photoProductsOrder",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/book/photoProductDetail/photoProductDetail",
"style" :

View File

@ -44,22 +44,57 @@
:src="obj.detailImg"
/>
<view class="flex-col justify-start items-end section_3 pos_8">
<view class="flex-col justify-start items-center text-wrapper"><text class="font_3 text_5">立即预约</text></view>
<view class="flex-col justify-start items-center text-wrapper" @click="openBookingPopup">
<text class="font_3 text_5">立即预约</text></view>
</view>
</view>
<uni-popup ref="bookingSelected" :maskClick="false">
<view class="book-selected">
<bookingSelectedVue></bookingSelectedVue>
</view>
</uni-popup>
</template>
<script setup lang="ts">
import { onLoad } from "@dcloudio/uni-app";
import {ref} from 'vue'
import {nextTick, onMounted, ref} from 'vue'
import emitter from "../../../utils/emitter";
import bookingSelectedVue from "../component/bookingSelected.vue";
const obj = ref({})
const bookingSelected = ref(null)
onLoad((options) => {
console.log(options)
obj.value = JSON.parse(options.obj)
})
onMounted(() => {
emitter.on('closeBookingPopup', () => {
nextTick(() => {
if (bookingSelected.value) {
bookingSelected.value.close()
}
})
})
})
const openBookingPopup = () => {
bookingSelected.value.open('bottom')
}
</script>
<style lang="scss" scoped>
.book-selected {
height: 1100rpx;
justify-content: center;
background-color: #fff;
border-radius: 20rpx 20rpx 0 0;
}
.mt-11 {
margin-top: 20.63rpx;
}

View File

@ -9,14 +9,14 @@
/>
<text class="font text_1 mt-7">写真专区</text>
</view>
<view class="flex-col items-center equal-division-item_2 ml-48">
<view class="flex-col items-center equal-division-item_2 ml-48" @click="jumpToDetail(item)">
<image
class="image"
src="https://ide.code.fun/api/image?token=67be7f674ae84d0012275313&name=96be13306d195949440e67325578de26.png"
/>
<text class="font mt-7">摄影服务</text>
</view>
<view class="flex-col items-center equal-division-item_3 ml-48">
<view class="flex-col items-center equal-division-item_3 ml-48" @click="jumpToDetail(item)">
<image
class="image"
src="https://ide.code.fun/api/image?token=67be7f674ae84d0012275313&name=57485239f24eb48a22be8fce00be610d.png"

View File

@ -1,13 +1,16 @@
<template>
<confirmPopupVue></confirmPopupVue>
<!-- <feeTipsVue></feeTipsVue> -->
<bookingTipsVue></bookingTipsVue>
</template>
<script setup lang="ts">
import timeSelectVue from '../workshop/component/timeSelect.vue';
import tipVue from '../workshop/component/tip.vue';
import couponPopupVue from '../coupon/component/couponPopup.vue';
import confirmPopupVue from '../coupon/component/confirmPopup.vue';
// import timeSelectVue from '../workshop/component/timeSelect.vue';
// import tipVue from '../workshop/component/tip.vue';
// import couponPopupVue from '../coupon/component/couponPopup.vue';
// import confirmPopupVue from '../coupon/component/confirmPopup.vue';
// import bookingSelectedVue from '../book/component/bookingSelected.vue';
import feeTipsVue from '../book/component/feeTips.vue';
import bookingTipsVue from '../book/component/bookingTips.vue';
</script>
<style scoped lang="scss">