1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- // let isProd = process.env.NODE_ENV === 'production';
- export default [
- {
- path: '/security',
- component: () =>
- import ('../views/security-plan.vue'),
- meta: {
- title: '进博会消防安保平台火灾防控'
- }
- },
- {
- path: '/',
- name: 'Home',
- component: () =>
- import ('../views/enforcement-dynamic.vue'),
- meta: {
- title: '消防执法动态'
- }
- },
- {
- path: '/enforcement-dynamic',
- component: () =>
- import ('../views/enforcement-dynamic.vue'),
- meta: {
- title: '消防执法动态'
- }
- },
- {
- path: '/comprehensive-disposal',
- component: () =>
- import ('../views/comprehensive-disposal.vue'),
- meta: {
- title: '警情综合处置'
- }
- },
- {
- path: '/fire-data-analysis',
- component: () =>
- import ('../views/fire-data-analysis.vue'),
- meta: {
- title: '火灾数据分析'
- }
- }, {
- path: '/rescue-station',
- component: () =>
- import ('../views/rescue-station.vue'),
- meta: {
- title: '消防救援站点'
- }
- }, {
- path: '/water-sources',
- component: () =>
- import ('../views/water-sources.vue'),
- meta: {
- title: '消防水源情况'
- }
- }, {
- path: '/self-management',
- component: () =>
- import ('../views/self-management.vue'),
- meta: {
- title: '企业自主管理'
- }
- }, {
- path: '/security-plan',
- component: () =>
- import ('../views/security-plan.vue'),
- meta: {
- title: '大型安保预案'
- }
- },
- {
- path: '/fire-signs',
- component: () =>
- import ('../views/fire-signs.vue'),
- meta: {
- title: '城市消防体征'
- }
- },
- ];
|