|
|
|
@ -1,18 +1,18 @@
|
|
|
|
|
<template> |
|
|
|
|
<a-row :gutter="10"> |
|
|
|
|
<a-col :span="16"> |
|
|
|
|
<a-col :span="16" :xs="24" :sm="24" :md="24" :lg="16" :xl="16"> |
|
|
|
|
<userInfo class="mb-2" /> |
|
|
|
|
<shortcut class="mb-2" /> |
|
|
|
|
<a-row :gutter="10"> |
|
|
|
|
<a-col :span="12"> |
|
|
|
|
<a-col :span="12" :xs="24" :sm="24" :md="12" :lg="12" :xl="12"> |
|
|
|
|
<visLog class="mb-2" /> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :span="12"> |
|
|
|
|
<a-col :span="12" :xs="24" :sm="24" :md="12" :lg="12" :xl="12"> |
|
|
|
|
<opLog class="mb-2" /> |
|
|
|
|
</a-col> |
|
|
|
|
</a-row> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :span="8"> |
|
|
|
|
<a-col :span="8" :xs="24" :sm="24" :md="24" :lg="8" :xl="8"> |
|
|
|
|
<carousel class="mb-2" /> |
|
|
|
|
<schedule class="mb-2" /> |
|
|
|
|
<miniMessage class="mb-2" /> |
|
|
|
@ -21,12 +21,11 @@
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script setup name="indexHome"> |
|
|
|
|
import shortcutCard from '@/components/ShortcutCard/index.vue' |
|
|
|
|
import userInfo from './components/userInfo.vue' |
|
|
|
|
import shortcut from './components/shortcut.vue' |
|
|
|
|
import schedule from './components/schedule.vue' |
|
|
|
|
import miniMessage from './components/miniMessage.vue' |
|
|
|
|
import carousel from './components/carousel.vue' |
|
|
|
|
import visLog from './components/visLog.vue' |
|
|
|
|
import opLog from './components/opLog.vue' |
|
|
|
|
import UserInfo from './components/userInfo.vue' |
|
|
|
|
import Shortcut from './components/shortcut.vue' |
|
|
|
|
import Schedule from './components/schedule.vue' |
|
|
|
|
import MiniMessage from './components/miniMessage.vue' |
|
|
|
|
import Carousel from './components/carousel.vue' |
|
|
|
|
import VisLog from './components/visLog.vue' |
|
|
|
|
import OpLog from './components/opLog.vue' |
|
|
|
|
</script> |
|
|
|
|