Files
nl-acs3.0/nl-vue/src/views/auth/monitor/index.vue

21 lines
527 B
Vue
Raw Normal View History

2026-01-06 09:58:29 +08:00
<template>
<analyse />
<a-card :bordered="false" :body-style="{ 'padding-top': '10px' }">
<a-tabs v-model:activeKey="activeKey">
<a-tab-pane key="1" tab="B端会话">
<monitor-b-tab />
</a-tab-pane>
<a-tab-pane key="2" tab="C端会话" force-render>
<monitor-c-tab />
</a-tab-pane>
</a-tabs>
</a-card>
</template>
<script setup name="authMonitor">
import Analyse from './analyse.vue'
import MonitorBTab from './bTab.vue'
import MonitorCTab from './cTab.vue'
const activeKey = ref('1')
</script>