index1.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <div id="index">
  3. <el-row>
  4. <el-row :span="24" class="style">
  5. <div class="w_1270">
  6. <el-col :span="24" class='top'>
  7. <el-row>
  8. <el-col :span="19">
  9. 您好,欢迎访问吉林省高等学校毕业生就业信息网!
  10. </el-col>
  11. </el-row>
  12. </el-col>
  13. </div>
  14. </el-row>
  15. </el-row>
  16. <el-row :span="24" class='banner'>
  17. <div id="banner">
  18. <el-col :span="24">
  19. <el-image :src="banner.png" style="width:100%;height:300px;">
  20. </el-image>
  21. </el-col>
  22. </div>
  23. </el-row>
  24. </el-row>
  25. </el-row>
  26. </div>
  27. </template>>
  28. <script>
  29. import top from '@/layout/index/top.vue';
  30. import banner from '@/layout/index/banner.vue';
  31. import menuInfo from '@/layout/index/menuInfo.vue';
  32. import mainOne from '@/layout/index/mainOne.vue';
  33. import mainTwo from '@/layout/index/mainTwo.vue';
  34. import { mapState, createNamespacedHelpers } from 'vuex';
  35. import { component } from 'vue/types/umd';
  36. export default {
  37. name:'index'
  38. props:{},
  39. components:{
  40. top,
  41. banner,
  42. menuInfo,
  43. },
  44. data:function () {
  45. }
  46. }
  47. </script>
  48. <style scoped>
  49. </style>