提交 d0a662de authored 作者: 王鹏飞's avatar 王鹏飞

chore: 修改菜单顺序

上级 512d5b42
...@@ -10,8 +10,7 @@ ...@@ -10,8 +10,7 @@
? 'https://webapp-pub.ezijing.com/www/pc/en-logo.png' ? 'https://webapp-pub.ezijing.com/www/pc/en-logo.png'
: 'https://zws-imgs-pub.ezijing.com/static/public/0411340f9306b908eda54b5d66668f50.png' : 'https://zws-imgs-pub.ezijing.com/static/public/0411340f9306b908eda54b5d66668f50.png'
" "
@click="goPage('/')" @click="goPage('/')" />
/>
</div> </div>
<template v-if="$route.path === '/roadmap'"> <template v-if="$route.path === '/roadmap'">
<client-only> <client-only>
...@@ -53,14 +52,12 @@ ...@@ -53,14 +52,12 @@
:class="$route.path === level2Item.path || level2Item.isShow ? 'li active' : 'li'" :class="$route.path === level2Item.path || level2Item.isShow ? 'li active' : 'li'"
:key="level2Index + 'level2'" :key="level2Index + 'level2'"
@mouseenter="levelShow(level2Item)" @mouseenter="levelShow(level2Item)"
@mouseleave="levelShow(level2Item, 'out')" @mouseleave="levelShow(level2Item, 'out')">
>
<div <div
@click="goPage(level2Item.path, level2Item.pathType)" @click="goPage(level2Item.path, level2Item.pathType)"
class="name" class="name"
:class="isEn === true ? 'name1' : ''" :class="isEn === true ? 'name1' : ''"
v-html="level2Item.name" v-html="level2Item.name"></div>
></div>
<div class="el-icon-arrow-right" v-if="level2Item.children"></div> <div class="el-icon-arrow-right" v-if="level2Item.children"></div>
</div> </div>
</template> </template>
...@@ -71,14 +68,12 @@ ...@@ -71,14 +68,12 @@
:key="level2Index + 'two-level2'" :key="level2Index + 'two-level2'"
v-if="level2Item.isShow" v-if="level2Item.isShow"
@mouseenter="level3Show" @mouseenter="level3Show"
@mouseleave="level3Show(level2Item, 'out')" @mouseleave="level3Show(level2Item, 'out')">
>
<div <div
@click="goPage(level3Item.path, level3Item.pathType)" @click="goPage(level3Item.path, level3Item.pathType)"
:class="isEn === true ? 'name1' : 'name'" :class="isEn === true ? 'name1' : 'name'"
v-for="(level3Item, level3Index) in level2Item.children" v-for="(level3Item, level3Index) in level2Item.children"
:key="level3Index + level3Item" :key="level3Index + level3Item">
>
{{ level3Item.name }} {{ level3Item.name }}
</div> </div>
</div> </div>
...@@ -418,8 +413,8 @@ export default { ...@@ -418,8 +413,8 @@ export default {
isShow: false, isShow: false,
children: [ children: [
{ {
name: this.$t('menu.degreeChild.masterChild.sbu'), name: '雪城大学硕士保研项目',
path: 'https://sbu-plus.ezijing.com/', path: 'https://syracuse-plus.ezijing.com/',
pathType: 1 pathType: 1
}, },
{ {
...@@ -428,15 +423,16 @@ export default { ...@@ -428,15 +423,16 @@ export default {
pathType: 1 pathType: 1
}, },
{ {
name: '北京理工大学1+1硕士留学-德保罗大学金融学硕士项目', name: this.$t('menu.degreeChild.masterChild.sbu'),
path: 'https://depaul-plus.ezijing.com/', path: 'https://sbu-plus.ezijing.com/',
pathType: 1 pathType: 1
}, },
{ {
name: '雪城大学硕士保研项目', name: '北京理工大学1+1硕士留学-德保罗大学金融学硕士项目',
path: 'https://syracuse-plus.ezijing.com/', path: 'https://depaul-plus.ezijing.com/',
pathType: 1 pathType: 1
} }
// { // {
// name: '迈阿密大学硕士保研项目', // name: '迈阿密大学硕士保研项目',
// path: 'https://umiami-plus.ezijing.com/', // path: 'https://umiami-plus.ezijing.com/',
...@@ -594,16 +590,10 @@ export default { ...@@ -594,16 +590,10 @@ export default {
return this.$store.state.user || {} return this.$store.state.user || {}
}, },
loginURL() { loginURL() {
return process.client return process.client ? `${process.env.loginURL}/login/index?redirect_uri=${encodeURIComponent(location.origin + this.$route.fullPath)}` : ''
? `${process.env.loginURL}/login/index?redirect_uri=${encodeURIComponent(
location.origin + this.$route.fullPath
)}`
: ''
}, },
registerURL() { registerURL() {
return process.client return process.client ? `${process.env.loginURL}/register?redirect_uri=${encodeURIComponent(location.origin + this.$route.fullPath)}` : ''
? `${process.env.loginURL}/register?redirect_uri=${encodeURIComponent(location.origin + this.$route.fullPath)}`
: ''
} }
} }
} }
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<div class="box-l"> <div class="box-l">
<div class="box-red_title">学历项目</div> <div class="box-red_title">学历项目</div>
<div class="box-l_master" v-for="item in abroadList"> <div class="box-l_master" v-for="item in abroadList">
<div class="box-col__title" style="margin-top: 35px;">{{ item.title }}</div> <div class="box-col__title" style="margin-top: 35px">{{ item.title }}</div>
<div class="box-l_list"> <div class="box-l_list">
<div class="box-l_item" v-for="cItem in item.children"> <div class="box-l_item" v-for="cItem in item.children">
<div class="box-item_title">{{ cItem.title }}</div> <div class="box-item_title">{{ cItem.title }}</div>
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
</div> </div>
<div class="box-r"> <div class="box-r">
<div class="box-red_title">非学历项目</div> <div class="box-red_title">非学历项目</div>
<div class="box-block" style="margin: 75px 0 30px;"> <div class="box-block" style="margin: 75px 0 30px">
<div class="btn">交换生项目</div> <div class="btn">交换生项目</div>
</div> </div>
<div class="box-block"> <div class="box-block">
...@@ -68,16 +68,16 @@ export default { ...@@ -68,16 +68,16 @@ export default {
{ name: '电气工程', href: 'https://syracuse-plus.ezijing.com/' } { name: '电气工程', href: 'https://syracuse-plus.ezijing.com/' }
] ]
}, },
{
title: '纽约州立大学石溪分校',
img: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/918/m2.png',
btn: [{ name: '金融学硕士', href: 'https://sbu-plus.ezijing.com/' }]
},
{ {
title: '斯蒂文斯理工学院', title: '斯蒂文斯理工学院',
img: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/918/m3.png', img: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/918/m3.png',
btn: [{ name: '工程管理硕士', href: 'https://sit-plus.ezijing.com/' }] btn: [{ name: '工程管理硕士', href: 'https://sit-plus.ezijing.com/' }]
}, },
{
title: '纽约州立大学石溪分校',
img: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/918/m2.png',
btn: [{ name: '金融学硕士', href: 'https://sbu-plus.ezijing.com/' }]
},
{ {
title: '德保罗大学', title: '德保罗大学',
img: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/918/m4.png', img: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/918/m4.png',
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论