修改样式

This commit is contained in:
2026-06-05 15:03:32 +08:00
parent 7d891c9f7b
commit f2cde43bf4
58 changed files with 2762 additions and 939 deletions
+1 -2
View File
@@ -35,7 +35,7 @@ export const useUserStore = defineStore(
const address = ref(null)
// 预约时间
const appointmentTime = ref('')
const appointmentTime = ref<any>(null)
// 首页展示的预约时间
const appointmentTimeShow = computed(()=> {
@@ -77,7 +77,6 @@ export const useUserStore = defineStore(
function getAppointmentTime() {
if (!isLogin.value) return
appAppointmentTimeQueryAppointmentTimePost({}).then(res => {
console.log('查询用户的预约时间', res)
appointmentTime.value = res.data || ''
})
}