增加logpage
This commit is contained in:
parent
665e27cd41
commit
508098f2dc
@ -46,8 +46,8 @@
|
|||||||
<v-chip close>{{ currentView }}</v-chip>
|
<v-chip close>{{ currentView }}</v-chip>
|
||||||
<v-container fluid="true" class="custom-border" >
|
<v-container fluid="true" class="custom-border" >
|
||||||
<!-- 控制界面 -->
|
<!-- 控制界面 -->
|
||||||
<div v-if="currentView === 'pageSeatCtrl'" >
|
<div v-if="currentView === 'pageSeatCtrl'" style="height: 100%;">
|
||||||
<v-card>{{ currentView }}</v-card>
|
<ShowPage />
|
||||||
</div>
|
</div>
|
||||||
<!-- 报文界面 -->
|
<!-- 报文界面 -->
|
||||||
<div v-if="currentView === 'pageCANMsg'" >
|
<div v-if="currentView === 'pageCANMsg'" >
|
||||||
@ -74,7 +74,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- 日志界面 -->
|
<!-- 日志界面 -->
|
||||||
<div v-if="currentView === 'pageLog'" >
|
<div v-if="currentView === 'pageLog'" >
|
||||||
<v-card>{{ currentView }}</v-card>
|
<LogPage />
|
||||||
</div>
|
</div>
|
||||||
</v-container>
|
</v-container>
|
||||||
</v-main>
|
</v-main>
|
||||||
@ -84,6 +84,7 @@
|
|||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
|
import LogPage from './components/LogPage.vue';
|
||||||
|
|
||||||
// 使用 ref 定义响应式数据
|
// 使用 ref 定义响应式数据
|
||||||
let drawer = ref(true);
|
let drawer = ref(true);
|
||||||
|
4
src/components/LogPage.vue
Normal file
4
src/components/LogPage.vue
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<template>
|
||||||
|
<!-- 日志显示界面 -->
|
||||||
|
|
||||||
|
</template>
|
Loading…
x
Reference in New Issue
Block a user