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

chore: 修改静态资源地址

上级 831fd7e1
<template>
<div class="video-wrapper" :class="className">
<div
v-if="!isMobile"
class="content"
@mouseenter="handleMouseEnter"
@mouseleave="showType = ''"
@mousemove="handleMouseEnter"
@click="handleClick"
ref="target"
:style="{ cursor: mouseCursor }"
>
<div v-if="!isMobile" class="content" @mouseenter="handleMouseEnter" @mouseleave="showType = ''" @mousemove="handleMouseEnter" @click="handleClick" ref="target" :style="{ cursor: mouseCursor }">
<!-- <ul class="video-list">
<li class="video-item" v-for="(item, index) in list" :key="index">
<div class="video-poster">
......@@ -27,12 +18,7 @@
<div class="swiper-slide" v-for="(item, index) in list" :key="index">
<div class="item-media">
<img :src="item.poster" />
<div
class="video-play"
@click.stop="open(item)"
@mouseenter.stop="handleVideoMouseEnter"
@mousemove.stop="handleVideoMouseEnter"
></div>
<div class="video-play" @click.stop="open(item)" @mouseenter.stop="handleVideoMouseEnter" @mousemove.stop="handleVideoMouseEnter"></div>
</div>
<div class="item-text">
<div class="item-text-tit">{{ item.title }}</div>
......@@ -51,12 +37,7 @@
<div class="swiper-slide" v-for="(item, index) in list" :key="index">
<div class="item-media">
<img :src="item.poster" />
<div
class="video-play"
@click.stop="open(item)"
@mouseenter.stop="handleVideoMouseEnter"
@mousemove.stop="handleVideoMouseEnter"
></div>
<div class="video-play" @click.stop="open(item)" @mouseenter.stop="handleVideoMouseEnter" @mousemove.stop="handleVideoMouseEnter"></div>
</div>
<div class="item-text">
<div class="item-text-tit">{{ item.title }}</div>
......@@ -67,18 +48,7 @@
<div class="swiper-pagination swiper-pagination-bullets"></div>
</div>
</div>
<video
v-if="isShow === true"
class="video"
:src="playVideo.src"
controls="controls"
preload="auto"
autoplay="autoplay"
x5-playsinline=""
playsinline
webkit-playsinline="true"
ref="video"
></video>
<video v-if="isShow === true" class="video" :src="playVideo.src" controls="controls" preload="auto" autoplay="autoplay" x5-playsinline="" playsinline webkit-playsinline="true" ref="video"></video>
<div class="overlay" v-if="isShow === true" @click="close"></div>
</div>
</template>
......@@ -92,30 +62,26 @@ export default {
{
title: 'CBU校长欢迎致词',
desc: 'Welcome speech from the president of CBU',
src: 'https://webapp-pub.ezijing.com/project_online_pc/sub_plus/video7.mp4',
poster:
'https://webapp-pub.ezijing.com/project_online_pc/sub_plus/video1.mp4?x-oss-process=video/snapshot,t_35700,f_jpg,m_fast'
src: 'https://webapp-pub.ezijing.com/project/sbu-plus/video7.mp4',
poster: 'https://webapp-pub.ezijing.com/project/sbu-plus/video1.mp4?x-oss-process=video/snapshot,t_35700,f_jpg,m_fast'
},
{
title: '线上项目',
desc: 'CBU Online Programs',
src: 'https://webapp-pub.ezijing.com/project_online_pc/sub_plus/video2.mp4',
poster:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/sub_plus/video2.mp4?x-oss-process=video/snapshot,t_35700,f_jpg,m_fast'
src: 'https://webapp-pub.ezijing.com/project/sbu-plus/video2.mp4',
poster: 'https://webapp-pub.ezijing.com/project/sbu-plus/video2.mp4?x-oss-process=video/snapshot,t_35700,f_jpg,m_fast'
},
{
title: '商学院',
desc: 'School of Business',
src: 'https://webapp-pub.ezijing.com/project_online_pc/sub_plus/video3.mp4',
poster:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/sub_plus/video3.mp4?x-oss-process=video/snapshot,t_27000,f_jpg,m_fast'
src: 'https://webapp-pub.ezijing.com/project/sbu-plus/video3.mp4',
poster: 'https://webapp-pub.ezijing.com/project/sbu-plus/video3.mp4?x-oss-process=video/snapshot,t_27000,f_jpg,m_fast'
},
{
title: '丰富多彩的校园活动',
desc: 'So much to do at CBU',
src: 'https://webapp-pub.ezijing.com/project_online_pc/sub_plus/video4.mp4',
poster:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/sub_plus/video4.mp4?x-oss-process=video/snapshot,t_6000,f_jpg,m_fast'
src: 'https://webapp-pub.ezijing.com/project/sbu-plus/video4.mp4',
poster: 'https://webapp-pub.ezijing.com/project/sbu-plus/video4.mp4?x-oss-process=video/snapshot,t_6000,f_jpg,m_fast'
}
],
// 当前播放的视频
......@@ -150,8 +116,7 @@ export default {
const target = this.$refs.target.getBoundingClientRect()
if (e.clientX - target.left < (target.right - target.left) / 2) {
if (this.showIndex > 0) {
this.mouseCursor =
'url(https://www.harvard.edu/wp-content/themes/core/assets/img/theme/featured-stories/arrow-left-dark.svg) 30 30, e-resize'
this.mouseCursor = 'url(https://www.harvard.edu/wp-content/themes/core/assets/img/theme/featured-stories/arrow-left-dark.svg) 30 30, e-resize'
this.showType = 'left'
} else {
this.mouseCursor = 'default'
......@@ -159,8 +124,7 @@ export default {
}
} else {
if (this.showIndex < this.list.length - 1) {
this.mouseCursor =
'url(https://www.harvard.edu/wp-content/themes/core/assets/img/theme/featured-stories/arrow-right-dark.svg) 30 30, e-resize'
this.mouseCursor = 'url(https://www.harvard.edu/wp-content/themes/core/assets/img/theme/featured-stories/arrow-right-dark.svg) 30 30, e-resize'
this.showType = 'right'
} else {
this.mouseCursor = 'default'
......@@ -223,7 +187,7 @@ export default {
.is-pc {
margin-top: 120px;
.video-wrapper {
background: url(https://webapp-pub.ezijing.com/project_online_pc/edd/video_bg.png?v=1) no-repeat center center;
background: url(https://webapp-pub.ezijing.com/project/cbu-plus/video_bg.png?v=1) no-repeat center center;
background-size: cover;
}
.content {
......
<template>
<div :class="isMobile ? 'is-h5' : 'is-pc'">
<div class="banner-content">
<img class="img" src="https://webapp-pub.ezijing.com/project_online_pc/edd/banner.png?v=4" />
<img class="img" src="https://webapp-pub.ezijing.com/project/cbu-plus/banner.png?v=4" />
<div class="banner_navList">
<div class="banner_nav" v-for="(item, index) in navList" :key="index" @click="navClick(item)">
<div class="nav_top">
......@@ -67,7 +67,7 @@ export default {
if (item.tag === '1') {
this.$router.push('/my/account')
} else if (item.tag === '2') {
window.open('https://webapp-pub.ezijing.com/project_online_pc/edd/%E6%8B%9B%E7%94%9F%E7%AE%80%E7%AB%A0.pdf')
window.open('https://webapp-pub.ezijing.com/project/cbu-plus/%E6%8B%9B%E7%94%9F%E7%AE%80%E7%AB%A0.pdf')
} else if (item.tag === '3') {
this.$router.push('/project-intro/introduce')
} else if (item.tag === '4') {
......
......@@ -85,40 +85,34 @@ export default {
return {
listData: [
{
web_img_uri: 'https://webapp-pub.ezijing.com/project_online_pc/edd/pc-index-project-intro-01.png?v=4',
web_img_uri: 'https://webapp-pub.ezijing.com/project/cbu-plus/pc-index-project-intro-01.png?v=4',
item_desc_tit: '国际名校、权威可靠',
item_desc_con:
'清控紫荆教育是以清华五道口相关知识产权创设而成,自成立以来与多所国际名校合作且实现课程学分互认,所获文凭均受中国教育部与国际认证,具有很强的国际化办学经验和教学水平。'
item_desc_con: '清控紫荆教育是以清华五道口相关知识产权创设而成,自成立以来与多所国际名校合作且实现课程学分互认,所获文凭均受中国教育部与国际认证,具有很强的国际化办学经验和教学水平。'
},
{
web_img_uri: 'https://webapp-pub.ezijing.com/project_online_pc/edd/pc-index-project-intro-02.png?v=4',
web_img_uri: 'https://webapp-pub.ezijing.com/project/cbu-plus/pc-index-project-intro-02.png?v=4',
item_desc_tit: '无需联考、灵活录取',
item_desc_con:
'无需参加国内竞争激烈的研究生联考,没有托福成绩的学生可以完成紫荆英语强化项目替代语言成绩。该课程以及考核成绩被美国大学认可,达到录取标准即可直接入读相应硕士课程。'
item_desc_con: '无需参加国内竞争激烈的研究生联考,没有托福成绩的学生可以完成紫荆英语强化项目替代语言成绩。该课程以及考核成绩被美国大学认可,达到录取标准即可直接入读相应硕士课程。'
},
{
web_img_uri: 'https://webapp-pub.ezijing.com/project_online_pc/edd/pc-index-project-intro-03.png?v=4',
web_img_uri: 'https://webapp-pub.ezijing.com/project/cbu-plus/pc-index-project-intro-03.png?v=4',
item_desc_tit: '前沿专业、就业广阔',
item_desc_con:
'项目提供当前数字经济领域前沿专业,使毕业生具有国际背景和全球化竞争力。此外毕业生享受国家为留学归国人员提供的落户指标、创业支持、购买免税汽车等待遇。'
item_desc_con: '项目提供当前数字经济领域前沿专业,使毕业生具有国际背景和全球化竞争力。此外毕业生享受国家为留学归国人员提供的落户指标、创业支持、购买免税汽车等待遇。'
},
{
web_img_uri: 'https://webapp-pub.ezijing.com/project_online_pc/edd/pc-index-project-intro-04.png?v=4',
web_img_uri: 'https://webapp-pub.ezijing.com/project/cbu-plus/pc-index-project-intro-04.png?v=4',
item_desc_tit: '省时省费、性价比优',
item_desc_con:
'经过在国内学习一年后,学生只需再在国外学习一年即可获得中国教育部和国际认可的硕士学历学位,既节省时间成本又节约经济花销。'
item_desc_con: '经过在国内学习一年后,学生只需再在国外学习一年即可获得中国教育部和国际认可的硕士学历学位,既节省时间成本又节约经济花销。'
},
{
web_img_uri: 'https://webapp-pub.ezijing.com/project_online_pc/edd/pc-index-project-intro-05.png?v=4',
web_img_uri: 'https://webapp-pub.ezijing.com/project/cbu-plus/pc-index-project-intro-05.png?v=4',
item_desc_tit: '国际视野、本土实践',
item_desc_con:
'本项目全部采用双语教学、小班授课,帮助学生提前适应美国教学模式;授课师资由清北人资深教授和优秀外教组成,保证国际化同时兼具本土实践,为留学归国工作建立无缝连接。'
item_desc_con: '本项目全部采用双语教学、小班授课,帮助学生提前适应美国教学模式;授课师资由清北人资深教授和优秀外教组成,保证国际化同时兼具本土实践,为留学归国工作建立无缝连接。'
},
{
web_img_uri: 'https://webapp-pub.ezijing.com/project_online_pc/edd/pc-index-project-intro-06.png?v=4',
web_img_uri: 'https://webapp-pub.ezijing.com/project/cbu-plus/pc-index-project-intro-06.png?v=4',
item_desc_tit: '全额退款、安心无忧',
item_desc_con:
'就读期间,因个人原因中途放弃或因外部不可抗力因素(如签证不通过等)无法出国学习,个人缴纳的第1学年费用全额退还。'
item_desc_con: '就读期间,因个人原因中途放弃或因外部不可抗力因素(如签证不通过等)无法出国学习,个人缴纳的第1学年费用全额退还。'
}
],
swiperOption: {
......
......@@ -9,7 +9,7 @@
<div class="title">
工商管理博士DBA
</div>
<!-- <img src="https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/marywood_logo.svg" /> -->
<!-- <img src="https://webapp-pub.ezijing.com/project/marywood/marywood_logo.svg" /> -->
</nuxt-link>
</div>
<!-- <nuxt-link to="/" class="logo"></nuxt-link> -->
......
......@@ -3,7 +3,7 @@
<div class="foot-box">
<div class="foot-content">
<div class="left-content">
<img src="https://webapp-pub.ezijing.com/project_online_pc/edd/bottom_logo1.png" />
<img src="https://webapp-pub.ezijing.com/project/cbu-plus/bottom_logo1.png" />
<div class="bottom">
<div class="bottom_left con">
<a href="/project-intro/introduce">关于项目</a>
......@@ -50,11 +50,7 @@
<p style="font-size: 12px;">
Copyright © 2017 Zijing Education. All rights reserved. 清控紫荆(北京)教育科技股份有限公司
</p>
<a
target="_blank"
href="https://tsm.miit.gov.cn/dxxzsp/"
style="color: rgba(153, 153, 153, 1);text-decoration:none;margin-left: 10px;"
>
<a target="_blank" href="https://tsm.miit.gov.cn/dxxzsp/" style="color: rgba(153, 153, 153, 1);text-decoration:none;margin-left: 10px;">
<p style="font-size: 12px;">京ICP证150431号</p>
</a>
<a
......@@ -63,17 +59,10 @@
href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010802023681"
style="color: rgba(153, 153, 153, 1);text-decoration:none;align-items: center;display: flex;margin-right: 5px;"
>
<img
src="https://zws-imgs-pub.ezijing.com/e0a0ec47dfdfc1e0797b1d5254021d00.png"
style="width: 20px;height: 20px;margin: 0 6px;display: block;"
/>
<img src="https://zws-imgs-pub.ezijing.com/e0a0ec47dfdfc1e0797b1d5254021d00.png" style="width: 20px;height: 20px;margin: 0 6px;display: block;" />
<p style="font-size: 12px;">安备 11010802023681号</p>
</a>
<a
target="_blank"
href="https://beian.miit.gov.cn/#/Integrated/index"
style="color: rgba(153, 153, 153, 1);text-decoration:none;"
>
<a target="_blank" href="https://beian.miit.gov.cn/#/Integrated/index" style="color: rgba(153, 153, 153, 1);text-decoration:none;">
<p style="font-size: 12px;">京ICP备15016866号-1</p>
</a>
</div>
......
......@@ -12,7 +12,7 @@
<nuxt-link to="/">
<div class="title">工商管理博士DBA</div>
</nuxt-link>
<!-- <img src="https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/marywood_logo.svg" /> -->
<!-- <img src="https://webapp-pub.ezijing.com/project/marywood/marywood_logo.svg" /> -->
</div>
<div class="user" v-if="user.id">
......@@ -65,16 +65,10 @@ export default {
return this.$store.state.user || {}
},
loginURL() {
return process.client
? `${process.env.loginURL}/login/index?redirect_uri=${encodeURIComponent(
location.origin + this.$route.fullPath
)}`
: ''
return process.client ? `${process.env.loginURL}/login/index?redirect_uri=${encodeURIComponent(location.origin + this.$route.fullPath)}` : ''
},
registerURL() {
return process.client
? `${process.env.loginURL}/register?redirect_uri=${encodeURIComponent(location.origin + this.$route.fullPath)}`
: ''
return process.client ? `${process.env.loginURL}/register?redirect_uri=${encodeURIComponent(location.origin + this.$route.fullPath)}` : ''
}
}
}
......
......@@ -6,16 +6,7 @@ export default function(_this) {
action: `${process.env.baseURL}/api/enrollment/v1.0/application-materials/${process.env.projectId}`,
callback(data) {
const { attachments = [], submission_stage: submissionStage = 'FILLING' } = data.data.material
const stageList = [
'FILLING',
'PREPAYMENT',
'INTERVIEW_APPLICATION',
'AUDITION',
'INTERVIEW',
'PAYMENT',
'REGISTRATION',
'CLOSED'
]
const stageList = ['FILLING', 'PREPAYMENT', 'INTERVIEW_APPLICATION', 'AUDITION', 'INTERVIEW', 'PAYMENT', 'REGISTRATION', 'CLOSED']
this.form.options.disabled = stageList.findIndex(item => item === submissionStage) > 6
const ADMISSION_AGREEMENT = attachments.filter(item => {
return item.file_type_id === 'ADMISSION_AGREEMENT'
......@@ -39,7 +30,7 @@ export default function(_this) {
data: { file_type: 'ADMISSION_AGREEMENT' }
},
prepend: `
<p><a href="https://zws-imgs-pub.ezijing.com/pc/marywood/%E5%85%A5%E5%AD%A6%E5%8D%8F%E8%AE%AE.pdf" target="_blank" download="入学协议">下载入学协议</a></p>
<p><a href="https://webapp-pub.ezijing.com/project/cbu-plus/%E5%85%A5%E5%AD%A6%E5%8D%8F%E8%AE%AE.pdf" target="_blank" download="入学协议">下载入学协议</a></p>
<p>申请者可将签字后的入学协议原件扫描或拍照后提交。</p>
<p>学员应仔细阅读《入学协议》以及课程介绍,如对入学协议或课程有异议,请第一时间与课程顾问咨询确认。请用A4纸打印后,在入学协议上签上姓名和日期,内容需显示完整、格式整齐、字迹清晰可辨。上传文件仅限“jpg,jpeg,pdf,png”格式,文件小于10Mb。</p>
`
......
......@@ -5,16 +5,7 @@ export default {
action: `${process.env.baseURL}/api/enrollment/v1.0/application-materials/${process.env.projectId}`,
callback(data) {
const { attachments = [], submission_stage: submissionStage = 'FILLING' } = data.data.material
const stageList = [
'FILLING',
'PREPAYMENT',
'INTERVIEW_APPLICATION',
'AUDITION',
'INTERVIEW',
'PAYMENT',
'REGISTRATION',
'CLOSED'
]
const stageList = ['FILLING', 'PREPAYMENT', 'INTERVIEW_APPLICATION', 'AUDITION', 'INTERVIEW', 'PAYMENT', 'REGISTRATION', 'CLOSED']
this.form.options.disabled = stageList.findIndex(item => item === submissionStage) > 6
const RESUME_EN = attachments.filter(item => {
return item.file_type_id === 'RESUME_EN'
......@@ -38,7 +29,7 @@ export default {
data: { file_type: 'RESUME_EN' }
},
append: `
<p>请下载填写英文简历模板后上传 [<a href="https://webapp-pub.ezijing.com/project_online_pc/edd/%E8%8B%B1%E6%96%87%E7%AE%80%E5%8E%86%E6%A8%A1%E6%9D%BF.doc" target="_blank" download="英文简历模板">下载模板</a>]</p>
<p>请下载填写英文简历模板后上传 [<a href="https://webapp-pub.ezijing.com/project/cbu-plus/%E8%8B%B1%E6%96%87%E7%AE%80%E5%8E%86%E6%A8%A1%E6%9D%BF.doc" target="_blank" download="英文简历模板">下载模板</a>]</p>
<p>请将英文简历填写完存为"pdf"格式上传,文件小于10MB。</p>`
}
]
......
......@@ -6,16 +6,7 @@ export default function(_this) {
action: `${process.env.baseURL}/api/enrollment/v1.0/application-materials/${process.env.projectId}`,
callback(data) {
const { attachments = [], submission_stage: submissionStage = 'FILLING' } = data.data.material
const stageList = [
'FILLING',
'PREPAYMENT',
'INTERVIEW_APPLICATION',
'AUDITION',
'INTERVIEW',
'PAYMENT',
'REGISTRATION',
'CLOSED'
]
const stageList = ['FILLING', 'PREPAYMENT', 'INTERVIEW_APPLICATION', 'AUDITION', 'INTERVIEW', 'PAYMENT', 'REGISTRATION', 'CLOSED']
this.form.options.disabled = stageList.findIndex(item => item === submissionStage) > 2
const RESUME_EN = attachments.filter(item => {
return item.file_type_id === 'RESUME_EN'
......@@ -52,7 +43,7 @@ export default function(_this) {
data: { file_type: 'RESUME_EN' }
},
append: `
<p>请下载填写英文简历模板后上传 [<a href="https://webapp-pub.ezijing.com/project_online_pc/edd/%E8%8B%B1%E6%96%87%E7%AE%80%E5%8E%86%E6%A8%A1%E6%9D%BF.doc" target="_blank" download="英文简历模板">下载模板</a>]</p>
<p>请下载填写英文简历模板后上传 [<a href="https://webapp-pub.ezijing.com/project/cbu-plus/%E8%8B%B1%E6%96%87%E7%AE%80%E5%8E%86%E6%A8%A1%E6%9D%BF.doc" target="_blank" download="英文简历模板">下载模板</a>]</p>
<p>请将英文简历填写完存为"pdf"格式上传,文件小于10MB。</p>`
}
]
......
......@@ -6,15 +6,15 @@ export default {
ssr: false,
env: process.env,
server: { port: 2048, host: '0.0.0.0' },
// ...(process.env.NODE_ENV === 'development' && {
// server: {
// host: 'dev.ezijing.com',
// https: {
// key: fs.readFileSync(path.resolve(__dirname, 'dev.ezijing.com.key')),
// cert: fs.readFileSync(path.resolve(__dirname, 'dev.ezijing.com.pem'))
// }
// }
// }),
...(process.env.NODE_ENV === 'development' && {
server: {
host: 'dev.ezijing.com',
https: {
key: fs.readFileSync(path.resolve(__dirname, 'dev.ezijing.com.key')),
cert: fs.readFileSync(path.resolve(__dirname, 'dev.ezijing.com.pem'))
}
}
}),
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
title: '紫荆教育-加州浸会大学工商管理博士DBA',
......
......@@ -38,8 +38,8 @@ export default {
data() {
return {
// url1: 'https://webapp-pub.ezijing.com/project/marywood/academic21.png',
url1: 'https:///webapp-pub.ezijing.com/project_online_pc/edd/pc-cert-en.png?v=1',
url2: 'https:///webapp-pub.ezijing.com/project_online_pc/edd/pc-cert-cn.jpg',
url1: 'https:///webapp-pub.ezijing.com/project/cbu-plus/pc-cert-en.png?v=1',
url2: 'https:///webapp-pub.ezijing.com/project/cbu-plus/pc-cert-cn.jpg',
frameParams: {
slider: []
}
......
......@@ -33,12 +33,12 @@ export default {
fileList: [
{
name: '招生简章',
url: 'https://webapp-pub.ezijing.com/project_online_pc/edd/%E6%8B%9B%E7%94%9F%E7%AE%80%E7%AB%A0.pdf',
url: 'https://webapp-pub.ezijing.com/project/cbu-plus/%E6%8B%9B%E7%94%9F%E7%AE%80%E7%AB%A0.pdf',
icon: 'https://webapp-pub.ezijing.com/project/marywood/pdf.png'
},
{
name: '常见问题',
url: 'https://webapp-pub.ezijing.com/project_online_pc/edd/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98.pdf',
url: 'https://webapp-pub.ezijing.com/project/cbu-plus/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98.pdf',
icon: 'https://webapp-pub.ezijing.com/project/marywood/pdf.png'
}
// {
......
<template>
<app-frame :data="frameParams" :class="isMobile ? 'is-h5' : 'is-pc'">
<img src="https://webapp-pub.ezijing.com/project_online_pc/edd/enroll-process-banner2.png" />
<img src="https://webapp-pub.ezijing.com/project/cbu-plus/enroll-process-banner2.png" />
<div class="content-mian">
<ul>
<li class="applyList_con">
<div class="apply_name">招生计划</div>
<img src="https://webapp-pub.ezijing.com/project_online_pc/edd/apply_plan.png" alt="" />
<img src="https://webapp-pub.ezijing.com/project/cbu-plus/apply_plan.png" alt="" />
<!-- <div class="apply_desc">
入学时间:<span class="apply_desc_time">2022年秋季班:2022年9月</span
><span class="apply_desc_time">2023年春季班:2023年2月</span>>
......@@ -28,14 +28,11 @@
</div>
<div class="apply_desc">
·拥有工商管理硕士(MBA)学位的申请者可直接申请。<br />
<span style="color:#999;font-size:14px;" v-if="!isMobile"
>(通过在线方式取得海外MBA学位的需要单独审核)</span
>
<span style="color:#999;font-size:14px;" v-if="!isMobile">(通过在线方式取得海外MBA学位的需要单独审核)</span>
<span style="color:#999;font-size:0.08rem;" v-else>(通过在线方式取得海外MBA学位的需要单独审核)</span>
</div>
<div class="apply_desc">
·拥有MBA以外专业硕士学位的申请者需证明具有5年以上的管理工作经验或者相关领域研究经验,
可直接申请。申请通过后,须完成紫荆教育提供的MBA先修课程,才可进入正式的博士项目课程学习。
·拥有MBA以外专业硕士学位的申请者需证明具有5年以上的管理工作经验或者相关领域研究经验, 可直接申请。申请通过后,须完成紫荆教育提供的MBA先修课程,才可进入正式的博士项目课程学习。
</div>
</li>
<li class="applyList_con">
......@@ -51,8 +48,7 @@
托福79分以上或者雅思6.0分以上
</div>
<div class="apply_desc">
·未达到上述语言要求者,申请通过后,须参加紫荆教育提供的英语强化课程(Intensive English
Program),测试成绩合格后才可进入博士项目课程学习。
·未达到上述语言要求者,申请通过后,须参加紫荆教育提供的英语强化课程(Intensive English Program),测试成绩合格后才可进入博士项目课程学习。
</div>
</li>
</ul>
......
<template>
<app-frame :data="frameParams" :class="isMobile ? 'is-h5' : 'is-pc'">
<img src="https://webapp-pub.ezijing.com/project_online_pc/edd/enroll-process-banner.png" />
<img src="https://webapp-pub.ezijing.com/project/cbu-plus/enroll-process-banner.png" />
<div class="apply">
<div class="apply-line"></div>
<div class="apply-item">
......@@ -9,8 +9,7 @@
<div class="apply-item-bd">
<p>
申请者需登录<a href="https://cbu-plus.ezijing.com/my/account">https://cbu-plus.ezijing.com/my/account</a
>在线申请,申请费缴纳完成后将如下纸质材料邮寄至:北京市海淀区中关村东路1号院清华科技园威盛大厦5层紫荆教育
邮编100084。
>在线申请,申请费缴纳完成后将如下纸质材料邮寄至:北京市海淀区中关村东路1号院清华科技园威盛大厦5层紫荆教育 邮编100084。
</p>
<ul>
<li>1、身份证复印件</li>
......
<template>
<app-frame :data="frameParams" :class="isMobile ? 'is-h5' : 'is-pc'">
<img src="https://webapp-pub.ezijing.com/project_online_pc/edd/project_intro_banner.png" class="banner" />
<img src="https://webapp-pub.ezijing.com/project/cbu-plus/project_intro_banner.png" class="banner" />
<div class="part_content">
<div class="part_item">
加州浸会大学工商管理博士是经过美国教育监管机构WASC、BPPE、DOE、SEVIS等批准的正规全日制博士项
目。该博士项目强调课程学习与论文写作结合,以培养将管理实践和理论研究深度融合的商业领袖和高校
学者为目标。学员最快三年可以毕业,中国学生按照学校要求毕业获得博士学位回国后,可向中国(教育
部)留学服务中心申请认证为博士研究生学历。紫荆教育是加州浸会大学该项目在中国的唯一合作伙伴。
加州浸会大学工商管理博士是经过美国教育监管机构WASC、BPPE、DOE、SEVIS等批准的正规全日制博士项 目。该博士项目强调课程学习与论文写作结合,以培养将管理实践和理论研究深度融合的商业领袖和高校
学者为目标。学员最快三年可以毕业,中国学生按照学校要求毕业获得博士学位回国后,可向中国(教育 部)留学服务中心申请认证为博士研究生学历。紫荆教育是加州浸会大学该项目在中国的唯一合作伙伴。
</div>
</div>
</app-frame>
......
......@@ -33,8 +33,7 @@
<h1 class="com_title">留学回国人员福利政策</h1>
<h2 class="com_title_dec">中华人民共和国教育部:“鼓励留学,支持回国”</h2>
<div class="com_con">
中国教育部思想政治工作司司长魏士强2021年12月7日的新闻发布会中发表评论:“支持留学、鼓励回国、来去自由、发挥作用”
是我国多年来奉行的留学政策,即使是进入新时代,我们依然要一以贯之地实行。
中国教育部思想政治工作司司长魏士强2021年12月7日的新闻发布会中发表评论:“支持留学、鼓励回国、来去自由、发挥作用” 是我国多年来奉行的留学政策,即使是进入新时代,我们依然要一以贯之地实行。
<br />我国各省市、地区针对留学生回国颁布了人才引流福利政策,留学已经成为越来越多学生的升学选择。
</div>
</div>
......@@ -59,7 +58,7 @@
<!-- <img
class="bottom"
v-else
src="https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/h5/return_con.png"
src="https://webapp-pub.ezijing.com/project/marywood/h5/return_con.png"
/> -->
</app-frame>
</template>
......@@ -82,44 +81,37 @@ export default {
{
id: 1,
title: '积分落户',
desc:
'北京、上海、广州、深圳、天津等地为取得教育部学历认证的海外留学人员提供落户便利,符合条件者可提出申请,办理落户。'
desc: '北京、上海、广州、深圳、天津等地为取得教育部学历认证的海外留学人员提供落户便利,符合条件者可提出申请,办理落户。'
},
{
id: 2,
title: '人才补助',
desc:
'上海、广州、深圳、杭州等地为海归人才提供最高6万的生活补贴。获得北京市“特聘专家”称号可直接获得100万奖励。'
desc: '上海、广州、深圳、杭州等地为海归人才提供最高6万的生活补贴。获得北京市“特聘专家”称号可直接获得100万奖励。'
},
{
id: 3,
title: '创业扶持',
desc:
'朝阳区“凤凰计划”、海淀区青年英才资助计划、上海浦江人才计划等为符合条件的回国创业海归人员提供15万到50万的创业补贴。'
desc: '朝阳区“凤凰计划”、海淀区青年英才资助计划、上海浦江人才计划等为符合条件的回国创业海归人员提供15万到50万的创业补贴。'
},
{
id: 4,
title: '百人计划',
desc:
'中科院百人计划,引进国外杰出博士人才,以每人200万元的资助力度从国外吸引并培养百余名优秀青年学术带头人。一旦入选,除获得一次性启动经费外还可获得中科院特殊津贴。'
desc: '中科院百人计划,引进国外杰出博士人才,以每人200万元的资助力度从国外吸引并培养百余名优秀青年学术带头人。一旦入选,除获得一次性启动经费外还可获得中科院特殊津贴。'
},
{
id: 5,
title: '学术研究',
desc:
'评职称时,海归申报可不受工作年限的限制。在外留学一年以上,年龄四十五周岁以下,回国后在科研单位从事教学、科研工作的可申请留学回国人员科研启动资金。'
desc: '评职称时,海归申报可不受工作年限的限制。在外留学一年以上,年龄四十五周岁以下,回国后在科研单位从事教学、科研工作的可申请留学回国人员科研启动资金。'
},
{
id: 6,
title: '购房购车',
desc:
'符合条件的留学归国人员可以购买国产免税轿车,每人限享受一个免税指标。部分地区对留学落户人员购房予以一次性3-5万优惠。'
desc: '符合条件的留学归国人员可以购买国产免税轿车,每人限享受一个免税指标。部分地区对留学落户人员购房予以一次性3-5万优惠。'
},
{
id: 7,
title: '子女入学',
desc:
'有些地区对于留学人员子女入学有优惠政策,通常由教育部门统一安排,择校入学;在国外生活5年以上,在语言文字适应期内入学,给予加分优惠,区内设有教授外语的学校供留学生自由选择。'
desc: '有些地区对于留学人员子女入学有优惠政策,通常由教育部门统一安排,择校入学;在国外生活5年以上,在语言文字适应期内入学,给予加分优惠,区内设有教授外语的学校供留学生自由选择。'
}
]
}
......
差异被折叠。
......@@ -3,8 +3,8 @@ import VueLazyload from 'vue-lazyload'
// or with options
Vue.use(VueLazyload, {
preLoad: 1.3, // 预加载的宽高比
error: 'https://webapp-pub.ezijing.com/project_online_pc/edd/img_default.png', // 图片加载失败时使用的图片源
loading: 'https://webapp-pub.ezijing.com/project_online_pc/edd/img_default.png', // 图片加载的路径
error: 'https://webapp-pub.ezijing.com/project/cbu-plus/img_default.png', // 图片加载失败时使用的图片源
loading: 'https://webapp-pub.ezijing.com/project/cbu-plus/img_default.png', // 图片加载的路径
attempt: 1, // 尝试加载次数
throttleWait: 100, //加载时间快些,不然时间有点久
observer: true
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论