supermarketColleges.vue 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <div id="supermarketColleges">
  3. <colleges-detail :info="info" :schoolList="schoolList"></colleges-detail>
  4. </div>
  5. </template>
  6. <script>
  7. import collegesDetail from '@/components/colleges.vue';
  8. export default {
  9. name: 'supermarketColleges',
  10. props: {},
  11. components: {
  12. collegesDetail,
  13. },
  14. data: () => ({
  15. info: {
  16. logo: require('@/assets/logo.png'),
  17. banquan: '版权所有:吉林省计算中心',
  18. jishu: '技术支持:长春市福瑞科技有限公司',
  19. youbian: '邮编:130000',
  20. chuanzhen: '传真:239823982',
  21. address: '地址:吉林省长春市朝阳区前进大街1244号',
  22. phone: '电话:0431-1234567',
  23. email: '邮箱:123456@163.com',
  24. },
  25. schoolList: [
  26. {
  27. pic: require('@/assets/fabu.jpg'),
  28. title: '长春工业大学',
  29. com: 'www.baidu.com',
  30. type: '二级本科',
  31. address: '吉林省长春市力旺广场B座16楼',
  32. },
  33. {
  34. pic: require('@/assets/fabu.jpg'),
  35. title: '长春工业大学',
  36. com: 'www.baidu.com',
  37. type: '二级本科',
  38. address: '吉林省长春市力旺广场B座16楼',
  39. },
  40. {
  41. pic: require('@/assets/fabu.jpg'),
  42. title: '长春工业大学',
  43. com: 'www.baidu.com',
  44. type: '二级本科',
  45. address: '吉林省长春市力旺广场B座16楼',
  46. },
  47. {
  48. pic: require('@/assets/fabu.jpg'),
  49. title: '长春工业大学',
  50. com: 'www.baidu.com',
  51. type: '二级本科',
  52. address: '吉林省长春市力旺广场B座16楼',
  53. },
  54. {
  55. pic: require('@/assets/fabu.jpg'),
  56. title: '长春工业大学',
  57. com: 'www.baidu.com',
  58. type: '二级本科',
  59. address: '吉林省长春市力旺广场B座16楼',
  60. },
  61. {
  62. pic: require('@/assets/fabu.jpg'),
  63. title: '长春工业大学',
  64. com: 'www.baidu.com',
  65. type: '二级本科',
  66. address: '吉林省长春市力旺广场B座16楼',
  67. },
  68. ],
  69. }),
  70. created() {},
  71. computed: {},
  72. methods: {},
  73. };
  74. </script>
  75. <style lang="scss" scoped></style>