|
@@ -0,0 +1,77 @@
|
|
|
+<template>
|
|
|
+ <div id="supermarketScientific">
|
|
|
+ <colleges-detail :info="info" :schoolList="schoolList"></colleges-detail>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import collegesDetail from '@/components/scientific.vue';
|
|
|
+export default {
|
|
|
+ name: 'supermarketScientific',
|
|
|
+ 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>
|