This commit is contained in:
zk
2023-12-11 09:57:38 +08:00
parent bad6f793de
commit 4a616ed1c8
3 changed files with 26 additions and 12 deletions
+15 -5
View File
@@ -1,6 +1,10 @@
<template>
<div class="terminal-container">
<public-title title="健康终端报警" :isShowMore="true" @clickMore="handleDialog" />
<public-title title="健康终端报警" :isShowMore="true" @clickMore="handleDialog">
<template #right>
<span style="font-size: 14px; font-weight: 100; cursor: pointer; margin-right: 3px" @click="viewDetail">查看详情</span>
</template>
</public-title>
<div class="inner">
<vue3-seamless-scroll :list="scrollList" class="scroll" :hover="true" :limitScrollNum="4" v-bind="classOption">
<div class="item" v-for="(item, i) in scrollList" :key="i">
@@ -55,6 +59,7 @@
</template>
<script setup lang="ts">
import { onMounted, ref } from 'vue';
import { useRouter } from 'vue-router';
import $bus from '/@/utils/bus.ts';
import { columns } from '/@/components/body-d-right/bodyRightHooks.ts';
import PublicTitle from '/@/components/publicTitle.vue';
@@ -63,6 +68,7 @@
import { getMonitorList } from '/@/components/body-d-right/right.api.ts';
import { Map } from '/@/assets/mapUtils/map.ts';
const router = useRouter();
const classOption = ref({
step: 0.3, // 速度
});
@@ -135,6 +141,10 @@
});
}
}
function viewDetail() {
router.push({ path: '/secondScreen' });
}
</script>
<style scoped lang="less">
.inner {
@@ -222,7 +232,7 @@
background-color: #00152b;
border: 1px solid #129bff;
/*
antd表格样式
antd表格样式
*/
.ant-table-thead > tr > th {
@@ -255,8 +265,8 @@
}
/*
表格滚动条
*/
表格滚动条
*/
.ant-table-body::-webkit-scrollbar-thumb {
border: 4px solid rgba(0, 0, 0, 0);
@@ -266,4 +276,4 @@
background-color: rgba(30, 115, 194, 0.3);
}
}
</style>
</style>
+2 -3
View File
@@ -2,8 +2,7 @@
<div class="title-d">
<span>{{ props.title }}</span>
<div>
<span class="tips"><slot name="title"></slot></span>
<span v-if="isShowMore" style="font-size: 14px; font-weight: 100; cursor: pointer; margin-right: 3px" @click="clickMore">更多&gt;</span>
<span class="tips"><slot name="right"></slot></span>
<img src="../assets/img/point.png" alt="" />
</div>
</div>
@@ -64,4 +63,4 @@
font-weight: normal;
}
}
</style>
</style>
+9 -4
View File
@@ -3,13 +3,18 @@ import { createRouter, createWebHistory, Router, RouteRecordRaw } from 'vue-rout
const routes: Array<RouteRecordRaw> = [
{
path: '/',
name: '首页',
name: 'index',
meta: {
title: '首页',
},
component: () => import('/@/views/index.vue'),
// component: () => import('/@/views/mobile/index.vue'),
},
{
path: '/indexSon',
name: '副屏',
path: '/secondScreen',
name: 'secondScreen',
meta: {
title: '副屏',
},
component: () => import('/@/views/indexSon.vue'),
},
];