18 lines
574 B
Vue
18 lines
574 B
Vue
<template>
|
|
<Header title="奉节县旅游指挥调度中心" is-skip :nav-left="navLeft" :nav-right="navRight" />
|
|
<CoreVideo />
|
|
<box2 />
|
|
<box3 />
|
|
<box4 />
|
|
<Correspondence />
|
|
</template>
|
|
|
|
<script setup>
|
|
import box2 from './components/box-2.vue'
|
|
import box3 from './components/box-3.vue'
|
|
import box4 from './components/box-4.vue'
|
|
const navLeft = [{ name: '安全' }, { name: '景区', path: '/scenic' }, { name: '交通' }]
|
|
const navRight = [{ name: '停车' }, { name: '工单' }, { name: '舆情' }, { name: '酒店' }]
|
|
onMounted(() => {})
|
|
</script>
|