This commit is contained in:
A1300399510
2023-07-13 18:05:06 +08:00
parent a626223e64
commit c051c60e7e
7 changed files with 6 additions and 4 deletions

View File

@@ -4,7 +4,8 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0"> <meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico"> <link rel="icon" href="./favicon.ico">
<!-- <link rel="icon" href="<%= BASE_URL %>favicon.ico"> -->
<title><%= htmlWebpackPlugin.options.title %></title> <title><%= htmlWebpackPlugin.options.title %></title>
</head> </head>
<body> <body>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 216 KiB

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -18,6 +18,7 @@ import {
ElBadge, ElBadge,
ElDropdown, ElDropdown,
ElPopover, ElPopover,
ElDatePicker,
// 其他需要的组件 // 其他需要的组件
} from 'element-plus' } from 'element-plus'
@@ -59,6 +60,7 @@ app.use(ElCarouselItem)
app.use(ElBadge) app.use(ElBadge)
app.use(ElDropdown) app.use(ElDropdown)
app.use(ElPopover) app.use(ElPopover)
app.use(ElDatePicker)
app.use(store).use(router).use(Axios).mount('#app') app.use(store).use(router).use(Axios).mount('#app')

View File

@@ -6,7 +6,8 @@ const routes = [
{ {
path: '/', path: '/',
name: 'home', name: 'home',
component: HomeView, // component: HomeView,
component: () => import(/* webpackChunkName: "HomeView" */ '../views/HomeView.vue'),
meta: { meta: {
title: "首页" title: "首页"
} }

View File

@@ -2708,8 +2708,6 @@ export default {
} }
.residential-area { .residential-area {
// position: absolute;
// top: 58px;
width: 640px; width: 640px;
height: 500px; height: 500px;
background-color: rgba(255, 255, 255, 1); background-color: rgba(255, 255, 255, 1);