提交 409d7d7a authored 作者: lihuihui's avatar lihuihui

Merge branch 'sofia' of https://gitlab.ezijing.com/ezijing/new-project into sofia

...@@ -1119,9 +1119,9 @@ ...@@ -1119,9 +1119,9 @@
} }
}, },
"@ezijing/vue-form": { "@ezijing/vue-form": {
"version": "2.0.13", "version": "2.1.2",
"resolved": "https://registry.npmjs.org/@ezijing/vue-form/-/vue-form-2.0.13.tgz", "resolved": "https://registry.npmjs.org/@ezijing/vue-form/-/vue-form-2.1.2.tgz",
"integrity": "sha512-r+OQxGcjeOxn8gq47zy3UCGj5u3VKpbcSZ76YpNfrLQTmbwbmxc1EIhVK6reV1rOW0/G9c6plVqvb0X/Sg9oHw==", "integrity": "sha512-2gJGVHfo+HGBftEufLaO7dEQ5mB+ftSzFHUWyV+hXjZVgD3Uzjp3dAh5T2NQpEIm2LYyOqtcQ/ifRCTJAVNXHw==",
"requires": { "requires": {
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0", "@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"@vue/babel-preset-jsx": "^1.1.2", "@vue/babel-preset-jsx": "^1.1.2",
......
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
"webpack-merge": "^4.2.2" "webpack-merge": "^4.2.2"
}, },
"dependencies": { "dependencies": {
"@ezijing/vue-form": "^2.0.13", "@ezijing/vue-form": "^2.1.2",
"@ezijing/vue-passport": "^1.0.0", "@ezijing/vue-passport": "^1.0.0",
"axios": "^0.21.0", "axios": "^0.21.0",
"bootstrap": "^4.5.3", "bootstrap": "^4.5.3",
......
<template>
<div class="content-box">
<div class="content">
<div class="menu">
<div v-for="(item, value) in list" :key="value">
<router-link :to="item.url" @click.native="geturl()">
<div class="li" :class="value === target ? 'active' : ''">{{ item.name }}</div>
</router-link>
</div>
</div>
<div class="fill">
<slot></slot>
</div>
</div>
</div>
</template>
<script>
export default {
props: ['menu'],
data: function () {
return {
list: this.menu,
target: 0,
tag: '',
}
},
mounted() {
let _tag = this.$route.query.tag
this.activeButton(_tag)
},
watch: {
$route(to) {
this.activeButton(to.query.tag)
},
},
methods: {
geturl() {
this.$emit('urlChange')
},
// 增加标签背景颜色
activeButton(_tag) {
const that = this
if (_tag && that.tag !== _tag) {
that.tag = _tag
that.list.forEach(function (item, index) {
if (item.name == _tag) {
that.target = index
}
})
}
},
},
}
</script>
<style lang="scss" scoped>
@import '../assets/css/ProjectContent';
</style>
<style lang="scss">
.fill {
font-family: 'PingFangSC-Regular', 'PingFang SC', 'Microsoft Yahei' !important;
font-size: 18px;
h3 {
font-size: 24px;
font-weight: 600;
line-height: 33px;
padding-bottom: 20px;
}
p {
margin-bottom: 15px;
> a {
color: #3a8fff;
text-decoration: underline;
}
}
}
</style>
<template>
<div class="project-title">
<h2>{{ title }}</h2>
</div>
</template>
<script>
export default {
data() {
return {
title: '项目介绍'
}
},
created: function () {
let _path = this.$route.path
if (_path.search('project') === 1) {
this.title = '项目介绍'
return
}
if (_path.search('know') === 1) {
this.title = '招生中心'
return
}
if (_path.search('download') === 1) {
this.title = '下载专区'
return
}
if (_path.search('news') === 1) {
this.title = '新闻中心'
return
}
if (_path.search('contact') === 1) {
this.title = '联系我们'
return
}
if (_path.search('signup') === 1) {
this.title = '索菲亚大学金融方向工商管理硕士项目项目报名系统'
return
}
}
}
</script>
<style scoped>
.project-title {
width: 100%;
height: 88px;
background-color: #333;
}
.project-title > h2 {
color: #ffffff;
font-size: 30px;
font-weight: 600;
height: 88px;
line-height: 68px;
max-width: 1200px;
margin: 0 auto;
}
</style>
import Vue from 'vue' // 引入vue框架 import Vue from 'vue' // 引入vue框架
import VueForm from '@ezijing/vue-form'
import '@ezijing/vue-form/dist/vue-form.css'
import VuePassport from '@ezijing/vue-passport' import VuePassport from '@ezijing/vue-passport'
import '@ezijing/vue-passport/dist/vue-passport.css' import '@ezijing/vue-passport/dist/vue-passport.css'
import VueForm from '@ezijing/vue-form'
import '@ezijing/vue-form/dist/vue-form.css'
import Element from 'element-ui' // 引入 element-ui 框架 import Element from 'element-ui' // 引入 element-ui 框架
import './style.scss' // 定义 element-ui主题色 + 公共样式 import './style.scss' // 定义 element-ui主题色 + 公共样式
import router from './router' // router定义 import router from './router' // router定义
......
<template>
<div>
<Project-title></Project-title>
<Project-content v-bind:menu="menu">
<div v-html="content"></div>
</Project-content>
</div>
</template>
<script>
import ProjectTitle from '../../components/ProjectTitle.vue'
import ProjectContent from '../../components/ProjectContent.vue'
import { introduction } from '../../action/axiosService.js'
export default {
components: {
ProjectTitle,
ProjectContent
},
data() {
return {
// 这个是传给组件的项目列表
menu: [{ name: '联系我们', url: '' }],
content: '',
tag: '联系我们'
}
},
mounted() {
const that = this
introduction({
tag: '联系我们',
cb: function(obj) {
that.content = obj
}
})
}
}
</script>
<style scoped></style>
<template>
<div>
<Project-title></Project-title>
<Project-content v-bind:menu="menu">
<h3 class="download-title">下载专区</h3>
<div v-html="content"></div>
</Project-content>
</div>
</template>
<script>
import ProjectTitle from '../../components/ProjectTitle.vue'
import ProjectContent from '../../components/ProjectContent.vue'
import { introduction } from '../../action/axiosService.js'
export default {
components: {
ProjectTitle,
ProjectContent
},
data() {
return {
// 这个是传给组件的项目列表
menu: [{ name: '下载专区', url: '' }],
content: '',
tag: '下载专区'
}
},
mounted() {
const that = this
introduction({
tag: that.tag,
cb: function(obj) {
that.content = obj
}
})
}
}
</script>
<style scoped>
a {
margin-top: 20px;
color: #000000;
}
</style>
<template>
<!-- 招生中心 -->
<div>
<Project-title></Project-title>
<Project-content v-bind:menu="menu" @urlChange="updateUrl">
<div v-html="content"></div>
</Project-content>
</div>
</template>
<script>
import ProjectTitle from '../../components/ProjectTitle.vue'
import ProjectContent from '../../components/ProjectContent.vue'
import { introduction } from '../../action/axiosService.js'
export default {
components: {
ProjectTitle,
ProjectContent
},
data() {
return {
// 这个是传给组件的项目列表
menu: [
{ name: '报名须知', url: '/know?tag=报名须知' },
{ name: '申请流程', url: '/know?tag=申请流程' },
{ name: '招生简章', url: '/know?tag=招生简章' },
{ name: '学费信息', url: '/know?tag=学费信息' }
],
content: '',
tag: '报名须知'
}
},
created() {
let _tag = this.$route.query.tag
if (_tag) this.tag = _tag
},
mounted() {
const that = this
introduction({
tag: that.tag,
cb: function(obj) {
that.content = obj
}
})
},
methods: {
updateUrl() {
const that = this
if (that.tag === that.$route.query.tag) return
this.tag = this.$route.query.tag
introduction({
tag: that.tag,
cb: function(obj) {
that.content = obj
}
})
}
}
}
</script>
<style scoped></style>
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
</div> </div>
</div> </div>
</header> </header>
<nav class="nav"><h1 class="title">索菲亚大学金融方向工商管理硕士项目项目推荐信</h1></nav> <nav class="nav"><h1 class="title">索菲亚大学金融方向工商管理硕士项目推荐信</h1></nav>
<section class="content"> <section class="content">
<el-form <el-form
:model="ruleForm" :model="ruleForm"
......
...@@ -15,7 +15,7 @@ export default { ...@@ -15,7 +15,7 @@ export default {
'REGISTRATION', 'REGISTRATION',
'CLOSED' 'CLOSED'
] ]
this.form.options.disabled = stageList.findIndex(item => item === submissionStage) > 2 this.form.options.disabled = stageList.findIndex(item => item === submissionStage) > 6
const DIPLOMA_FILING_TABLE = attachments.filter(item => { const DIPLOMA_FILING_TABLE = attachments.filter(item => {
return item.file_type_id === 'DIPLOMA_FILING_TABLE' return item.file_type_id === 'DIPLOMA_FILING_TABLE'
}) })
...@@ -38,7 +38,7 @@ export default { ...@@ -38,7 +38,7 @@ export default {
data: { file_type: 'DIPLOMA_FILING_TABLE' } data: { file_type: 'DIPLOMA_FILING_TABLE' }
}, },
prepend: ` prepend: `
<p>学信网《教育部学历证书电子注册备案表》[<a href="" target="_blank" download="毕业证书注册备案表">下载流程表</a>] <p>学信网《教育部学历证书电子注册备案表》[<a href="https://zws-imgs-pub.oss-cn-beijing.aliyuncs.com/pc/sofia/%E6%AF%95%E4%B8%9A%E8%AF%81%E4%B9%A6%E6%B3%A8%E5%86%8C%E5%A4%87%E6%A1%88%E8%A1%A8.pdf" target="_blank" download="毕业证书注册备案表">下载流程表</a>]
<p>学历在学信网可查的同学,请下载学信网电子注册备案表提交到系统,具体获取流程请</p> <p>学历在学信网可查的同学,请下载学信网电子注册备案表提交到系统,具体获取流程请</p>
<p>下载附件 上传文件仅限“jpg,jpeg,pdf,png”格式,文件小于10Mb。</p> <p>下载附件 上传文件仅限“jpg,jpeg,pdf,png”格式,文件小于10Mb。</p>
` `
......
...@@ -16,7 +16,7 @@ export default function(_this) { ...@@ -16,7 +16,7 @@ export default function(_this) {
'REGISTRATION', 'REGISTRATION',
'CLOSED' 'CLOSED'
] ]
this.form.options.disabled = stageList.findIndex(item => item === submissionStage) > 2 this.form.options.disabled = stageList.findIndex(item => item === submissionStage) > 6
return attachments.reduce( return attachments.reduce(
(result, item) => { (result, item) => {
if (item.file_type_id === 'REPORT_CARD_CN') { if (item.file_type_id === 'REPORT_CARD_CN') {
......
...@@ -39,7 +39,7 @@ export default function(_this) { ...@@ -39,7 +39,7 @@ export default function(_this) {
data: { file_type: 'ADMISSION_AGREEMENT' } data: { file_type: 'ADMISSION_AGREEMENT' }
}, },
prepend: ` prepend: `
<p><a href="https://zws-imgs-pub.ezijing.com/static/public/c66b72430dce73ad7d56bfda426843f5.pdf" target="_blank" download="入学协议">下载入学协议</p> <p><a href="https://zws-imgs-pub.oss-cn-beijing.aliyuncs.com/pc/sofia/%E5%85%A5%E5%AD%A6%E5%8D%8F%E8%AE%AE.pdf" target="_blank" download="入学协议">下载入学协议</a></p>
<p>申请者可将签字后的入学协议原件扫描或拍照后提交。</p> <p>申请者可将签字后的入学协议原件扫描或拍照后提交。</p>
<p>学员应仔细阅读《入学协议》以及课程介绍,如对入学协议或课程有异议,请第一时间与课程顾问咨询确认。请用A4纸打印后,在入学协议上签上姓名和日期,内容需显示完整、格式整齐、字迹清晰可辨。上传文件仅限“jpg,jpeg,pdf,png”格式,文件小于10Mb。</p> <p>学员应仔细阅读《入学协议》以及课程介绍,如对入学协议或课程有异议,请第一时间与课程顾问咨询确认。请用A4纸打印后,在入学协议上签上姓名和日期,内容需显示完整、格式整齐、字迹清晰可辨。上传文件仅限“jpg,jpeg,pdf,png”格式,文件小于10Mb。</p>
` `
......
...@@ -15,7 +15,7 @@ export default { ...@@ -15,7 +15,7 @@ export default {
'REGISTRATION', 'REGISTRATION',
'CLOSED' 'CLOSED'
] ]
this.form.options.disabled = stageList.findIndex(item => item === submissionStage) > 2 this.form.options.disabled = stageList.findIndex(item => item === submissionStage) > 6
const RESUME_EN = attachments.filter(item => { const RESUME_EN = attachments.filter(item => {
return item.file_type_id === 'RESUME_EN' return item.file_type_id === 'RESUME_EN'
}) })
...@@ -38,7 +38,7 @@ export default { ...@@ -38,7 +38,7 @@ export default {
data: { file_type: 'RESUME_EN' } data: { file_type: 'RESUME_EN' }
}, },
append: ` append: `
<p>请下载填写英文简历模板后上传 [<a href="https://zws-imgs-pub.ezijing.com/static/public/2e8e4f6898f59e03636139a402ef16c1.docx" target="_blank" download="英文简历模板">下载模板</a>]</p> <p>请下载填写英文简历模板后上传 [<a href="https://zws-imgs-pub.oss-cn-beijing.aliyuncs.com/pc/sofia/%E8%8B%B1%E6%96%87%E7%AE%80%E5%8E%86.doc" target="_blank" download="英文简历模板">下载模板</a>]</p>
<p>请将英文简历填写完存为"pdf"格式上传,文件小于10MB。</p>` <p>请将英文简历填写完存为"pdf"格式上传,文件小于10MB。</p>`
} }
] ]
......
...@@ -76,52 +76,52 @@ export default function(_this) { ...@@ -76,52 +76,52 @@ export default function(_this) {
{ {
type: 'v-select', type: 'v-select',
values: [ values: [
{ label: '互联网/电子商务', value: '1 ' }, { value: '互联网/电子商务' },
{ label: '基金/证券/期货/投资', value: '2 ' }, { value: '基金/证券/期货/投资' },
{ label: '保险', value: '3 ' }, { value: '保险' },
{ label: '银行', value: '4 ' }, { value: '银行' },
{ label: '信托/担保/拍卖/典当', value: '5 ' }, { value: '信托/担保/拍卖/典当' },
{ label: '计算机软件', value: '6 ' }, { value: '计算机软件' },
{ label: 'IT服务(系统/数据/维护)', value: '7 ' }, { value: 'IT服务(系统/数据/维护)' },
{ label: '电子技术/半导体/集成电路', value: '8 ' }, { value: '电子技术/半导体/集成电路' },
{ label: '计算机硬件', value: '9 ' }, { value: '计算机硬件' },
{ label: '通信/电信/网络设备', value: '10' }, { value: '通信/电信/网络设备' },
{ label: '通信/电信运营、增值服务', value: '11' }, { value: '通信/电信运营、增值服务' },
{ label: '网络游戏', value: '12' }, { value: '网络游戏' },
{ label: '房地产/建筑/建材/工程', value: '13' }, { value: '房地产/建筑/建材/工程' },
{ label: '家居/室内设计/装饰装潢', value: '14' }, { value: '家居/室内设计/装饰装潢' },
{ label: '物业管理/商业中心', value: '15' }, { value: '物业管理/商业中心' },
{ label: '专业服务/咨询(财会/法律/人力资源等)', value: '16' }, { value: '专业服务/咨询(财会/法律/人力资源等)' },
{ label: '广告/会展/公关', value: '17' }, { value: '广告/会展/公关' },
{ label: '中介服务', value: '18' }, { value: '中介服务' },
{ label: '检验/检测/认证', value: '19' }, { value: '检验/检测/认证' },
{ label: '外包服务', value: '20' }, { value: '外包服务' },
{ label: '快速消费品(食品/饮料/烟酒/日化)', value: '21' }, { value: '快速消费品(食品/饮料/烟酒/日化)' },
{ label: '耐用消费品(服饰/纺织/皮革/家具/家电)', value: '22' }, { value: '耐用消费品(服饰/纺织/皮革/家具/家电)' },
{ label: '贸易/进出口', value: '23' }, { value: '贸易/进出口' },
{ label: '零售/批发', value: '24' }, { value: '零售/批发' },
{ label: '租赁服务', value: '25' }, { value: '租赁服务' },
{ label: '教育/培训/院校', value: '26' }, { value: '教育/培训/院校' },
{ label: '礼品/玩具/工艺美术/收藏品/奢侈品', value: '27' }, { value: '礼品/玩具/工艺美术/收藏品/奢侈品' },
{ label: '汽车/摩托车', value: '28' }, { value: '汽车/摩托车' },
{ label: '大型设备/机电设备/重工业', value: '29' }, { value: '大型设备/机电设备/重工业' },
{ label: '加工制造(原料加工/模具)', value: '30' }, { value: '加工制造(原料加工/模具)' },
{ label: '仪器仪表及工业自动化', value: '31' }, { value: '仪器仪表及工业自动化' },
{ label: '印刷/包装/造纸', value: '32' }, { value: '印刷/包装/造纸' },
{ label: '办公用品及设备', value: '33' }, { value: '办公用品及设备' },
{ label: '医药/生物工程', value: '34' }, { value: '医药/生物工程' },
{ label: '医疗设备/器械', value: '35' }, { value: '医疗设备/器械' },
{ label: '航空/航天研究与制造', value: '36' }, { value: '航空/航天研究与制造' },
{ label: '交通/运输,物流/仓储', value: '37' }, { value: '交通/运输,物流/仓储' },
{ label: '医疗/护理/美容/保健/卫生服务', value: '38' }, { value: '医疗/护理/美容/保健/卫生服务' },
{ label: '酒店/餐饮,旅游/度假,媒体/出版/影视/文化传播', value: '39' }, { value: '酒店/餐饮,旅游/度假,媒体/出版/影视/文化传播' },
{ label: '娱乐/体育/休闲', value: '40' }, { value: '娱乐/体育/休闲' },
{ label: '能源/矿产/采掘/冶炼', value: '41' }, { value: '能源/矿产/采掘/冶炼' },
{ label: '石油/石化/化工,电气/电力/水利', value: '42' }, { value: '石油/石化/化工,电气/电力/水利' },
{ label: '环保', value: '43' }, { value: '环保' },
{ label: '政府/公共事业/非盈利机构', value: '44' }, { value: '政府/公共事业/非盈利机构' },
{ label: '学术/科研,农/林/牧/渔跨领域经营', value: '45' }, { value: '学术/科研,农/林/牧/渔跨领域经营' },
{ label: '其他', value: '90' } { value: '其他' }
], ],
label: '行业类别', label: '行业类别',
model: 'industry', model: 'industry',
......
...@@ -6,10 +6,10 @@ ...@@ -6,10 +6,10 @@
<div class="pay-hd"> <div class="pay-hd">
<h1>欢迎您</h1> <h1>欢迎您</h1>
<p class="t1"> <p class="t1">
申请紫荆-索菲亚大学金融方向工商管理硕士项目项目,本项目的注册费、申请费共计<span>700</span>元,请扫描二维码缴费以完成报名。 申请紫荆-索菲亚大学金融方向工商管理硕士项目,本项目的注册费、申请费共计<span>700</span>元,请扫描二维码缴费以完成报名。
</p> </p>
<p class="t1" v-if="isPass"> <p class="t1" v-if="isPass">
因面试未通过需重新申请紫荆-索菲亚大学金融方向工商管理硕士项目项目,本项目的注册费、申请费共计<span>700</span>元,请扫描二维码缴费以完成报名。 因面试未通过需重新申请紫荆-索菲亚大学金融方向工商管理硕士项目,本项目的注册费、申请费共计<span>700</span>元,请扫描二维码缴费以完成报名。
</p> </p>
</div> </div>
<div class="qrcode-error" v-if="qrcodeError"> <div class="qrcode-error" v-if="qrcodeError">
......
...@@ -223,7 +223,7 @@ export default { ...@@ -223,7 +223,7 @@ export default {
code: 'industry', code: 'industry',
computed(data) { computed(data) {
const found = industryList.find(item => item.value === data.industry) const found = industryList.find(item => item.value === data.industry)
return found.label return found ? found.label : data.industry
} }
}, },
{ label: '工作部门', code: 'dept_cn' }, { label: '工作部门', code: 'dept_cn' },
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
width="348px" width="348px"
> >
<div class="dialog-tips"> <div class="dialog-tips">
<p>请注意接听索菲亚大学金融方向工商管理硕士项目项目招办老师的邀约电话</p> <p>请注意接听索菲亚大学金融方向工商管理硕士项目招办老师的邀约电话</p>
<div class="icon"><img src="../../../assets/images/icon_success.png" /></div> <div class="icon"><img src="../../../assets/images/icon_success.png" /></div>
</div> </div>
<template #footer> <template #footer>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
</div> </div>
<h1>欢迎您</h1> <h1>欢迎您</h1>
<p class="t1"> <p class="t1">
申请紫荆-索菲亚大学金融方向工商管理硕士项目项目,请在填写以下内容并<br /> 申请紫荆-索菲亚大学金融方向工商管理硕士项目,请在填写以下内容并<br />
提交报名申请后,扫码支付本项目的注册费、申请费共计<span>700</span>元。 提交报名申请后,扫码支付本项目的注册费、申请费共计<span>700</span>元。
</p> </p>
</div> </div>
......
<template>
<div>
<Project-title></Project-title>
<div class="content-box">
<div class="content">
<template v-if="showlist">
<div
class="li"
v-for="(item, ind) in list"
:key="item.id"
:serial="ind"
@click="getContent(ind)"
>
<img :src="item.photo_uri" alt class="head" />
<div class="li-preview">
<h2 class="li-title">{{ item.title }}</h2>
<div>{{ item.updated_time }}</div>
</div>
</div>
</template>
<template v-else>
<div class="news-list-content-title">
<div class="content-back" @click="showList">返回</div>
<h2 class="title">{{ list[order].title }}</h2>
</div>
<div class="news-list-content-time">{{ list[order].updated_time }}</div>
<div class="news-list-content" v-html="list[order].content"></div>
</template>
</div>
</div>
</div>
</template>
<script>
import ProjectTitle from '../../components/ProjectTitle.vue'
import { getNews } from '../../action/axiosService.js'
export default {
components: {
ProjectTitle
},
data() {
return {
// 这个是传给组件的项目列表
list: [],
showlist: true,
content: '',
order: 0
}
},
mounted() {
const that = this
getNews({
cb: function (obj) {
that.list = obj
}
})
},
methods: {
getContent: function (index) {
console.log('w', this.list[index])
this.order = index
this.showlist = false
},
showList() {
this.showlist = true
}
}
}
</script>
<style>
h2,
h3 {
padding: 0;
margin: 0;
list-style: none;
}
</style>
<style lang="scss" scoped>
.content-box {
width: 100%;
background-color: #ffffff;
position: relative;
}
.content {
width: 100%;
max-width: 1200px;
margin: 0 auto;
position: relative;
top: -20px;
background-color: #ffffff;
overflow: auto;
.news-list-content {
padding: 0 20px;
}
}
.li {
display: flex;
height: 160px;
width: 100%;
background-color: #ffffff;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
margin-bottom: 40px;
cursor: pointer;
.head {
width: 284px;
height: 160px;
}
.li-preview {
padding-top: 26px;
padding-left: 20px;
font-size: 24px;
font-weight: 300;
> div {
font-family: 'PingFangSC-Linght', 'PingFang SC', 'Microsoft Yahei';
}
}
.li-title {
height: 74px;
line-height: 32px;
font-size: 24px;
font-weight: 500;
font-family: 'PingFangSC-Semibold', 'PingFang SC', 'Microsoft Yahei';
}
.li-title:hover {
color: #c41230;
}
}
.news-list-content-title {
display: flex;
width: 100%;
box-sizing: border-box;
border-bottom: 1px dashed #ccc;
padding: {
top: 20px;
}
margin: 0 20px;
height: 60px;
> .content-back {
color: #3a8fff;
font-size: 20px;
width: 80px;
cursor: pointer;
}
> .title {
text-align: center;
}
}
.news-list-content-time {
height: 40px;
text-align: center;
}
</style>
...@@ -12,22 +12,6 @@ export default [ ...@@ -12,22 +12,6 @@ export default [
path: '/project', // 项目介绍 path: '/project', // 项目介绍
component: () => import('@/pages/project/index.vue') component: () => import('@/pages/project/index.vue')
}, },
{
path: '/news', // 新闻列表
component: () => import('@/pages/news/index.vue')
},
{
path: '/know', // 招生简章
component: () => import('@/pages/know/index.vue')
},
{
path: '/download', // 资料下载
component: () => import('@/pages/download/index.vue')
},
{
path: '/contact', // 联系我们
component: () => import('@/pages/contact/index.vue')
},
{ {
path: '/recruit', // 招生信息 path: '/recruit', // 招生信息
component: () => import('@/pages/recruitInfo/index.vue') component: () => import('@/pages/recruitInfo/index.vue')
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论