Commit 5f6531f2 authored by 张牧越's avatar 张牧越

塔吊检测页面完成

parent a3d1c564
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<div> <div>
<div class="nav-header"> <div class="nav-header">
<div class="left-nav"> <div class="left-nav">
<span>XXX项目后台管理系统</span> <span style="font-size: 14px">XXX项目后台管理系统</span>
<router-link to="/">数字工地</router-link> <router-link to="/">数字工地</router-link>
<router-link to="/realname">实名制</router-link> <router-link to="/realname">实名制</router-link>
<router-link to="/supervisory">视频监控</router-link> <router-link to="/supervisory">视频监控</router-link>
......
This diff is collapsed.
<template>
<div>test4</div>
</template>
\ No newline at end of file
This diff is collapsed.
...@@ -5,6 +5,9 @@ import Construction from "@/components/construction/Index" ...@@ -5,6 +5,9 @@ import Construction from "@/components/construction/Index"
import RealName from "@/components/realname/Index" import RealName from "@/components/realname/Index"
import EarlyWarning from "@/components/earlywarning/Index" import EarlyWarning from "@/components/earlywarning/Index"
import Supervisory from "@/components/supervisory/Index" import Supervisory from "@/components/supervisory/Index"
import Tower from "@/components/tower/Index"
import Noise from "@/components/noise/Index"
Vue.use(VueRouter) Vue.use(VueRouter)
...@@ -17,6 +20,8 @@ const router = new VueRouter({ ...@@ -17,6 +20,8 @@ const router = new VueRouter({
{ path: 'realname', component: RealName }, { path: 'realname', component: RealName },
{ path: 'earlywarning', component: EarlyWarning }, { path: 'earlywarning', component: EarlyWarning },
{ path: 'supervisory', component: Supervisory }, { path: 'supervisory', component: Supervisory },
{ path: 'tower', component: Tower },
{ path: 'noise', component: Noise },
] ]
}, },
......
...@@ -8,7 +8,7 @@ module.exports = defineConfig({ ...@@ -8,7 +8,7 @@ module.exports = defineConfig({
postcssOptions: { postcssOptions: {
plugins: [ plugins: [
require('postcss-plugin-px2rem')({ require('postcss-plugin-px2rem')({
rootValue: 55, rootValue: 54,
mediaQuery: false, //(布尔值)允许在媒体查询中转换px。 mediaQuery: false, //(布尔值)允许在媒体查询中转换px。
minPixelValue: 5 //设置要替换的最小像素值(3px会被转rem)。 默认 0 minPixelValue: 5 //设置要替换的最小像素值(3px会被转rem)。 默认 0
}), }),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment