修改样式
This commit is contained in:
@@ -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 || ''
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user