1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- export const winRouter = [
- {
- path: '/introduceIndex',
- component: () => import('../../views/win/introduceIndex.vue'),
- name: 'introduceIndex',
- meta: {
- title: '集团介绍',
- },
- },
- {
- path: '/newsIndex',
- component: () => import('../../views/win/newsIndex.vue'),
- name: 'newsIndex',
- meta: {
- title: '集团新闻',
- },
- },
- {
- path: '/messIndex',
- component: () => import('../../views/win/messIndex.vue'),
- name: 'messIndex',
- meta: {
- title: '信息公开',
- },
- },
- {
- path: '/popularwillIndex',
- component: () => import('../../views/win/popularwillIndex.vue'),
- name: 'popularwillIndex',
- meta: {
- title: '民意征集',
- },
- },
- {
- path: '/watersupplyIndex',
- component: () => import('../../views/win/watersupplyIndex.vue'),
- name: 'watersupplyIndex',
- meta: {
- title: '供水信息',
- },
- },
- {
- path: '/inwaterIndex',
- component: () => import('../../views/win/inwaterIndex.vue'),
- name: 'inwaterIndex',
- meta: {
- title: '走进水务',
- },
- },
- ]
|