|
@@ -1,16 +1,43 @@
|
|
|
<template>
|
|
|
<a-row :gutter="10">
|
|
|
- <a-col :span="24" :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
|
|
|
- <!-- 顶部数据统计 -->
|
|
|
- <sys-count-card class="mb-2" />
|
|
|
- <!-- 近三天报警趋势 -->
|
|
|
- <sys-trend-card class="mb-2" />
|
|
|
- <!-- 报警管理 -->
|
|
|
- <sys-warning-card class="mb-2" />
|
|
|
+ <!-- 左侧 -->
|
|
|
+ <a-col :span="16">
|
|
|
+ <!-- 人员信息 -->
|
|
|
+ <sys-user-info-card class="mb-2" />
|
|
|
+ <a-row :gutter="10" class="mt-2">
|
|
|
+ <a-col :span="24">
|
|
|
+ <!-- 快捷方式 -->
|
|
|
+ <biz-shortcut-card />
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ <a-row :gutter="10" class="mt-2">
|
|
|
+ <a-col :span="12">
|
|
|
+ <!-- 通知公告 -->
|
|
|
+ <biz-notice-card />
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="12">
|
|
|
+ <!-- 站内信息 -->
|
|
|
+ <biz-mini-message-card />
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ </a-col>
|
|
|
+ <!-- 右侧 -->
|
|
|
+ <a-col :span="8">
|
|
|
+ <!-- 轮播图 -->
|
|
|
+ <biz-slideshow-card :config="slideshowConfig" />
|
|
|
+ <!-- 我的日程 -->
|
|
|
+ <biz-schedule-card />
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</template>
|
|
|
|
|
|
-<script setup name="indexHome"></script>
|
|
|
+<script setup name="indexHome">
|
|
|
+ // 轮播图组件的配置,在业务首页下,获取对应位置的
|
|
|
+ const slideshowConfig = {
|
|
|
+ options: {
|
|
|
+ place: 'BACK_INDEX'
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
|
|
|
<style lang="less" scoped></style>
|