feat: 快速预定的日历调整

This commit is contained in:
2025-08-10 23:14:24 +08:00
parent d1557fea04
commit 79f33497c7
2 changed files with 48 additions and 27 deletions

View File

@@ -2,10 +2,50 @@
<view class="container">
<ChatMainList />
</view>
<!-- 日历组件 -->
<Calender
:visible="calendarVisible"
mode="single"
:default-value="selectedDate"
@close="handleCalendarClose"
@select="handleDateSelect"
/>
</template>
<script setup>
import { ref, onMounted, onUnmounted } from "vue";
import ChatMainList from "../chat/ChatMainList.vue";
import Calender from "@/components/Calender/index.vue";
const calendarVisible = ref(false);
const selectedDate = ref("");
// 处理日历关闭
const handleCalendarClose = () => {
calendarVisible.value = false;
};
// 处理日期选择
const handleDateSelect = (data) => {
selectedDate.value = data.date;
calendarVisible.value = false;
console.log("选择的日期:", data.date);
uni.$emit("selectCalendarDate", selectedDate.value); // 传回父组件
};
uni.$on("openCalendar", () => {
calendarVisible.value = true;
});
onUnmounted(() => {
// uni.$off('openCalendar')
})
</script>
<style lang="scss" scoped>
@@ -14,4 +54,4 @@ import ChatMainList from "../chat/ChatMainList.vue";
height: 100vh;
background-color: #ffffff;
}
</style>
</style>