|
@@ -83,7 +83,7 @@
|
|
|
</li>
|
|
|
</ul>
|
|
|
<div class="topic-list-empty" v-else>
|
|
|
- <a-empty />
|
|
|
+ <a-empty :image="simpleImage" />
|
|
|
</div>
|
|
|
</a-card>
|
|
|
</a-col>
|
|
@@ -97,7 +97,7 @@
|
|
|
</li>
|
|
|
</ul>
|
|
|
<div class="topic-list-empty" v-else>
|
|
|
- <a-empty />
|
|
|
+ <a-empty :image="simpleImage" />
|
|
|
</div>
|
|
|
</a-card>
|
|
|
</a-col>
|
|
@@ -141,7 +141,7 @@
|
|
|
<!-- userVisitList?.length -->
|
|
|
<div id="chart-2" class="chart" v-if="userVisitList?.length"></div>
|
|
|
<div class="chart-empty" v-else>
|
|
|
- <a-empty />
|
|
|
+ <a-empty :image="simpleImage" />
|
|
|
</div>
|
|
|
</a-card>
|
|
|
</a-col>
|
|
@@ -151,7 +151,7 @@
|
|
|
<a-card title="">
|
|
|
<div id="chart-3" class="chart" v-if="userMsgManList?.length"></div>
|
|
|
<div class="chart-empty" v-else>
|
|
|
- <a-empty />
|
|
|
+ <a-empty :image="simpleImage" />
|
|
|
</div>
|
|
|
</a-card>
|
|
|
|
|
@@ -175,13 +175,13 @@ import Vue3Autocounter from 'vue3-autocounter'
|
|
|
import * as echarts from 'echarts'
|
|
|
import type { ECharts } from 'echarts'
|
|
|
import { useStatisticStore } from '@/store/modules/statistic'
|
|
|
-
|
|
|
+import { Empty } from 'ant-design-vue';
|
|
|
const statisticStore = useStatisticStore()
|
|
|
const { t } = useI18n()
|
|
|
const takeLookList = computed(() => statisticStore.top5.takeLookList)
|
|
|
const danmakuList = computed(() => statisticStore.top5.danmakuList)
|
|
|
const heroStatus = computed(() => statisticStore.roomData)
|
|
|
-
|
|
|
+const simpleImage = Empty.PRESENTED_IMAGE_SIMPLE;
|
|
|
let onlineTimeChart: ECharts
|
|
|
let roomUseVisitChart: ECharts
|
|
|
let roomMsgChart: ECharts
|