| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <div class="news">
- <left-nav :navList="navList" :topTitle="'县市区红会动态'">
- <router-view></router-view>
- </left-nav>
- </div>
- </template>
- <script>
- import LeftNav from '../../components/leftNav/LeftNav.vue';
- export default {
- components: {
- LeftNav
- },
- data() {
- return {
- navList: [{
- index: 0,
- name: '江陵县红会',
- path: '/newContent/jlx'
- }, {
- index: 1,
- name: '石首市红会',
- path: '/newContent/sss'
- }, {
- index: 2,
- name: '洪湖市红会',
- path: '/newContent/hhs'
- },
- {
- index: 3,
- name: '荆州区红会',
- path: '/newContent/jzq'
- },
- {
- index: 4,
- name: '沙市区红会',
- path: '/newContent/ssq'
- },
- {
- index: 5,
- name: '松滋市红会',
- path: '/newContent/szs'
- },
- {
- index: 6,
- name: '监利县红会',
- path: '/newContent/jls'
- },
- ],
- };
- }
- };
- </script>
- <style>
- </style>
|