guanqb
2022-10-13 466619c06e70f83f07613b87569ae2f8f90d4b9e
更改homee文件名和路由
2 files modified
10 files renamed
12 ■■■■■ changed files
src/pcviews/Login/index.vue 2 ●●● patch | view | raw | blame | history
src/pcviews/homepage/AlertInfo/index.vue patch | view | raw | blame | history
src/pcviews/homepage/BuildingCost/index.vue patch | view | raw | blame | history
src/pcviews/homepage/Devices/index.vue patch | view | raw | blame | history
src/pcviews/homepage/Header/index.vue patch | view | raw | blame | history
src/pcviews/homepage/Map/index.vue patch | view | raw | blame | history
src/pcviews/homepage/PipeNetCount/index.vue patch | view | raw | blame | history
src/pcviews/homepage/PipeWellPercent/index.vue patch | view | raw | blame | history
src/pcviews/homepage/SchoolCostCompare/index.vue patch | view | raw | blame | history
src/pcviews/homepage/SchoolInfo/index.vue patch | view | raw | blame | history
src/pcviews/homepage/index.vue patch | view | raw | blame | history
src/router/page/index.js 10 ●●●●● patch | view | raw | blame | history
src/pcviews/Login/index.vue
@@ -50,7 +50,7 @@
    name: 'Login',
    methods: {
        onLogin () {
            this.$router.push('/homee')
            this.$router.push('/homepage')
        }
    }
}
src/pcviews/homepage/AlertInfo/index.vue
src/pcviews/homepage/BuildingCost/index.vue
src/pcviews/homepage/Devices/index.vue
src/pcviews/homepage/Header/index.vue
src/pcviews/homepage/Map/index.vue
src/pcviews/homepage/PipeNetCount/index.vue
src/pcviews/homepage/PipeWellPercent/index.vue
src/pcviews/homepage/SchoolCostCompare/index.vue
src/pcviews/homepage/SchoolInfo/index.vue
src/pcviews/homepage/index.vue
src/router/page/index.js
@@ -64,6 +64,8 @@
const pcTechniqueSpace = () => import('../../pcviews/technique/space.vue')
const pcTechniqueGraph = () => import('../../pcviews/technique/graph.vue')
const pcTechniquePath = () => import('../../pcviews/technique/path.vue')
const pcHomepage = () => import('../../pcviews/homepage/index.vue')
const pcLogin = () => import('../../pcviews/Login/index.vue')
const routes = [
    // 大屏页面
@@ -81,16 +83,16 @@
    {
        path: '/login',
        name: 'login',
        component: resolve => require(['../../pcviews/Login/index.vue'], resolve),
        component: pcLogin,
        meta: {
            title: '登录页',
            isAuth: false
        }
    },
    {
        path: '/homee',
        name: 'homee',
        component: resolve => require(['../../pcviews/homee/index.vue'], resolve),
        path: '/homepage',
        name: 'homepage',
        component: pcHomepage,
        meta: {
            title: '首页',
            isAuth: false