ui修改.

This commit is contained in:
18631081161 2025-12-09 01:18:51 +08:00
parent 83668500df
commit a3e160ffe1
7 changed files with 1080 additions and 767 deletions

View File

@ -320,7 +320,7 @@ const handleJoin = () => {
.info-text { .info-text {
font-family: PingFang SC, PingFang SC; font-family: PingFang SC, PingFang SC;
font-weight: 400; font-weight: 400;
font-size:18rpx; font-size:24rpx;
color: #575757; color: #575757;
text-align: left; text-align: left;
display: block; display: block;

View File

@ -113,7 +113,8 @@
<view v-if="reservationInfo.deposit_fee === -1" :style="{ height: lineHeight }"></view> <view v-if="reservationInfo.deposit_fee === -1" :style="{ height: lineHeight }"></view>
<label-slect-field v-if="reservationInfo.deposit_fee === -1" label="金额"> <label-slect-field v-if="reservationInfo.deposit_fee === -1" label="金额">
<view class="input-wrapper"> <view class="input-wrapper">
<up-input type="number" placeholder="请输入0-50" v-model="customDeposit" @input="onCustomDepositInput"></up-input> <up-input type="number" placeholder="请输入0-50" v-model="customDeposit"
@input="onCustomDepositInput"></up-input>
</view> </view>
</label-slect-field> </label-slect-field>
<view :style="{ height: lineHeight }"></view> <view :style="{ height: lineHeight }"></view>
@ -137,34 +138,34 @@
</view> </view>
</view> </view>
<up-datetime-picker :show="datePickerVisible" v-model="datePickerValue" mode="date" <up-datetime-picker :show="datePickerVisible" v-model="datePickerValue" mode="date" :minDate="datePickerMinDate"
:minDate="datePickerMinDate" :maxDate="datePickerMaxDate" title="选择日期" @confirm="onDatePickerConfirm" :maxDate="datePickerMaxDate" title="选择日期" @confirm="onDatePickerConfirm"
@cancel="() => datePickerVisible = false" @close="() => datePickerVisible = false"></up-datetime-picker> @cancel="() => datePickerVisible = false" @close="() => datePickerVisible = false"></up-datetime-picker>
<up-datetime-picker :show="latestDateTimePickerVisible" v-model="latestDateTimePickerValue" mode="time" <up-datetime-picker :show="latestDateTimePickerVisible" v-model="latestDateTimePickerValue" mode="time"
:minHour="latestDateTimeMinHour" :maxHour="latestDateTimeMaxHour" :minHour="latestDateTimeMinHour" :maxHour="latestDateTimeMaxHour" :minMinute="latestDateTimeMinMinute"
:minMinute="latestDateTimeMinMinute" :maxMinute="latestDateTimeMaxMinute" :maxMinute="latestDateTimeMaxMinute" title="选择最晚到店时间" @confirm="onLatestDateTimePickerConfirm"
title="选择最晚到店时间" @confirm="onLatestDateTimePickerConfirm" @cancel="() => latestDateTimePickerVisible = false"
@cancel="() => latestDateTimePickerVisible = false" @close="() => latestDateTimePickerVisible = false"></up-datetime-picker> @close="() => latestDateTimePickerVisible = false"></up-datetime-picker>
<up-picker title="年龄范围选择" :show="agePickerVisible" :columns="agePickerColumns" :keyName="'text'" <up-picker title="年龄范围选择" :show="agePickerVisible" :columns="agePickerColumns" :keyName="'text'"
:defaultIndex="agePickerDefaultIndex" @confirm="onAgePickerConfirm" @cancel="() => agePickerVisible = false" :defaultIndex="agePickerDefaultIndex" @confirm="onAgePickerConfirm" @cancel="() => agePickerVisible = false"
@close="() => agePickerVisible = false"></up-picker> @close="() => agePickerVisible = false"></up-picker>
<uni-popup ref="submitPopupRef" type="center" :isMaskClick="false"> <uni-popup ref="submitPopupRef" type="center" :isMaskClick="false">
<view style="width: 90vw;height:300rpx;background-color: #fff;border-radius: 20rpx;"> <view style="width: 90vw; background-color: #fff; border-radius: 20rpx; padding: 20rpx;">
<view> <view>
<view style="height: 80rpx;"></view> <view style="height: 80rpx;"></view>
<view style="font-size: 32rpx;font-weight: 500;color: #000;text-align: center;">发起预约成功</view> <view style="font-size: 32rpx;font-weight: 500;color: #000;text-align: center;">发起预约成功</view>
<view style="height:100rpx;"></view> <view style="height:100rpx;"></view>
<view style="display: flex;width: 100%;height:100rpx;"> <view style="display: flex; width: 100%; height:100rpx;">
<button @click.stop open-type="share" <button @click.stop open-type="share"
style=" background-color:#00AC4E;color: #fff;width: 50%;height: 100%; background-color:#00AC4E;" style="background-color:#00AC4E; color: #fff;width: 45%;height: 100%; margin-left: 0;" class="center"
class="center evaluate-btn" :data-item="reservationData"> :data-item="reservationData">
<text class="evaluate-btn-text">分享给好友</text> <text class="evaluate-btn-text">分享给好友</text>
</button> </button>
<view <view
style="width: 50%;height: 100%;background-color: #f7f7f7;display: flex;align-items: center;justify-content: center;" style="width: 45%; height: 100%;background-color: #f7f7f7;display: flex;align-items: center;justify-content: center; border-radius: 10rpx;"
@click="handleClosePopup"> @click="handleClosePopup">
<text>关闭</text> <text>关闭</text>
</view> </view>
@ -189,7 +190,9 @@
getSubscribeMessage, getSubscribeMessage,
configData configData
} from '@/common/server/config' } from '@/common/server/config'
import { onShareAppMessage } from '@dcloudio/uni-app'; import {
onShareAppMessage
} from '@dcloudio/uni-app';
import { import {
usePay usePay
} from '@/common/server/interface/user' } from '@/common/server/interface/user'
@ -421,11 +424,19 @@
* 获取时间段的时间范围限制 * 获取时间段的时间范围限制
*/ */
const getTimeSlotRange = () => { const getTimeSlotRange = () => {
if (!selectedTimeSlot.value || selectedTimeSlot.value === null || selectedTimeSlot.value === undefined) { if (selectedTimeSlot.value === null || selectedTimeSlot.value === undefined) {
return { minHour: 0, maxHour: 23, minMinute: 0, maxMinute: 59 }; return {
minHour: 0,
maxHour: 23,
minMinute: 0,
maxMinute: 59
};
} }
let minHour = 0, maxHour = 23, minMinute = 0, maxMinute = 59; let minHour = 0,
maxHour = 23,
minMinute = 0,
maxMinute = 59;
switch (selectedTimeSlot.value) { switch (selectedTimeSlot.value) {
case 0: // 00:00-05:59 case 0: // 00:00-05:59
@ -454,7 +465,12 @@
break; break;
} }
return { minHour, maxHour, minMinute, maxMinute }; return {
minHour,
maxHour,
minMinute,
maxMinute
};
} }
/** /**
@ -469,7 +485,7 @@
return; return;
} }
if (!selectedTimeSlot.value || selectedTimeSlot.value === null || selectedTimeSlot.value === undefined) { if (selectedTimeSlot.value === null || selectedTimeSlot.value === undefined) {
uni.showToast({ uni.showToast({
title: '请先选择时间段', title: '请先选择时间段',
icon: 'none' icon: 'none'
@ -687,8 +703,24 @@
// //
const handleClosePopup = () => { const handleClosePopup = () => {
submitPopupRef.value.close() submitPopupRef.value.close()
refreshPrevPageRoomList()
goBack() goBack()
} }
//
const refreshPrevPageRoomList = () => {
const pages = getCurrentPages()
if (!pages || pages.length < 2) return
const prevPage = pages[pages.length - 2]
const vm = prevPage?.$vm || prevPage
if (vm && typeof vm.loadRoomList === 'function') {
vm.loadRoomList()
return
}
if (vm && typeof vm.loadDates === 'function') {
vm.loadDates()
}
}
const maxPlayerCount = ref(0) const maxPlayerCount = ref(0)
const peopleRange = ref([]) const peopleRange = ref([])
@ -744,26 +776,50 @@
return gameRule ? gameRule.text : ''; return gameRule ? gameRule.text : '';
} }
const smokingOptions = ref([ const smokingOptions = ref([{
{ value: 2, text: '不禁烟' }, value: 2,
{ value: 1, text: '禁烟' }, text: '不禁烟'
]) },
const genderOptions = ref([ {
{ value: 0, text: '不限' }, value: 1,
{ value: 1, text: '男' }, text: '禁烟'
{ value: 2, text: '女' }, },
]) ])
const depositOptions = ref([ const genderOptions = ref([{
{ value: 0, text: '0元' }, value: 0,
{ value: 5, text: '5元' }, text: '不限'
{ value: 10, text: '10元' }, },
{ value: -1, text: '自定义' }, {
]) value: 1,
text: '男'
},
{
value: 2,
text: '女'
},
])
const depositOptions = ref([{
value: 0,
text: '0元'
},
{
value: 5,
text: '5元'
},
{
value: 10,
text: '10元'
},
{
value: -1,
text: '自定义'
},
])
const currentValue = ref(0) const currentValue = ref(0)
const customDeposit = ref('') const customDeposit = ref('')
const onCustomDepositInput = (val) => { const onCustomDepositInput = (val) => {
// //
let v = String(val).replace(/[^0-9]/g, '') let v = String(val).replace(/[^0-9]/g, '')
if (v === '') v = '0' if (v === '') v = '0'
@ -771,7 +827,7 @@ const onCustomDepositInput = (val) => {
if (n > 50) n = 50 if (n > 50) n = 50
if (n < 0) n = 0 if (n < 0) n = 0
customDeposit.value = String(n) customDeposit.value = String(n)
} }
const increment = () => { const increment = () => {
if (currentValue.value < 5) { if (currentValue.value < 5) {
@ -943,7 +999,10 @@ const onCustomDepositInput = (val) => {
if (finalDeposit === -1) { if (finalDeposit === -1) {
const n = Number(customDeposit.value || 0) const n = Number(customDeposit.value || 0)
if (isNaN(n) || n < 0 || n > 50) { if (isNaN(n) || n < 0 || n > 50) {
uni.showToast({ title: '自定义金额需在0-50之间', icon: 'none' }) uni.showToast({
title: '自定义金额需在0-50之间',
icon: 'none'
})
return return
} }
finalDeposit = n finalDeposit = n
@ -1102,11 +1161,18 @@ const onCustomDepositInput = (val) => {
* 加载房间详情用于预约页面 * 加载房间详情用于预约页面
*/ */
const loadRoomDetailForReservation = async (roomId, date) => { const loadRoomDetailForReservation = async (roomId, date) => {
console.log('loadRoomDetailForReservation 调用参数:', { roomId, date, dateType: typeof date }); console.log('loadRoomDetailForReservation 调用参数:', {
roomId,
date,
dateType: typeof date
});
// //
if (!roomId || !date) { if (!roomId || !date) {
console.error('loadRoomDetailForReservation 参数无效:', { roomId, date }); console.error('loadRoomDetailForReservation 参数无效:', {
roomId,
date
});
uni.showToast({ uni.showToast({
title: '参数错误', title: '参数错误',
icon: 'none' icon: 'none'
@ -1141,7 +1207,7 @@ const onCustomDepositInput = (val) => {
peopleText.value = "请选择游玩人数"; peopleText.value = "请选择游玩人数";
t.push({ t.push({
value: 1, value: 1,
text:'无需组局' text: '无需组局'
}); });
for (let i = 2; i <= detail.capacity; i++) { for (let i = 2; i <= detail.capacity; i++) {
t.push({ t.push({
@ -1185,17 +1251,32 @@ const onCustomDepositInput = (val) => {
// //
const timeRangeMap = { const timeRangeMap = {
0: { text: '凌晨', range: '00:00-05:59' }, 0: {
1: { text: '上午', range: '06:00-11:59' }, text: '凌晨',
2: { text: '下午', range: '12:00-17:59' }, range: '00:00-05:59'
3: { text: '晚上', range: '18:00-23:59' } },
1: {
text: '上午',
range: '06:00-11:59'
},
2: {
text: '下午',
range: '12:00-17:59'
},
3: {
text: '晚上',
range: '18:00-23:59'
}
}; };
// //
const availableSlots = timeSlots.filter(slot => slot.status === 'available'); const availableSlots = timeSlots.filter(slot => slot.status === 'available');
timeSlotOptions.value = availableSlots.map(slot => { timeSlotOptions.value = availableSlots.map(slot => {
const slotInfo = timeRangeMap[slot.slot_type] || { text: slot.slot_name, range: '' }; const slotInfo = timeRangeMap[slot.slot_type] || {
text: slot.slot_name,
range: ''
};
// //
let displayText = slotInfo.text; let displayText = slotInfo.text;
if (slotInfo.range) { if (slotInfo.range) {
@ -1382,7 +1463,11 @@ const onCustomDepositInput = (val) => {
} }
// //
onShareAppMessage(({ from, target, webViewUrl }) => { onShareAppMessage(({
from,
target,
webViewUrl
}) => {
console.log('onShareAppMessage', from, target, webViewUrl); console.log('onShareAppMessage', from, target, webViewUrl);
var resid = 0; var resid = 0;
if (target != null && target.dataset && target.dataset.item) { if (target != null && target.dataset && target.dataset.item) {

View File

@ -1,82 +1,74 @@
<template> <template>
<view class="content column"> <view class="content column">
<view class="column" style="width: 100%; height: 308rpx; background-color: white;"> <view class="column header-container">
<view style="flex: 1;"></view> <view class="flex-1"></view>
<text class="page-title">发起预约</text> <text class="page-title">发起预约</text>
<view class="row" style="width: 90%; height: 120rpx; margin: 20rpx auto 0;"> <view class="row date-row">
<view class="column center" v-for="(item, index) in dateList" :key="index" :style="setBgColor(index)" <view class="column center date-item" v-for="(item, index) in dateList" :key="index"
@click="clickTime(index)" style="width: 96rpx; height: 100%;"> :style="setBgColor(index)" @click="clickTime(index)">
<text style="font-size: 26rpx;">{{ item.time }}</text> <text class="date-item-time">{{ item.time }}</text>
<text style="font-size: 22rpx;">{{ item.weekday }}</text> <text class="date-item-weekday">{{ item.weekday }}</text>
</view> </view>
</view> </view>
</view> </view>
<text style="margin-top: 20rpx; margin-left: 32rpx; font-size: 24rpx;">{{ getBusinessAnnouncement() }}</text> <text class="announcement-text">{{ getBusinessAnnouncement() }}</text>
<view class="row" <view class="row toggle-bar">
style="width: 686rpx; height: 56rpx; background-color: #2ED9BF; border-radius: 5rpx; margin: 20rpx auto 0; align-items: center;"> <text class="toggle-label">查看当前时段空闲时间</text>
<text style="font-size: 22rpx; color: #262626; margin-left: 16rpx;">查看当前时段空闲时间</text> <up-switch class="toggle-switch" v-model="value" @change="change" size="20"></up-switch>
<up-switch style="margin-right: 16rpx; margin-left: auto; " v-model="value" @change="change"
size="20"></up-switch>
</view> </view>
<view class="" style="width: 100%; flex: 1; margin-top: 12rpx; overflow-y: auto;"> <view class="list-container">
<!-- 加载状态 --> <!-- 加载状态 -->
<view v-if="loading" class="center" style="padding: 60rpx 0;"> <view v-if="loading" class="center loading-placeholder">
<text style="color: #999;">加载中...</text> <text class="muted-text">加载中...</text>
</view> </view>
<!-- 空数据提示 --> <!-- 空数据提示 -->
<view v-else-if="roomList.length === 0" class="center" style="padding: 60rpx 0;"> <view v-else-if="roomList.length === 0" class="center loading-placeholder">
<text style="color: #999;">暂无房间数据</text> <text class="muted-text">暂无房间数据</text>
</view> </view>
<!-- 房间列表 --> <!-- 房间列表 -->
<view class="" v-for="item in roomList" :key="item.id" <view class="room-card" v-for="item in roomList" :key="item.id" @click.stop="handleRoomClick(item)">
style="position: relative; width: 706rpx; height: 270rpx; border-radius: 20rpx; background-color: white; margin: 0 auto 20rpx;"
@click.stop="handleRoomClick(item)">
<image :src="item.image_url || '/static/default_room.jpg'" <image :src="item.image_url || '/static/default_room.jpg'" class="room-image" mode="aspectFill"></image>
style="width: 180rpx; height: 156rpx; background-color: #DEDEDE; border-radius: 14rpx; position: absolute; top: 10rpx; left: 10rpx;"
mode="aspectFill"></image>
<view class="column" style=" position: absolute; left: 200rpx; top: 20rpx;"> <view class="column room-info">
<text style="font-size: 28rpx;">{{ item.name }}</text> <text class="room-name">{{ item.name }}</text>
<text style="font-size: 20rpx;">{{ item.room_type_name }}</text> <text class="room-type">{{ item.room_type_name }}</text>
<text style="font-size: 24rpx; margin-top: 24rpx;">{{ item.standard_price_desc || '价格详询' }}</text> <text class="room-price">{{ item.standard_price_desc || '价格详询' }}</text>
<text style="font-size: 24rpx; color: #FF0000;">会员价{{ item.member_price_desc || '详询' }}</text> <text class="room-member-price">会员价{{ item.member_price_desc || '详询' }}</text>
</view> </view>
<text v-if="item.status === 'using'" <!-- <text v-if="item.status === 'using'" class="room-status-using">当前使用中</text> -->
style="font-size: 20rpx; position: absolute; top: 10rpx; right: 16rpx; color: #FF9901;">当前使用中</text>
<view class="center reservation-btn" :class="{ 'reservation-btn-disabled': !hasAvailableSlots(item) }" <view class="center reservation-btn" :class="{ 'reservation-btn-disabled': !hasAvailableSlots(item) }"
@click.stop="hasAvailableSlots(item) && handleReservation(item)"> @click.stop="hasAvailableSlots(item) && handleReservation(item)">
预约 预约
</view> </view>
<view class="row" style="align-items: center; position: absolute; left: 10rpx; bottom: 60rpx;"> <view class="row legend-row">
<view style="width: 24rpx; height: 4rpx; background-color: #FF9901;"></view> <view class="legend-block legend-reserved"></view>
<text style="font-size: 16rpx; color: #323232; margin-left: 8rpx;">已预定时段</text> <text class="legend-text">已预定时段</text>
<view style="width: 24rpx; height: 4rpx; background-color: #52c41a; margin-left: 22rpx;"></view> <view class="legend-block legend-available"></view>
<text style="font-size: 16rpx; color: #323232; margin-left: 8rpx;">可预定时段</text> <text class="legend-text">可预定时段</text>
<view style="width: 24rpx; height: 4rpx; background-color: #E6E6E6; margin-left: 22rpx;"></view> <view class="legend-block legend-unavailable"></view>
<text style="font-size: 16rpx; color: #323232; margin-left: 8rpx;">不可预定时段</text> <text class="legend-text">不可预定时段</text>
</view> </view>
<view class="row" style="align-items: center; position: absolute; left: 10rpx; bottom: 14rpx;"> <view class="row slot-row">
<view class="column center" style="margin-right: 20rpx;" v-for="slot in item.time_slots" <view class="column center slot-item" v-for="slot in item.time_slots" :key="slot.slot_type">
:key="slot.slot_type"> <view class="slot-bar" :style="{ backgroundColor: getSlotColor(slot.status) }">
<view :style="{ width: '70rpx', height: '4rpx', backgroundColor: getSlotColor(slot.status) }">
</view> </view>
<text style="font-size: 12rpx; margin-top: 4rpx;">{{ slot.slot_name }}</text> <text class="slot-label">{{ slot.slot_name }}</text>
</view> </view>
</view> </view>
@ -90,16 +82,16 @@
<view class="room-detail-popup"> <view class="room-detail-popup">
<!-- 关闭按钮 --> <!-- 关闭按钮 -->
<view class="popup-close" @click="closeRoomDetail"> <view class="popup-close" @click="closeRoomDetail">
<text style="font-size: 40rpx; color: #999;">×</text> <text class="popup-close-text">×</text>
</view> </view>
<!-- 加载状态 --> <!-- 加载状态 -->
<view v-if="roomDetailLoading" class="popup-loading center"> <view v-if="roomDetailLoading" class="popup-loading center">
<text style="color: #999;">加载中...</text> <text class="popup-loading-text">加载中...</text>
</view> </view>
<!-- 房间详情内容 --> <!-- 房间详情内容 -->
<scroll-view v-else-if="roomDetail" scroll-y class="popup-content" :style="{ maxHeight: '80vh' }"> <scroll-view v-else-if="roomDetail" scroll-y class="popup-content">
<!-- 图片轮播 --> <!-- 图片轮播 -->
<view class="detail-swiper-container"> <view class="detail-swiper-container">
<swiper v-if="roomDetailImages && roomDetailImages.length > 0" class="detail-swiper" <swiper v-if="roomDetailImages && roomDetailImages.length > 0" class="detail-swiper"
@ -164,13 +156,8 @@
<view v-for="slot in roomDetail.time_slots" :key="slot.slot_type" class="time-slot-item"> <view v-for="slot in roomDetail.time_slots" :key="slot.slot_type" class="time-slot-item">
<view class="time-slot-header"> <view class="time-slot-header">
<text class="time-slot-name">{{ slot.slot_name }}</text> <text class="time-slot-name">{{ slot.slot_name }}</text>
<view :style="{ <view class="time-slot-dot" :style="{ backgroundColor: getSlotColor(slot.status) }">
width: '12rpx', </view>
height: '12rpx',
borderRadius: '50%',
backgroundColor: getSlotColor(slot.status),
marginLeft: '12rpx'
}"></view>
</view> </view>
<view class="time-slot-content"> <view class="time-slot-content">
<text class="time-slot-status">{{ getSlotStatusText(slot.status) }}</text> <text class="time-slot-status">{{ getSlotStatusText(slot.status) }}</text>
@ -204,9 +191,15 @@
</template> </template>
<script> <script>
import { getAvailableDates, getRoomListWithSlotsNew, getRoomDetail } from '@/common/server/interface/sq.js'; import {
import { getConfigData } from '@/common/server/config'; getAvailableDates,
export default { getRoomListWithSlotsNew,
getRoomDetail
} from '@/common/server/interface/sq.js';
import {
getConfigData
} from '@/common/server/config';
export default {
data() { data() {
return { return {
currentTimeIndex: 0, currentTimeIndex: 0,
@ -221,8 +214,10 @@ export default {
} }
}, },
onLoad() { onLoad() {
this.loadDates(); this.loadDates();
console.log("onLoad");
getConfigData().then(data => { getConfigData().then(data => {
this.configData = data; this.configData = data;
}); });
@ -235,7 +230,7 @@ export default {
this.loadRoomList(); this.loadRoomList();
}, },
getBusinessAnnouncement() { getBusinessAnnouncement() {
return this.configData.config.businessAnnouncement??"营业时间早00点 至 晚23点"; return this.configData.config.businessAnnouncement ?? "营业时间早00点 至 晚23点";
}, },
/** /**
@ -332,7 +327,7 @@ export default {
'available': '#52c41a', // 绿 'available': '#52c41a', // 绿
'reserved': '#FF9901', // 'reserved': '#FF9901', //
'unavailable': '#E6E6E6', // 'unavailable': '#E6E6E6', //
'using': '#1890ff' // 'using': '#FF9901' //
}; };
return colorMap[status] || '#E6E6E6'; return colorMap[status] || '#E6E6E6';
}, },
@ -501,34 +496,209 @@ export default {
return []; return [];
} }
} }
} }
</script> </script>
<style lang="scss"> <style lang="scss">
.content { .content {
width: 100%; width: 100%;
height: 100vh; height: 100vh;
background-color: #F7F7F7; background-color: #F7F7F7;
} }
/* 页面标题 */ .loading-placeholder {
.page-title { padding: 60rpx 0;
}
.muted-text {
color: #999999;
}
.header-container {
width: 100%;
height: 308rpx;
background-color: #FFFFFF;
}
.flex-1 {
flex: 1;
}
.date-row {
width: 90%;
height: 120rpx;
margin: 20rpx auto 0;
}
.date-item {
width: 96rpx;
height: 100%;
border-radius: 8rpx;
}
.date-item-time {
font-size: 26rpx;
}
.date-item-weekday {
font-size: 22rpx;
}
.announcement-text {
margin-top: 20rpx;
margin-left: 32rpx;
font-size: 24rpx;
}
.toggle-bar {
width: 686rpx;
height: 56rpx;
background-color: #2ED9BF;
border-radius: 5rpx;
margin: 20rpx auto 0;
align-items: center;
}
.toggle-label {
font-size: 22rpx;
color: #262626;
margin-left: 16rpx;
}
.toggle-switch {
margin-right: 16rpx;
margin-left: auto;
}
.list-container {
width: 100%;
flex: 1;
margin-top: 12rpx;
overflow-y: auto;
}
/* 页面标题 */
.page-title {
margin-top: 100rpx; margin-top: 100rpx;
text-align: center; text-align: center;
margin-bottom: 20rpx; margin-bottom: 20rpx;
} }
/* 房间详情弹窗样式 */ .room-card {
.room-detail-popup { position: relative;
width: 706rpx;
height: 270rpx;
border-radius: 20rpx;
background-color: #FFFFFF;
margin: 0 auto 20rpx;
}
.room-image {
width: 180rpx;
height: 156rpx;
background-color: #DEDEDE;
border-radius: 14rpx;
position: absolute;
top: 10rpx;
left: 10rpx;
}
.room-info {
position: absolute;
left: 200rpx;
top: 20rpx;
}
.room-name {
font-size: 28rpx;
}
.room-type {
font-size: 20rpx;
}
.room-price {
font-size: 24rpx;
margin-top: 24rpx;
}
.room-member-price {
font-size: 24rpx;
color: #FF0000;
}
.room-status-using {
font-size: 20rpx;
position: absolute;
top: 10rpx;
right: 16rpx;
color: #FF9901;
}
.legend-row {
align-items: center;
position: absolute;
left: 10rpx;
bottom: 60rpx;
}
.legend-block {
width: 24rpx;
height: 4rpx;
}
.legend-reserved {
background-color: #FF9901;
}
.legend-available {
background-color: #52c41a;
margin-left: 22rpx;
}
.legend-unavailable {
background-color: #E6E6E6;
margin-left: 22rpx;
}
.legend-text {
font-size: 24rpx;
color: #323232;
margin-left: 8rpx;
}
.slot-row {
align-items: center;
position: absolute;
left: 10rpx;
bottom: 14rpx;
}
.slot-item {
margin-right: 20rpx;
}
.slot-bar {
width: 70rpx;
height: 4rpx;
}
.slot-label {
font-size: 18rpx;
margin-top: 4rpx;
}
/* 房间详情弹窗样式 */
.room-detail-popup {
width: 680rpx; width: 680rpx;
max-height: 80vh; max-height: 80vh;
background-color: #FFFFFF; background-color: #FFFFFF;
border-radius: 20rpx; border-radius: 20rpx;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
} }
.popup-close { .popup-close {
position: absolute; position: absolute;
top: 10rpx; top: 10rpx;
right: 10rpx; right: 10rpx;
@ -540,208 +710,225 @@ export default {
z-index: 10; z-index: 10;
background-color: rgba(0, 0, 0, 0.3); background-color: rgba(0, 0, 0, 0.3);
border-radius: 50%; border-radius: 50%;
} }
.popup-loading { .popup-close-text {
font-size: 40rpx;
color: #999999;
}
.popup-loading {
padding: 100rpx 0; padding: 100rpx 0;
min-height: 400rpx; min-height: 400rpx;
} }
.popup-content { .popup-loading-text {
color: #999999;
}
.popup-content {
width: 100%; width: 100%;
} max-height: 80vh;
}
/* 图片轮播容器 */ /* 图片轮播容器 */
.detail-swiper-container { .detail-swiper-container {
width: 100%; width: 100%;
height: 400rpx; height: 400rpx;
background-color: #DEDEDE; background-color: #DEDEDE;
} }
.detail-swiper { .detail-swiper {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
.detail-swiper-image { .detail-swiper-image {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
/* 详情区域 */ /* 详情区域 */
.detail-section { .detail-section {
padding: 30rpx; padding: 30rpx;
border-bottom: 1rpx solid #F0F0F0; border-bottom: 1rpx solid #F0F0F0;
} }
.detail-section:last-child { .detail-section:last-child {
border-bottom: none; border-bottom: none;
} }
.detail-title-row { .detail-title-row {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 10rpx; margin-bottom: 10rpx;
} }
.detail-room-name { .detail-room-name {
font-size: 36rpx; font-size: 36rpx;
font-weight: bold; font-weight: bold;
color: #262626; color: #262626;
flex: 1; flex: 1;
} }
.detail-status-tag { .detail-status-tag {
padding: 4rpx 16rpx; padding: 4rpx 16rpx;
border-radius: 8rpx; border-radius: 8rpx;
font-size: 20rpx; font-size: 20rpx;
} }
.detail-status-tag.using { .detail-status-tag.using {
background-color: #FF9901; background-color: #FF9901;
color: #FFFFFF; color: #FFFFFF;
} }
.detail-status-tag.available { .detail-status-tag.available {
background-color: #52c41a; background-color: #52c41a;
color: #FFFFFF; color: #FFFFFF;
} }
.detail-room-type { .detail-room-type {
font-size: 24rpx; font-size: 24rpx;
color: #999999; color: #999999;
margin-bottom: 20rpx; margin-bottom: 20rpx;
} }
.detail-price-row { .detail-price-row {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 10rpx; margin-bottom: 10rpx;
} }
.detail-price-label { .detail-price-label {
font-size: 24rpx; font-size: 24rpx;
color: #666666; color: #666666;
} }
.detail-price-value { .detail-price-value {
font-size: 28rpx; font-size: 28rpx;
color: #262626; color: #262626;
font-weight: 500; font-weight: 500;
} }
.detail-price-member { .detail-price-member {
font-size: 28rpx; font-size: 28rpx;
color: #FF0000; color: #FF0000;
font-weight: 500; font-weight: 500;
} }
.detail-info-row { .detail-info-row {
display: flex; display: flex;
align-items: center; align-items: center;
margin-top: 20rpx; margin-top: 20rpx;
} }
.detail-info-label { .detail-info-label {
font-size: 24rpx; font-size: 24rpx;
color: #666666; color: #666666;
} }
.detail-info-value { .detail-info-value {
font-size: 24rpx; font-size: 24rpx;
color: #262626; color: #262626;
} }
.detail-section-title { .detail-section-title {
font-size: 28rpx; font-size: 28rpx;
font-weight: bold; font-weight: bold;
color: #262626; color: #262626;
margin-bottom: 20rpx; margin-bottom: 20rpx;
display: block; display: block;
} }
.detail-description { .detail-description {
font-size: 26rpx; font-size: 26rpx;
color: #666666; color: #666666;
line-height: 1.6; line-height: 1.6;
} }
/* 设施标签 */ /* 设施标签 */
.amenities-container { .amenities-container {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
gap: 16rpx; gap: 16rpx;
} }
.amenity-tag { .amenity-tag {
padding: 8rpx 20rpx; padding: 8rpx 20rpx;
background-color: #F5F5F5; background-color: #F5F5F5;
border-radius: 8rpx; border-radius: 8rpx;
font-size: 24rpx; font-size: 24rpx;
color: #666666; color: #666666;
} }
/* 时段状态 */ /* 时段状态 */
.time-slots-container { .time-slots-container {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 20rpx; gap: 20rpx;
} }
.time-slot-item { .time-slot-item {
background-color: #F8F8F8; background-color: #F8F8F8;
border-radius: 12rpx; border-radius: 12rpx;
padding: 20rpx; padding: 20rpx;
} }
.time-slot-header { .time-slot-header {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 12rpx; margin-bottom: 12rpx;
} }
.time-slot-name { .time-slot-dot {
width: 12rpx;
height: 12rpx;
border-radius: 50%;
margin-left: 12rpx;
}
.time-slot-name {
font-size: 26rpx; font-size: 26rpx;
font-weight: 500; font-weight: 500;
color: #262626; color: #262626;
} }
.time-slot-content { .time-slot-content {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 8rpx; gap: 8rpx;
} }
.time-slot-status { .time-slot-status {
font-size: 24rpx; font-size: 24rpx;
color: #666666; color: #666666;
} }
.time-slot-price { .time-slot-price {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 20rpx; gap: 20rpx;
} }
.time-slot-price-text { .time-slot-price-text {
font-size: 22rpx; font-size: 22rpx;
color: #666666; color: #666666;
} }
.time-slot-price-text.member { .time-slot-price-text.member {
color: #FF0000; color: #FF0000;
} }
/* 底部操作按钮 */ /* 底部操作按钮 */
.popup-footer { .popup-footer {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 20rpx 30rpx; padding: 20rpx 30rpx;
border-top: 1rpx solid #F0F0F0; border-top: 1rpx solid #F0F0F0;
gap: 20rpx; gap: 20rpx;
} }
.popup-btn { .popup-btn {
flex: 1; flex: 1;
height: 80rpx; height: 80rpx;
display: flex; display: flex;
@ -750,26 +937,26 @@ export default {
border-radius: 12rpx; border-radius: 12rpx;
font-size: 28rpx; font-size: 28rpx;
font-weight: 500; font-weight: 500;
} }
.popup-btn.secondary { .popup-btn.secondary {
background-color: #F5F5F5; background-color: #F5F5F5;
color: #666666; color: #666666;
} }
.popup-btn.primary { .popup-btn.primary {
background-color: #20BBA4; background-color: #20BBA4;
color: #FFFFFF; color: #FFFFFF;
} }
.popup-btn.disabled { .popup-btn.disabled {
background-color: #CCCCCC; background-color: #CCCCCC;
color: #FFFFFF; color: #FFFFFF;
opacity: 0.6; opacity: 0.6;
} }
/* 房间列表预约按钮样式 */ /* 房间列表预约按钮样式 */
.reservation-btn { .reservation-btn {
width: 92rpx; width: 92rpx;
height: 46rpx; height: 46rpx;
background-color: #20BBA4; background-color: #20BBA4;
@ -779,10 +966,10 @@ export default {
position: absolute; position: absolute;
bottom: 94rpx; bottom: 94rpx;
right: 10rpx; right: 10rpx;
} }
.reservation-btn-disabled { .reservation-btn-disabled {
background-color: #CCCCCC; background-color: #CCCCCC;
opacity: 0.8; opacity: 0.8;
} }
</style> </style>

View File

@ -55,7 +55,7 @@
<uni-popup ref="userInfo_popup" type="center"> <!-- <uni-popup ref="userInfo_popup" type="center">
<view class="column" style="width: 500rpx; background-color: white; padding: 20rpx;"> <view class="column" style="width: 500rpx; background-color: white; padding: 20rpx;">
@ -97,7 +97,7 @@
</view> </view>
</uni-popup> </uni-popup> -->
</view> </view>

View File

@ -1,6 +1,6 @@
<template> <template>
<view class="loading-container"> <view class="loading-container">
<image class="logo" src="/static/Logo.jpg" mode="widthFix"></image> <image class="logo" src="/static/logo.png" mode="widthFix"></image>
<view class="spinner"></view> <view class="spinner"></view>
<text class="tip">{{ tips_text }}</text> <text class="tip">{{ tips_text }}</text>
</view> </view>

View File

@ -100,10 +100,10 @@
<text style="font-size: 30rpx; margin-top: 26rpx; margin-left: 36rpx;">常用功能</text> <text style="font-size: 30rpx; margin-top: 26rpx; margin-left: 36rpx;">常用功能</text>
<view class="row" style="flex-wrap: wrap; justify-content: flex-start; margin: 40rpx;"> <view class="row" style="flex-wrap: wrap; justify-content: flex-start; margin: 40rpx;">
<view class="column" v-for="item in commonActions" :key="item.label" <view class="column common-action-item" v-for="item in commonActions" :key="item.label"
@click="handleCommonAction(item)" @click="handleCommonAction(item)">
style="width: 25%; align-items: center; margin-bottom: 30rpx;">
<image :src="item.icon" style="width: 50rpx; height: 50rpx;" mode=""></image> <image :src="item.icon" style="width: 50rpx; height: 50rpx;" mode=""></image>
<view v-if="item.action === 'message' && unreadCount > 0" class="red-dot"></view>
<text style="font-size: 24rpx; margin-top: 20rpx;">{{ item.label }}</text> <text style="font-size: 24rpx; margin-top: 20rpx;">{{ item.label }}</text>
</view> </view>
</view> </view>
@ -124,6 +124,7 @@ import {
} from '@/common/server/user' } from '@/common/server/user'
import { navigateToAgreement } from '@/common/system/router' import { navigateToAgreement } from '@/common/system/router'
import { sqInterface } from '@/common/server/interface/sq' import { sqInterface } from '@/common/server/interface/sq'
import { getUnreadCount } from '@/common/server/interface/message'
import ReservationEvaluate from '@/components/com/page/reservation-evaluate.vue' import ReservationEvaluate from '@/components/com/page/reservation-evaluate.vue'
import ContainerBase from '@/components/com/page/container-base.vue' import ContainerBase from '@/components/com/page/container-base.vue'
import { import {
@ -139,6 +140,7 @@ import ReservationItem from '@/components/com/page/reservation-item.vue'
const rateValue = ref(4.5) const rateValue = ref(4.5)
const loading = ref(false) const loading = ref(false)
const _containerBase = ref(null) const _containerBase = ref(null)
const unreadCount = ref(0)
// //
@ -146,16 +148,15 @@ const currentAppointment = ref(null)
// - // -
const commonActions = [ const commonActions = [
{ label: '预约记录', icon: '@@:app/static/me/wodd.png', action: 'appointment' }, { label: '预约记录', icon: '@@:app/static/me/wdyy.png', action: 'appointment' },
{ label: '订单记录', icon: '@@:app/static/me/wodd.png', action: 'payment' }, { label: '订单记录', icon: '@@:app/static/me/wodd.png', action: 'payment' },
{ label: '常见问题', icon: '@@:app/static/me/cjwt.png', action: 'faq' }, { label: '常见问题', icon: '@@:app/static/me/cjwt.png', action: 'faq' },
{ label: '黑名单', icon: '@@:app/static/me/hmd.png', action: 'blacklist' }, { label: '黑名单', icon: '@@:app/static/me/hmd.png', action: 'blacklist' },
{ label: '联系我们', icon: '@@:app/static/me/lxwm.png', action: 'contact' }, { label: '联系我们', icon: '@@:app/static/me/lxwm.png', action: 'contact' },
{ label: '我的消息', icon: '@@:app/static/me/lxwm.png', action: 'message' }, { label: '我的消息', icon: '@@:app/static/me/wdxx.png', action: 'message' },
{ label: '我的收益', icon: '@@:app/static/me/lxwm.png', action: 'revenue' }, { label: '我的收益', icon: '@@:app/static/me/wdsy.png', action: 'revenue' },
] ]
const handleCommonAction = (item) => { const handleCommonAction = (item) => {
@ -294,6 +295,28 @@ const loadCurrentAppointment = async () => {
} }
} }
//
const loadUnreadCount = async () => {
const _isLogin = await isLogin();
if (!_isLogin) {
unreadCount.value = 0;
uni.hideTabBarRedDot({ index: 2 });
return;
}
try {
const count = await getUnreadCount();
unreadCount.value = count;
if (count > 0) {
uni.showTabBarRedDot({ index: 2 });
} else {
uni.hideTabBarRedDot({ index: 2 });
}
} catch (error) {
console.error('加载未读消息失败:', error);
uni.hideTabBarRedDot({ index: 2 });
}
}
onShareAppMessage(({ from, target, webViewUrl }) => { onShareAppMessage(({ from, target, webViewUrl }) => {
// console.log('onShareAppMessage', from, target, webViewUrl); // console.log('onShareAppMessage', from, target, webViewUrl);
var resid = 0; var resid = 0;
@ -311,6 +334,7 @@ onShow(async () => {
// getUserInfoData(); // getUserInfoData();
loadCurrentAppointment(); loadCurrentAppointment();
await loadUserInfo(); await loadUserInfo();
await loadUnreadCount();
}) })
onLoad(async () => { onLoad(async () => {
@ -336,4 +360,21 @@ onLoad(async () => {
border-radius: 10rpx; border-radius: 10rpx;
z-index: 9999; z-index: 9999;
} }
.common-action-item {
position: relative;
width: 25%;
align-items: center;
margin-bottom: 30rpx;
}
.red-dot {
position: absolute;
top: 0;
right: 35rpx;
width: 14rpx;
height: 14rpx;
border-radius: 50%;
background-color: #ff3b30;
}
</style> </style>

View File

@ -114,7 +114,7 @@
</view> </view>
<view class="center" <view class="center"
style="width: 304rpx; height: 90rpx; background-color: #00AC4E; color: #FFFFFF; margin: 30rpx auto 0; font-size: 32rpx;" style="width: 304rpx; height: 90rpx; background-color: #00AC4E; color: #FFFFFF; margin: 30rpx auto 30rpx; border-radius: 20rpx; font-size: 32rpx;"
@click="submitWithdraw"> @click="submitWithdraw">
申请提现 申请提现
</view> </view>