1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <div id="supermarketColleges">
- <colleges-detail :info="info" :schoolList="schoolList"></colleges-detail>
- </div>
- </template>
- <script>
- import collegesDetail from '@/components/colleges.vue';
- export default {
- name: 'supermarketColleges',
- props: {},
- components: {
- collegesDetail,
- },
- data: () => ({
- info: {
- logo: require('@/assets/logo.png'),
- banquan: '版权所有:吉林省计算中心',
- jishu: '技术支持:长春市福瑞科技有限公司',
- youbian: '邮编:130000',
- chuanzhen: '传真:239823982',
- address: '地址:吉林省长春市朝阳区前进大街1244号',
- phone: '电话:0431-1234567',
- email: '邮箱:123456@163.com',
- },
- schoolList: [
- {
- pic: require('@/assets/fabu.jpg'),
- title: '长春工业大学',
- com: 'www.baidu.com',
- type: '二级本科',
- address: '吉林省长春市力旺广场B座16楼',
- },
- {
- pic: require('@/assets/fabu.jpg'),
- title: '长春工业大学',
- com: 'www.baidu.com',
- type: '二级本科',
- address: '吉林省长春市力旺广场B座16楼',
- },
- {
- pic: require('@/assets/fabu.jpg'),
- title: '长春工业大学',
- com: 'www.baidu.com',
- type: '二级本科',
- address: '吉林省长春市力旺广场B座16楼',
- },
- {
- pic: require('@/assets/fabu.jpg'),
- title: '长春工业大学',
- com: 'www.baidu.com',
- type: '二级本科',
- address: '吉林省长春市力旺广场B座16楼',
- },
- {
- pic: require('@/assets/fabu.jpg'),
- title: '长春工业大学',
- com: 'www.baidu.com',
- type: '二级本科',
- address: '吉林省长春市力旺广场B座16楼',
- },
- {
- pic: require('@/assets/fabu.jpg'),
- title: '长春工业大学',
- com: 'www.baidu.com',
- type: '二级本科',
- address: '吉林省长春市力旺广场B座16楼',
- },
- ],
- }),
- created() {},
- computed: {},
- methods: {},
- };
- </script>
- <style lang="scss" scoped></style>
|