Commit e19db2da by pangchong

feat: 事件显示优化

parent 9d7d2911
<template> <template>
<!-- 事件列表 --> <!-- 事件列表 -->
<event-list v-show="!showDetails" @show-details="handleShowDetails" @show-list="handleShowList"></event-list> <div class="h-full" v-show="!showDetails">
<event-list @show-details="handleShowDetails" @show-list="handleShowList"></event-list>
</div>
<!-- 事件详情 --> <!-- 事件详情 -->
<event-details v-show="showDetails" :record="record" :details="details" @show-list="handleShowList"></event-details> <div class="h-full" v-show="showDetails">
<event-details :record="record" :details="details" @show-list="handleShowList"></event-details>
</div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment