徐景良 1 year ago
commit b0ca1bc1b3

@ -5,16 +5,16 @@ import { t } from '@/hooks/web/useI18n';
const dashboard: AppRouteModule = const dashboard: AppRouteModule =
{ {
path: '/dashboard', // path: '/dashboard',
name: 'Dashboard', // name: 'Dashboard',
component: LAYOUT, // component: LAYOUT,
redirect: '/dashboard/analysis', // redirect: '/dashboard/analysis',
meta: { // meta: {
orderNo: 10, // orderNo: 10,
icon: 'ion:grid-outline', // icon: 'ion:grid-outline',
title: t('routes.dashboard.dashboard'), // title: t('routes.dashboard.dashboard'),
}, // },
children: [ // children: [
// { // {
// path: '/dashboard/analysis', // path: '/dashboard/analysis',
// name: 'Analysis', // name: 'Analysis',
@ -24,15 +24,15 @@ const dashboard: AppRouteModule =
// title: t('routes.dashboard.analysis'), // title: t('routes.dashboard.analysis'),
// }, // },
// }, // },
{ // {
path: '/dashboard/test', // path: '/dashboard/test',
name: 'test', // name: 'test',
component: () => import('@/views/dashboard/test/index.vue'), // component: () => import('@/views/dashboard/test/index.vue'),
meta: { // meta: {
// affix: true, // // affix: true,
title: t('routes.dashboard.test'), // title: t('routes.dashboard.test'),
}, // },
}, // },
// { // {
// path: '/formCallPage', // path: '/formCallPage',
// name: 'formCallPage', // name: 'formCallPage',
@ -94,7 +94,7 @@ const dashboard: AppRouteModule =
// }, // },
// component: () => import('@/views/demo/workflow/h5/look.vue'), // component: () => import('@/views/demo/workflow/h5/look.vue'),
// }, // },
], // ],
}; };

@ -438,4 +438,15 @@
height: 60px; height: 60px;
margin: 5px; margin: 5px;
} }
::v-deep .ant-table-container table {
line-height: 1.1 !important;
.ant-table-row {
td {
padding-top: 8px !important;
padding-bottom: 8px !important;
}
}
}
</style> </style>

@ -26,6 +26,7 @@
<a-input <a-input
v-model:value="currentAppForm.project_name" v-model:value="currentAppForm.project_name"
defaultValue="drone_enforcement" defaultValue="drone_enforcement"
disabled="true"
/> />
</a-form-item> </a-form-item>
<a-form-item label="上传"> <a-form-item label="上传">

@ -1,6 +1,7 @@
<template> <template>
<div class="subject"> <div class="subject">
<div class="subject_header"> <div class="subject_header">
<img class="subject_header_img" src="/subject/subject_header.png" />
<div class="subject_header_title"> <div class="subject_header_title">
<span> <span>
<img src="/subject/subject_logo.png" /> <img src="/subject/subject_logo.png" />
@ -195,17 +196,20 @@
background-attachment: fixed; background-attachment: fixed;
width: 100%; width: 100%;
height: 100%; height: 100%;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE/Edge */
user-select: none;
&_header { &_header {
background-image: url('/subject/subject_header.png'); &_img {
background-repeat: no-repeat; height: 82px;
background-size: cover; width: 100%;
height: 82px; }
width: 100%;
&_title { &_title {
position: relative; position: relative;
top: -5px; top: -87px;
span { span {
img { img {
@ -263,6 +267,8 @@
&_box { &_box {
display: flex; display: flex;
position: relative;
top: -82px;
&_btn { &_btn {
align-items: center; align-items: center;
@ -270,12 +276,18 @@
flex-wrap: wrap; flex-wrap: wrap;
position: relative; position: relative;
top: 50px; top: 50px;
left: 110px; left: 100px;
height: 688px; height: 688px;
width: calc(100vw - 200px); width: calc(100vw);
display: flex; display: flex;
overflow-x: hidden; overflow-x: hidden;
overflow-y: hidden; overflow-y: auto;
-ms-overflow-style: none; /* IE 和 Edge */
scrollbar-width: none; /* Firefox */
::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera */
}
&_div { &_div {
flex: 0 0 auto; flex: 0 0 auto;
@ -353,9 +365,9 @@
} }
&_overflow { &_overflow {
position: relative; position: absolute;
top: 220px; top: 220px;
left: 100px; right: -110px;
height: 300px; height: 300px;
width: 110px; width: 110px;
@ -364,7 +376,7 @@
cursor: pointer; cursor: pointer;
position: relative; position: relative;
top: 100px; top: 100px;
left: 20px; right: 85px;
} }
&_icon2 { &_icon2 {
@ -372,7 +384,7 @@
cursor: pointer; cursor: pointer;
position: relative; position: relative;
top: 200px; top: 200px;
left: -10px; right: 115px;
} }
} }
} }

Loading…
Cancel
Save