Szs.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <div class="news">
  3. <left-nav :navList="navList" :topTitle="'县市区红会动态'">
  4. <router-view></router-view>
  5. </left-nav>
  6. </div>
  7. </template>
  8. <script>
  9. import LeftNav from '../../components/leftNav/LeftNav.vue';
  10. export default {
  11. components: {
  12. LeftNav
  13. },
  14. data() {
  15. return {
  16. navList: [{
  17. index: 0,
  18. name: '江陵县红会',
  19. path: '/newContent/jlx'
  20. }, {
  21. index: 1,
  22. name: '石首市红会',
  23. path: '/newContent/sss'
  24. }, {
  25. index: 2,
  26. name: '洪湖市红会',
  27. path: '/newContent/hhs'
  28. },
  29. {
  30. index: 3,
  31. name: '荆州区红会',
  32. path: '/newContent/jzq'
  33. },
  34. {
  35. index: 4,
  36. name: '沙市区红会',
  37. path: '/newContent/ssq'
  38. },
  39. {
  40. index: 5,
  41. name: '松滋市红会',
  42. path: '/newContent/szs'
  43. },
  44. {
  45. index: 6,
  46. name: '监利县红会',
  47. path: '/newContent/jls'
  48. },
  49. ],
  50. };
  51. }
  52. };
  53. </script>
  54. <style>
  55. </style>