业务申请
Showing
3 changed files
with
13 additions
and
11 deletions
| ... | @@ -53,7 +53,7 @@ export default { | ... | @@ -53,7 +53,7 @@ export default { |
| 53 | width: 100%; | 53 | width: 100%; |
| 54 | text-align: center; | 54 | text-align: center; |
| 55 | overflow: hidden; | 55 | overflow: hidden; |
| 56 | height: 150px; | 56 | height: 100px; |
| 57 | 57 | ||
| 58 | & .sidebar-logo-link { | 58 | & .sidebar-logo-link { |
| 59 | height: 100%; | 59 | height: 100%; | ... | ... |
| ... | @@ -54,22 +54,22 @@ export const constantRoutes = [ | ... | @@ -54,22 +54,22 @@ export const constantRoutes = [ |
| 54 | */ | 54 | */ |
| 55 | export const asyncRoutes = [ | 55 | export const asyncRoutes = [ |
| 56 | { | 56 | { |
| 57 | path: '/housedev', | 57 | path: '/businessHandling', |
| 58 | id: '3', | 58 | id: '3', |
| 59 | parentId: null, | 59 | parentId: null, |
| 60 | component: Layout, | 60 | component: Layout, |
| 61 | meta: { title: '房源开发', icon: 'fykf' }, | 61 | meta: { title: '业务办理', icon: 'fykf' }, |
| 62 | redirect: '/housedev/yzfyxsgl', | 62 | redirect: '/businessHandling/apply', |
| 63 | alwaysShow: true, | 63 | alwaysShow: true, |
| 64 | name: 'housedev', | 64 | name: 'businessHandling', |
| 65 | children: [ | 65 | children: [ |
| 66 | { | 66 | { |
| 67 | path: 'yzfyxsgl', | 67 | path: 'apply', |
| 68 | id: '4', | 68 | id: '4', |
| 69 | parentId: '3', | 69 | parentId: '3', |
| 70 | component: () => import('@/views/housedev/yzfyxsgl/index.vue'), | 70 | component: () => import('@/views/businessHandling/apply.vue'), |
| 71 | name: 'yzfyxsgl', | 71 | name: 'apply', |
| 72 | meta: { title: '业主房源线索' } | 72 | meta: { title: '业务申请' } |
| 73 | } | 73 | } |
| 74 | ] | 74 | ] |
| 75 | } | 75 | } |
| ... | @@ -78,7 +78,7 @@ export const asyncRoutes = [ | ... | @@ -78,7 +78,7 @@ export const asyncRoutes = [ |
| 78 | const createRouter = () => | 78 | const createRouter = () => |
| 79 | new Router({ | 79 | new Router({ |
| 80 | scrollBehavior: () => ({ y: 0 }), | 80 | scrollBehavior: () => ({ y: 0 }), |
| 81 | routes: [...constantRoutes] | 81 | routes: [...constantRoutes, ...asyncRoutes] |
| 82 | }) | 82 | }) |
| 83 | 83 | ||
| 84 | const router = createRouter() | 84 | const router = createRouter() | ... | ... |
-
Please register or sign in to post a comment