提交 e802ab0e authored 作者: lihuihui's avatar lihuihui

i18n开发

上级 d0d0bbbb
......@@ -5,27 +5,27 @@
<div class="left-content">
<div>
<a href="http://jsj.moe.gov.cn" target="_blank" >
中国教育部
{{ $t('foot.link1') }}
</a>
</div>
<div>
<a href="http://jsj.moe.gov.cn" target="_blank" >
教育部涉外监管网
{{ $t('foot.link2') }}
</a>
</div>
<div>
<a href="http://www.pbcsf.tsinghua.edu.cn" target="_blank" >
印第安纳大学
{{ $t('foot.link3') }}
</a>
</div>
<div>
<a href="http://www.pbcsf.tsinghua.edu.cn" target="_blank" >
Kelley商学院
{{ $t('foot.link4') }}
</a>
</div>
<div>
<a href="http://www.ezijing.com" target="_blank" >
紫荆教育
{{ $t('foot.link5') }}
</a>
</div>
<!-- <div>
......@@ -33,15 +33,15 @@
</div> -->
</div>
<div class="center-content">
<div class="address">&nbsp;&nbsp;&nbsp;&nbsp;址:北京市海淀区中关村东路1号院清华科技园7号楼5层</div>
<div class="phone">联系电话:010-62793299</div>
<div class="mail">&nbsp;&nbsp;&nbsp;&nbsp;箱:service@ezijing.com</div>
<div class="address" v-html="$t('foot.address')"></div>
<div class="phone" v-html="$t('foot.contact')"></div>
<div class="mail" v-html="$t('foot.email')"></div>
</div>
<div class="right-content">
<img src="https://zws-imgs-pub.ezijing.com/static/public/734d8fd7b853b838e5e029049e2d9db3.png" alt="" class="code">
<div class="tips-txt">
<img src="https://zws-imgs-pub.ezijing.com/static/public/184235d9f6edbb39d52fc6f77339ff5b.png" alt="">
<div class="txt">微信公众号</div>
<div class="txt">{{ $t('foot.weChat') }}</div>
</div>
</div>
</div>
......
......@@ -8,11 +8,11 @@
</app-link>
<div class="user" v-if="user.id">
<span>{{ user.realname || user.nickname }}</span
><em>|</em><span class="logout" @click="logout">退出</span>
><em>|</em><span class="logout" @click="logout">{{ $t('menu.out') }}</span>
</div>
<div class="login-btn-box" v-else>
<div class="login"><a :href="loginURL">快速登录</a></div>
<div class="register"><a :href="registerURL">注册</a></div>
<div class="login"><a :href="loginURL">{{ $t('menu.fastLogin') }}</a></div>
<div class="register"><a :href="registerURL">{{ $t('menu.register') }}</a></div>
</div>
<div class="language">
<span @click="switchLocale('zh-CN')">中文</span> / <span @click="switchLocale('en-US')">EN</span>
......
......@@ -49,49 +49,49 @@ export default {
return {
navData: [
{
name: '项目介绍',
name: this.$t('menu.project'),
path: '/project-intro/bg',
childern: [
{ name: '项目背景', path: '/project-intro/bg' },
{ name: '项目特色', path: '/project-intro/charac' },
{ name: '证书授予', path: '/project-intro/certificate' }
{ name: this.$t('menu.projectChild.bg'), path: '/project-intro/bg' },
{ name: this.$t('menu.projectChild.feature'), path: '/project-intro/charac' },
{ name: this.$t('menu.projectChild.cert'), path: '/project-intro/certificate' }
]
},
{
name: '课程与师资',
name: this.$t('menu.course'),
path: '/about/course',
childern: [
{ name: '课程设置', path: '/about/course' },
{ name: '师资力量', path: '/about/teacher' }
{ name: this.$t('menu.courseChild.set'), path: '/about/course' },
{ name: this.$t('menu.courseChild.teachers'), path: '/about/teacher' }
]
},
{
name: '最新动态',
name: this.$t('menu.news'),
path: '/news/hot',
childern: [
{ name: '热点新闻', path: '/news/hot' },
{ name: '教授采访', path: '/news/interview' }
{ name: this.$t('menu.newsChild.hot'), path: '/news/hot' },
{ name: this.$t('menu.newsChild.interview'), path: '/news/interview' }
]
},
{
name: '招生信息',
name: this.$t('menu.recruit'),
path: '/apply/relevant',
childern: [
{ name: '有关申请', path: '/apply/relevant' },
{ name: '费用资助', path: '/apply/support' },
{ name: '常见问题', path: '/apply/problem' }
{ name: this.$t('menu.recruitChild.apply'), path: '/apply/relevant' },
{ name: this.$t('menu.recruitChild.cost'), path: '/apply/support' },
{ name: this.$t('menu.recruitChild.problem'), path: '/apply/problem' }
]
},
{
name: '校友风采',
name: this.$t('menu.alumni'),
path: '/alumni/outstanding',
childern: [
{ name: '杰出校友', path: '/alumni/outstanding' },
{ name: '校友分享', path: '/alumni/sharing' }
{ name: this.$t('menu.alumniChild.outstanding'), path: '/alumni/outstanding' },
{ name: this.$t('menu.alumniChild.share'), path: '/alumni/sharing' }
]
},
{
name: '报名申请',
name: this.$t('menu.enroll'),
path: '/my'
}
],
......
......@@ -74,7 +74,7 @@ export default {
data () {
return {
titleParams: {
name: '常见问题',
name: this.$t('home.problem.title'),
more: {
path: '/apply/problem'
}
......
......@@ -5,7 +5,7 @@
<div class="text">{{ data.name }}</div>
</div>
<div v-if="data.more" class="right-text" @click="$router.push({ path: data.more.path, query: data.more.query ? data.more.query : {} })">
查看更多+
{{ $t('viewMore') }}
</div>
</div>
</template>
......
......@@ -42,7 +42,7 @@ export default {
return {
data: [],
titleParams: {
name: '最新动态',
name: this.$t('home.news.title'),
more: {
path: '/news/hot'
}
......
......@@ -28,7 +28,7 @@ export default {
const _this = this
return {
titleParams: {
name: '公开课'
name: this.$t('home.course.title')
},
isScale: false,
listData: [],
......
......@@ -16,29 +16,29 @@
</div>
<div class="enroll-box">
<div class="left-content">
<div class="tit">提交申请<br />免费领取试听课程</div>
<div class="tips">温馨提示:仅本科及以上学历可报名</div>
<div class="tit" v-html="$t('home.presence.tips1')"></div>
<div class="tips">{{ $t('home.presence.tips2') }}</div>
</div>
<div class="right-content">
<div class="li">
<el-select v-model="form.years" placeholder="请选择工作年限">
<el-select v-model="form.years" :placeholder="$t('home.presence.yearsholder')">
<el-option v-for="item in yearsOptions" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</el-select>
</div>
<div class="li">
<el-select v-model="form.degree" placeholder="请选择学历/学位">
<el-select v-model="form.degree" :placeholder="$t('home.presence.degreeholder')">
<el-option v-for="item in degreeOptions" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</el-select>
</div>
<div class="li">
<el-input v-model="form.name" placeholder="输入您的姓名"></el-input>
<el-input v-model="form.name" :placeholder="$t('home.presence.nameholder')"></el-input>
</div>
<div class="li">
<el-input v-model="form.phone" placeholder="输入您的手机号"></el-input>
<el-input v-model="form.phone" :placeholder="$t('home.presence.phoneholder')"></el-input>
</div>
<div class="btn" @click="submit">立即提交</div>
<div class="btn" @click="submit">{{ $t('home.presence.formBtn') }}</div>
</div>
</div>
</div>
......@@ -103,7 +103,7 @@ export default {
},
value: '',
titleParams: {
name: '师生风采',
name: this.$t('home.presence.title'),
more: {
path: '/alumni/sharing'
}
......
......@@ -22,33 +22,33 @@ export default {
data() {
return {
titleParams: {
name: '项目特色'
name: this.$t('home.project.title')
},
data: [
{
icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/home-icon1.png',
iconActive: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/home-icon-s1.png',
text: '全方位的金融职业<br />教育课程体系', path: '', pathType: 0
text: this.$t('home.project.itemT1'), path: '', pathType: 0
},
{
icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/home-icon2.png',
iconActive: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/home-icon-s2.png',
text: '专业金融<br />在线教育品牌', path: '', pathType: 0
text: this.$t('home.project.itemT2'), path: '', pathType: 0
},
{
icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/home-icon3.png',
iconActive: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/home-icon-s3.png',
text: '科学成熟的<br />在线教育模式', path: '', pathType: 0
text: this.$t('home.project.itemT3'), path: '', pathType: 0
},
{
icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/home-icon4.png',
iconActive: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/home-icon-s4.png',
text: '无需联考、快速入门<br />的学习体验', path: '', pathType: 0
text: this.$t('home.project.itemT4'), path: '', pathType: 0
},
{
icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/home-icon5.png',
iconActive: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/home-icon-s5.png',
text: '聚焦中国实践和国际前沿<br />的最新课程', path: '', pathType: 0
text: this.$t('home.project.itemT5'), path: '', pathType: 0
}
]
}
......
......@@ -2,47 +2,41 @@
<div class="ranking-content-box">
<div class="title">
<div class="line"></div>
<div class="name">学校排名</div>
<div class="name">{{ $t('home.ranking.title') }}</div>
<div class="line"></div>
</div>
<div class="content-mian">
<div class="li">
<div class="li-tit">印第安纳大学</div>
<div class="li-tit" v-html="$t('home.ranking.item1Tit')"></div>
<div class="item">
<div class="tit"><span>No.</span>11</div>
<div class="p">全球最佳研究生院排名</div>
<div class="p">2018 《美国新闻与世界报道》</div>
<div class="p" v-html="$t('home.ranking.item1Txt1')"></div>
</div>
<div class="item">
<div class="tit"><span>No.</span>21</div>
<div class="p">全美最佳商学院研究生综合排名</div>
<div class="p">2018 《美国新闻与世界报道》</div>
<div class="p" v-html="$t('home.ranking.item1Txt2')"></div>
</div>
</div>
<div class="li">
<div class="li-tit">KELLEY 商学院</div>
<div class="li-tit" v-html="$t('home.ranking.item2Tit')"></div>
<div class="item">
<div class="tit"><span>No.</span>21</div>
<div class="p">总体排名</div>
<div class="p">2018 《美国新闻与世界报道》</div>
<div class="p" v-html="$t('home.ranking.item2Txt1')"></div>
</div>
<div class="item">
<div class="tit"><span>No.</span>1</div>
<div class="p">学生满意度排名</div>
<div class="p">2016 《彭博商业周刊》</div>
<div class="p" v-html="$t('home.ranking.item2Txt2')"></div>
</div>
</div>
<div class="li mar-t">
<div class="li-tit">KELLEY<br />在线金融硕士</div>
<div class="li-tit" v-html="$t('home.ranking.item3Tit')"></div>
<div class="item">
<div class="tit"><span>No.</span>11</div>
<div class="p">全球最佳研究生院排名</div>
<div class="p">2018 《美国新闻与世界报道》</div>
<div class="p" v-html="$t('home.ranking.item3Txt1')"></div>
</div>
<div class="item">
<div class="tit"><span>No.</span>21</div>
<div class="p">全美最佳商学院研究生综合排名</div>
<div class="p">2018 《美国新闻与世界报道》</div>
<div class="p" v-html="$t('home.ranking.item3Txt2')"></div>
</div>
</div>
</div>
......@@ -115,9 +109,9 @@ export default {
.p{
text-align: center;
font-size: 16px;
line-height: 100%;
line-height: 30px;
color: #FFFFFF;
margin-bottom: 11px;
// margin-bottom: 11px;
}
}
}
......
export default {
// 头部 + 导航
menu: {
about: 'About'
}
out: '退出',
fastLogin: '快速登录',
register: '注册',
project: '项目介绍',
course: '课程与师资',
news: '最新动态',
recruit: '招生信息',
alumni: '校友风采',
enroll: '报名申请',
projectChild: {
bg: '项目背景',
feature: '项目特色',
cert: '证书授予'
},
courseChild: {
set: '课程设置',
teachers: '师资力量'
},
newsChild: {
hot: '热点新闻',
interview: '教授采访'
},
recruitChild: {
apply: '有关申请',
cost: '费用资助',
problem: '常见问题'
},
alumniChild: {
outstanding: '杰出校友',
share: '校友分享'
}
},
// 首页
home: {
project: {
title: '项目特色',
itemT1: '全方位的金融职业<br />教育课程体系',
itemT2: '专业金融<br />在线教育品牌',
itemT3: '科学成熟的<br />在线教育模式',
itemT4: '无需联考、快速入门<br />的学习体验',
itemT5: '聚焦中国实践和国际前沿<br />的最新课程',
},
ranking: {
title: '学校排名',
item1Tit: '印第安纳大学',
item2Tit: 'KELLEY 商学院',
item3Tit: 'KELLEY<br />在线金融硕士',
item1Txt1: '全球最佳研究生院排名<br />2018 《美国新闻与世界报道》',
item1Txt2: '全美最佳商学院研究生综合排名<br />2018 《美国新闻与世界报道》',
item2Txt1: '总体排名<br />2018 《美国新闻与世界报道》',
item2Txt2: '学生满意度排名<br />2016 《彭博商业周刊》',
item3Txt1: '全球最佳研究生院排名<br />2018 《美国新闻与世界报道》',
item3Txt2: '全美最佳商学院研究生综合排名<br />2018 《美国新闻与世界报道》'
},
news: {
title: '最新动态'
},
presence: {
title: '师生风采',
tips1: '提交申请<br />免费领取试听课程',
tips2: '温馨提示:仅本科及以上学历可报名',
yearsholder: '请选择工作年限',
degreeholder: '请选择学历/学位',
nameholder: '输入您的姓名',
phoneholder: '输入您的手机号',
formBtn: '立即提交'
},
problem: {
title: '常见问题'
},
course: {
title: '公开课'
}
},
// 底部
foot: {
address: '地&nbsp;&nbsp;&nbsp;&nbsp;址:北京市海淀区中关村东路1号院清华科技园7号楼5层',
contact: '联系电话:010-62793299',
email: '邮&nbsp;&nbsp;&nbsp;&nbsp;箱:service@ezijing.com',
link1: '中国教育部',
link2: '教育部涉外监管网',
link3: '印第安纳大学',
link4: 'Kelley商学院',
link5: '紫荆教育',
weChat: '微信公众号'
},
// 项目背景
bg: {
tabBtn1: '紫荆教育',
tabBtn2: 'KELLEY商学院',
tabBtn3: '联合办学背景',
con1Txt: `紫荆教育全称是清控紫荆(北京)教育科技股份有限公司,由清华控股有限公司于2015年以清华大学五道口金融学院相关知识产权创设而成。“紫荆”二字取自清华大学校花“紫荆花”,寓意“自强不息,向美而行”。<br />
紫荆教育以教育为本、以科技赋能、以专业化为基础,以国际化为目标,提供高端国际学位教育、职业教育和在线教育解决方案,为我国培养高质量的国际化人才和产业人才。`,
con1ItemT1: '国际合作院校',
con1ItemT2: '线上课程',
con1ItemT3: '金融机构/协会/政府/学校',
con1ItemT4: '国内外师资团队',
con1ItemT5: '学术直播课',
con1ItemT6: '总研发课时',
con1ItemT7: '学位学员',
con1ItemT8: '人次学习',
unit1: '所',
unit2: '门',
unit3: '万',
con2Txt: `印第安纳大学伯明顿分校是美国公立常春藤名校,成立于1820年,有近200年历史,是著名的研究型大学,拥有9位诺贝尔奖得主。<br />
印第安纳大学Kelley商学院是印第安纳大学伯明顿分校的明星学院,也是世界上历史最悠久和领先的商学院之一,成立于1920年,有近100年历史。<br />
Kelley商学院是印第安纳大学的商科研究生院,前身为Indiana University School of Commerce and Finance.
Kelley自1920年创立以来一直被认为是美国顶尖的商学院之一,在Business Week, U.S.News & World Report, 和The
Economist Intelligence
Unit等权威杂志的商学院排名中更是名列前茅,Kelley的校友在世界各地的企业,非盈利性组织,政府和学术机构中扮演着领导者的角色。`,
con3Txt: `本项目为紫荆教育与美国印第安纳大学Kelley商学院联合推出的金融学硕士项目,同时结合Kelley商学院金融学硕士的全球领先地位,引领中国金融教育实践,旨在培养具有国际视野、具备金融专业能力与实践创新能力,通晓国际金融规则和行业实践经验的金融专业人才。<br />
项目采用中英双语授课,学制为在职15个月(学籍最长可保留5年)。共设有三大模块近20余门学位课程,并结合访学、论文、实践等丰富多彩的教学形式。中美双方各负责50%的教学内容。项目采用线上学习和线下面授的教学方式,学习期间安排一次集中强化式赴美访学。<br />
项目学习结束后,满足毕业条件的学员将获得美国印第安纳大学Kelley商学院授予的金融学硕士学位证书,该证书与印第安纳大学Kelley商学院本校生所获得的学位证书具有完全相同的形式和效力。<br />
世界最发达经济体与世界最大新兴经济体互相合作与学习,美国顶级商学院Kelley School of
Business与清华控股旗下紫荆教育紧密携手,依托清华大学五道口金融学院和美国印第安纳大学Kelley商学院的优质教学资源,打造最原汁原味、最接近实战的金融学硕士学位课程。`
},
// 项目特色
feature: {
item1Tit: '线上线下结合灵活的授课学习方式',
item1Txt1: '线上+线下教学模式',
item1Txt2: '在职学习、无需出国、入读名校',
item1Txt3: '最短15个月最长5年拿到学位',
item2Tit: '高性价比享超高品质教学服务体验',
item2Txt1: '专业金融在线教育品牌',
item2Txt2: '无需联考、快速入门的学习模式',
item2Txt3: '全方位的金融职业教育课程体系',
item3Tit: '国际视野结合中国本土的实践课程',
item3Txt1: '先修课程+必修课程+选修课程+美国访学',
item3Txt2: '全球排名顶尖师资+中国金融界权威专家',
item3Txt3: '多次被 U.S. News & World Report评为全美第一',
},
// 证书授予
cert: {
txt1: '修满33个学分',
txt2: '完成毕业报告',
txt3: '达到毕业条件的学员将被授予美国印第安纳大学KELLEY商学院金融硕士学位',
txt4: 'KELLEY商学院学位证书',
txt5: '*本学位和美国本校生所获学位相同'
},
// 课程设置
setCourse: {
tit1: '先修课程',
tit2: '必修课程',
tit3: '选修课程',
tit4: '美国访学',
t1: '金融英语',
t2: '管理经济学',
t3: '会计基础与财务分析',
t4: '财务管理',
t5: '资产定价和证券估值',
t6: '决策过程中的管理会计信息',
t7: '金融风险管理',
t8: '企业估值与投资',
t9: '证券和投资分析',
t10: '国际金融管理',
t11: '高级衍生品和固定收益模型',
t12: '金融市场策略',
t13: '行为金融学',
t14: '国际货币体系',
t15: '毕业论文/毕业设计',
t16: '创业金融系列',
t17: '财富管理系列',
t18: '企业理财系列',
t19: '互联网金融系列',
t20: 'ABS系列',
t21: '利率市场化系列',
t22: '转型与发展:金融科技系列等',
t23: '机器学习和商业应用',
t24: '职业发展规划',
t25: '毕业典礼'
},
// 师资力量
teachers: {
tit1: '美方师资(部分)',
tit2: '中方师资(部分)',
tea1Name: 'Ash Soni',
tea1Txt: '印第安纳大学工商管理博士<br/>KELLEY商学院副院长、教授',
tea2Name: '杨珺',
tea2Txt: '华盛顿大学金融学博士<br />香港中文大学运营管理学博士<br />KELLEY商学院公司治理研究院院长',
tea3Name: 'Cathy Bonser-neal',
tea3Txt: '芝加哥大学博士<br />KELLEY商学院金融学副教授',
tea4Name: 'Sreeni Kamma',
tea4Txt: '纽约州立大学布法罗分校博士<br />KELLEY商学院金融系主任',
tea5Name: 'Dubos J. masson',
tea5Txt: '印第安纳大学金融学博士<br />KELLEY商学院金融系副教授',
tea6Name: 'Joe fisher',
tea6Txt: '俄亥俄州立大学博士<br />KELLEY商学院教授',
tea7Name: '肇越',
tea7Txt: '清华五道口经济学博士<br />香港致富证券首席经济学家',
tea8Name: '梁国忠',
tea8Txt: '复旦大学金融学硕士<br />中金甲子投资基金管理有限公司<br />董事长兼总经理',
tea9Name: '孙明春',
tea9Txt: '斯坦福大学博士<br />海通国际首席经济学家',
tea10Name: '洪灏',
tea10Txt: '澳大利亚商学院金融系工商管理硕士士<br />交银国际董事总经理、首席策略师',
tea11Name: '王勇',
tea11Txt: '加拿大达尔豪斯大学博士<br />国家千人计划专家<br />天风证券首席风险官',
tea12Name: '王鹤菲',
tea12Txt: '斯坦福大学商学院金融学博士<br />中国人民大学国际学院金融学教授',
},
// 有关申请
apply: {
con1Tit: '申请条件',
con1Txt: '已获得本科或以上学位<br />有一定工作经验<br />托福79分/雅思6分以上',
con2Tit: '招生对象',
con2Txt: `证劵、基金、银行、财富管理等相关行业人士<br />
金融相关行业有丰富工作经验的专业人士<br />
所从事的金融业务具有国际化需求的人士<br />
其他对本项目有兴趣并自身优异者`
},
// 费用资助
cost: {
con1Tit: '学费',
con1Txt: `本项目学费24.98万元,<br />
由学生向清华控股旗下紫荆教育一次性缴纳。`,
con2Tit: '贷款',
con2Txt: `1、就读本项目的学生,可以申请多家金融机构的贷款服务。<br />
2、具体信息会在学生获得正式录取资格后公布。<br />
3、清华控股旗下紫荆教育不为学员担保贷款,不承担催款义务`
},
// 常见问题
problem: {
item1Tit: '申请和面试相关问题',
item1problem1: 'Q:如何申请美国印第安纳大学Kelley商学院金融学硕士?大概流程是什么?',
item1answer1: 'A: 请参考网页招生简章。',
item1problem2: 'Q:面试多少人?录取多少人?率取比率是多少?',
item1answer2: 'A: 本项目采取现场/视频面试的方式,面试人数和录取人数视申请人数和申请资质而定。',
item1problem3: 'Q:是否要求考生的工作经验必须属于金融行业?',
item1answer3: 'A: 本项目对考生的行业没有特殊要求。只要是有志于从事金融行业和相关工作的考生都可以报考本项目。录取为综合考评,工作背景是综合评价时需要参考的一部分信息。',
item2Tit: '报考资格相关问题',
item2problem1: 'Q:大专毕业后,又通过自考获得本科毕业证和学士学位,能否报考?',
item2answer1: 'A: 可以报考,只要获得本科学位证书,按照本科毕业生身份报考即可。',
item2problem2: 'Q:成人教育的本科毕业生(无学位证)能否报考?',
item2answer2: 'A: 不可以。需要获得本科学位证书才能符合相应报考条件。',
item3Tit: '',
item3problem1: 'Q:美国印第安纳大学Kelley商学院金融学硕士项目学费是多少? 可以分期吗?',
item3answer1: 'A: 目前本项目的学费为24.98万元人民币,由学生在入学前向紫荆教育缴清(不可选择分期)。',
},
// 杰出校友
outstanding: {
title1: 'KELLEY商学院杰出校友',
title2: '紫荆-KELLEY优秀学生'
},
viewMore: '查看更多+'
}
export default {
// 头部 + 导航
menu: {
about: '关于紫荆'
}
out: '退出',
fastLogin: '快速登录',
register: '注册',
project: '项目介绍',
course: '课程与师资',
news: '最新动态',
recruit: '招生信息',
alumni: '校友风采',
enroll: '报名申请',
projectChild: {
bg: '项目背景',
feature: '项目特色',
cert: '证书授予'
},
courseChild: {
set: '课程设置',
teachers: '师资力量'
},
newsChild: {
hot: '热点新闻',
interview: '教授采访'
},
recruitChild: {
apply: '有关申请',
cost: '费用资助',
problem: '常见问题'
},
alumniChild: {
outstanding: '杰出校友',
share: '校友分享'
}
},
// 首页
home: {
project: {
title: '项目特色',
itemT1: '全方位的金融职业<br />教育课程体系',
itemT2: '专业金融<br />在线教育品牌',
itemT3: '科学成熟的<br />在线教育模式',
itemT4: '无需联考、快速入门<br />的学习体验',
itemT5: '聚焦中国实践和国际前沿<br />的最新课程',
},
ranking: {
title: '学校排名',
item1Tit: '印第安纳大学',
item2Tit: 'KELLEY 商学院',
item3Tit: 'KELLEY<br />在线金融硕士',
item1Txt1: '全球最佳研究生院排名<br />2018 《美国新闻与世界报道》',
item1Txt2: '全美最佳商学院研究生综合排名<br />2018 《美国新闻与世界报道》',
item2Txt1: '总体排名<br />2018 《美国新闻与世界报道》',
item2Txt2: '学生满意度排名<br />2016 《彭博商业周刊》',
item3Txt1: '全球最佳研究生院排名<br />2018 《美国新闻与世界报道》',
item3Txt2: '全美最佳商学院研究生综合排名<br />2018 《美国新闻与世界报道》'
},
news: {
title: '最新动态'
},
presence: {
title: '师生风采',
tips1: '提交申请<br />免费领取试听课程',
tips2: '温馨提示:仅本科及以上学历可报名',
yearsholder: '请选择工作年限',
degreeholder: '请选择学历/学位',
nameholder: '输入您的姓名',
phoneholder: '输入您的手机号',
formBtn: '立即提交'
},
problem: {
title: '常见问题'
},
course: {
title: '公开课'
}
},
// 底部
foot: {
address: '地&nbsp;&nbsp;&nbsp;&nbsp;址:北京市海淀区中关村东路1号院清华科技园7号楼5层',
contact: '联系电话:010-62793299',
email: '邮&nbsp;&nbsp;&nbsp;&nbsp;箱:service@ezijing.com',
link1: '中国教育部',
link2: '教育部涉外监管网',
link3: '印第安纳大学',
link4: 'Kelley商学院',
link5: '紫荆教育',
weChat: '微信公众号'
},
// 项目背景
bg: {
tabBtn1: '紫荆教育',
tabBtn2: 'KELLEY商学院',
tabBtn3: '联合办学背景',
con1Txt: `紫荆教育全称是清控紫荆(北京)教育科技股份有限公司,由清华控股有限公司于2015年以清华大学五道口金融学院相关知识产权创设而成。“紫荆”二字取自清华大学校花“紫荆花”,寓意“自强不息,向美而行”。<br />
紫荆教育以教育为本、以科技赋能、以专业化为基础,以国际化为目标,提供高端国际学位教育、职业教育和在线教育解决方案,为我国培养高质量的国际化人才和产业人才。`,
con1ItemT1: '国际合作院校',
con1ItemT2: '线上课程',
con1ItemT3: '金融机构/协会/政府/学校',
con1ItemT4: '国内外师资团队',
con1ItemT5: '学术直播课',
con1ItemT6: '总研发课时',
con1ItemT7: '学位学员',
con1ItemT8: '人次学习',
unit1: '所',
unit2: '门',
unit3: '万',
con2Txt: `印第安纳大学伯明顿分校是美国公立常春藤名校,成立于1820年,有近200年历史,是著名的研究型大学,拥有9位诺贝尔奖得主。<br />
印第安纳大学Kelley商学院是印第安纳大学伯明顿分校的明星学院,也是世界上历史最悠久和领先的商学院之一,成立于1920年,有近100年历史。<br />
Kelley商学院是印第安纳大学的商科研究生院,前身为Indiana University School of Commerce and Finance.
Kelley自1920年创立以来一直被认为是美国顶尖的商学院之一,在Business Week, U.S.News & World Report, 和The
Economist Intelligence
Unit等权威杂志的商学院排名中更是名列前茅,Kelley的校友在世界各地的企业,非盈利性组织,政府和学术机构中扮演着领导者的角色。`,
con3Txt: `本项目为紫荆教育与美国印第安纳大学Kelley商学院联合推出的金融学硕士项目,同时结合Kelley商学院金融学硕士的全球领先地位,引领中国金融教育实践,旨在培养具有国际视野、具备金融专业能力与实践创新能力,通晓国际金融规则和行业实践经验的金融专业人才。<br />
项目采用中英双语授课,学制为在职15个月(学籍最长可保留5年)。共设有三大模块近20余门学位课程,并结合访学、论文、实践等丰富多彩的教学形式。中美双方各负责50%的教学内容。项目采用线上学习和线下面授的教学方式,学习期间安排一次集中强化式赴美访学。<br />
项目学习结束后,满足毕业条件的学员将获得美国印第安纳大学Kelley商学院授予的金融学硕士学位证书,该证书与印第安纳大学Kelley商学院本校生所获得的学位证书具有完全相同的形式和效力。<br />
世界最发达经济体与世界最大新兴经济体互相合作与学习,美国顶级商学院Kelley School of
Business与清华控股旗下紫荆教育紧密携手,依托清华大学五道口金融学院和美国印第安纳大学Kelley商学院的优质教学资源,打造最原汁原味、最接近实战的金融学硕士学位课程。`
},
// 项目特色
feature: {
item1Tit: '线上线下结合灵活的授课学习方式',
item1Txt1: '线上+线下教学模式',
item1Txt2: '在职学习、无需出国、入读名校',
item1Txt3: '最短15个月最长5年拿到学位',
item2Tit: '高性价比享超高品质教学服务体验',
item2Txt1: '专业金融在线教育品牌',
item2Txt2: '无需联考、快速入门的学习模式',
item2Txt3: '全方位的金融职业教育课程体系',
item3Tit: '国际视野结合中国本土的实践课程',
item3Txt1: '先修课程+必修课程+选修课程+美国访学',
item3Txt2: '全球排名顶尖师资+中国金融界权威专家',
item3Txt3: '多次被 U.S. News & World Report评为全美第一',
},
// 证书授予
cert: {
txt1: '修满33个学分',
txt2: '完成毕业报告',
txt3: '达到毕业条件的学员将被授予美国印第安纳大学KELLEY商学院金融硕士学位',
txt4: 'KELLEY商学院学位证书',
txt5: '*本学位和美国本校生所获学位相同'
},
// 课程设置
setCourse: {
tit1: '先修课程',
tit2: '必修课程',
tit3: '选修课程',
tit4: '美国访学',
t1: '金融英语',
t2: '管理经济学',
t3: '会计基础与财务分析',
t4: '财务管理',
t5: '资产定价和证券估值',
t6: '决策过程中的管理会计信息',
t7: '金融风险管理',
t8: '企业估值与投资',
t9: '证券和投资分析',
t10: '国际金融管理',
t11: '高级衍生品和固定收益模型',
t12: '金融市场策略',
t13: '行为金融学',
t14: '国际货币体系',
t15: '毕业论文/毕业设计',
t16: '创业金融系列',
t17: '财富管理系列',
t18: '企业理财系列',
t19: '互联网金融系列',
t20: 'ABS系列',
t21: '利率市场化系列',
t22: '转型与发展:金融科技系列等',
t23: '机器学习和商业应用',
t24: '职业发展规划',
t25: '毕业典礼'
},
// 师资力量
teachers: {
tit1: '美方师资(部分)',
tit2: '中方师资(部分)',
tea1Name: 'Ash Soni',
tea1Txt: '印第安纳大学工商管理博士<br/>KELLEY商学院副院长、教授',
tea2Name: '杨珺',
tea2Txt: '华盛顿大学金融学博士<br />香港中文大学运营管理学博士<br />KELLEY商学院公司治理研究院院长',
tea3Name: 'Cathy Bonser-neal',
tea3Txt: '芝加哥大学博士<br />KELLEY商学院金融学副教授',
tea4Name: 'Sreeni Kamma',
tea4Txt: '纽约州立大学布法罗分校博士<br />KELLEY商学院金融系主任',
tea5Name: 'Dubos J. masson',
tea5Txt: '印第安纳大学金融学博士<br />KELLEY商学院金融系副教授',
tea6Name: 'Joe fisher',
tea6Txt: '俄亥俄州立大学博士<br />KELLEY商学院教授',
tea7Name: '肇越',
tea7Txt: '清华五道口经济学博士<br />香港致富证券首席经济学家',
tea8Name: '梁国忠',
tea8Txt: '复旦大学金融学硕士<br />中金甲子投资基金管理有限公司<br />董事长兼总经理',
tea9Name: '孙明春',
tea9Txt: '斯坦福大学博士<br />海通国际首席经济学家',
tea10Name: '洪灏',
tea10Txt: '澳大利亚商学院金融系工商管理硕士士<br />交银国际董事总经理、首席策略师',
tea11Name: '王勇',
tea11Txt: '加拿大达尔豪斯大学博士<br />国家千人计划专家<br />天风证券首席风险官',
tea12Name: '王鹤菲',
tea12Txt: '斯坦福大学商学院金融学博士<br />中国人民大学国际学院金融学教授',
},
// 有关申请
apply: {
con1Tit: '申请条件',
con1Txt: '已获得本科或以上学位<br />有一定工作经验<br />托福79分/雅思6分以上',
con2Tit: '招生对象',
con2Txt: `证劵、基金、银行、财富管理等相关行业人士<br />
金融相关行业有丰富工作经验的专业人士<br />
所从事的金融业务具有国际化需求的人士<br />
其他对本项目有兴趣并自身优异者`
},
// 费用资助
cost: {
con1Tit: '学费',
con1Txt: `本项目学费24.98万元,<br />
由学生向清华控股旗下紫荆教育一次性缴纳。`,
con2Tit: '贷款',
con2Txt: `1、就读本项目的学生,可以申请多家金融机构的贷款服务。<br />
2、具体信息会在学生获得正式录取资格后公布。<br />
3、清华控股旗下紫荆教育不为学员担保贷款,不承担催款义务`
},
// 常见问题
problem: {
item1Tit: '申请和面试相关问题',
item1problem1: 'Q:如何申请美国印第安纳大学Kelley商学院金融学硕士?大概流程是什么?',
item1answer1: 'A: 请参考网页招生简章。',
item1problem2: 'Q:面试多少人?录取多少人?率取比率是多少?',
item1answer2: 'A: 本项目采取现场/视频面试的方式,面试人数和录取人数视申请人数和申请资质而定。',
item1problem3: 'Q:是否要求考生的工作经验必须属于金融行业?',
item1answer3: 'A: 本项目对考生的行业没有特殊要求。只要是有志于从事金融行业和相关工作的考生都可以报考本项目。录取为综合考评,工作背景是综合评价时需要参考的一部分信息。',
item2Tit: '报考资格相关问题',
item2problem1: 'Q:大专毕业后,又通过自考获得本科毕业证和学士学位,能否报考?',
item2answer1: 'A: 可以报考,只要获得本科学位证书,按照本科毕业生身份报考即可。',
item2problem2: 'Q:成人教育的本科毕业生(无学位证)能否报考?',
item2answer2: 'A: 不可以。需要获得本科学位证书才能符合相应报考条件。',
item3Tit: '',
item3problem1: 'Q:美国印第安纳大学Kelley商学院金融学硕士项目学费是多少? 可以分期吗?',
item3answer1: 'A: 目前本项目的学费为24.98万元人民币,由学生在入学前向紫荆教育缴清(不可选择分期)。',
},
// 杰出校友
outstanding: {
title1: 'KELLEY商学院杰出校友',
title2: '紫荆-KELLEY优秀学生'
},
viewMore: '查看更多+'
}
......@@ -32,121 +32,121 @@ export default {
return {
courseData: [
{
title: '先修课程',
title: this.$t('setCourse.tit1'),
item: [
{
name: '金融英语',
name: this.$t('setCourse.t1'),
score: 0
},
{
name: '管理经济学',
name: this.$t('setCourse.t2'),
score: 0
},
{
name: '会计基础与财务分析',
name: this.$t('setCourse.t3'),
score: 0
}
]
},
{
title: '必修课程',
title: this.$t('setCourse.tit2'),
item: [
{
name: '财务管理',
name: this.$t('setCourse.t4'),
score: 3
},
{
name: '资产定价和证券估值',
name: this.$t('setCourse.t5'),
score: 3
},
{
name: '决策过程中的管理会计信息',
name: this.$t('setCourse.t6'),
score: 3
},
{
name: '金融风险管理',
name: this.$t('setCourse.t7'),
score: 3
},
{
name: '企业估值与投资',
name: this.$t('setCourse.t8'),
score: 3
},
{
name: '证券和投资分析',
name: this.$t('setCourse.t9'),
score: 3
},
{
name: '国际金融管理',
name: this.$t('setCourse.t10'),
score: 3
},
{
name: '高级衍生品和固定收益模型',
name: this.$t('setCourse.t11'),
score: 3
},
{
name: '金融市场策略',
name: this.$t('setCourse.t12'),
score: 3
},
{
name: '行为金融学',
name: this.$t('setCourse.t13'),
score: 1.5
},
{
name: '国际货币体系',
name: this.$t('setCourse.t14'),
score: 1.5
},
{
name: '毕业论文/毕业设计',
name: this.$t('setCourse.t15'),
score: 1.5
}
]
},
{
title: '选修课程',
title: this.$t('setCourse.tit3'),
item: [
{
name: '创业金融系列',
name: this.$t('setCourse.t16'),
score: 0
},
{
name: '财富管理系列',
name: this.$t('setCourse.t17'),
score: 0
},
{
name: '企业理财系列',
name: this.$t('setCourse.t18'),
score: 0
},
{
name: '互联网金融系列',
name: this.$t('setCourse.t19'),
score: 0
},
{
name: 'ABS系列',
name: this.$t('setCourse.t20'),
score: 0
},
{
name: '利率市场化系列',
name: this.$t('setCourse.t21'),
score: 0
},
{
name: '转型与发展:金融科技系列等',
name: this.$t('setCourse.t22'),
score: 0
}
]
},
{
title: '美国访学',
title: this.$t('setCourse.tit4'),
item: [
{
name: '机器学习和商业应用',
name: this.$t('setCourse.t23'),
score: 1.5
},
{
name: '职业发展规划',
name: this.$t('setCourse.t24'),
score: 0
},
{
name: '毕业典礼',
name: this.$t('setCourse.t25'),
score: 0
}
]
......@@ -156,12 +156,12 @@ export default {
banner: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/about-banner.png',
slider: [
{
name: '课程设置',
name: this.$t('menu.courseChild.set'),
path: '/about/course',
pathActive: ['/about/course']
},
{
name: '师资力量',
name: this.$t('menu.courseChild.teachers'),
path: '/about/teacher',
pathActive: ['/about/teacher']
}
......
......@@ -10,9 +10,7 @@
<li :key="cIndex + '='">
<img :src="cItem.image" alt="" />
<div class="name">{{ cItem.name }}</div>
<template v-for="(text, tIndex) in cItem.intr">
<div class="p" :key="tIndex + '=='">{{ text }}</div>
</template>
<div class="p" v-html="cItem.intr"></div>
</li>
</template>
</ul>
......@@ -33,72 +31,72 @@ export default {
return {
teacherList: [
{
title: '美方师资(部分)',
title: this.$t('teachers.tit1'),
list: [
{
image: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/teacher-t1.png',
name: 'Ash Soni',
intr: ['印第安纳大学工商管理博士', 'KELLEY商学院副院长、教授']
name: this.$t('teachers.tea1Name'),
intr: this.$t('teachers.tea1Txt')
},
{
image: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/teacher-t2.png',
name: '杨珺',
intr: ['华盛顿大学金融学博士', '香港中文大学运营管理学博士', 'KELLEY商学院公司治理研究院院长']
name: this.$t('teachers.tea2Name'),
intr: this.$t('teachers.tea2Txt')
},
{
image: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/teacher-t3.png',
name: 'Cathy Bonser-neal',
intr: ['芝加哥大学博士', 'KELLEY商学院金融学副教授']
name: this.$t('teachers.tea3Name'),
intr: this.$t('teachers.tea3Txt')
},
{
image: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/teacher-t4.png',
name: 'Sreeni Kamma',
intr: ['纽约州立大学布法罗分校博士', 'KELLEY商学院金融系主任']
name: this.$t('teachers.tea4Name'),
intr: this.$t('teachers.tea4Txt')
},
{
image: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/teacher-t5.png',
name: 'Dubos J. masson',
intr: ['印第安纳大学金融学博士', 'KELLEY商学院金融系副教授']
name: this.$t('teachers.tea5Name'),
intr: this.$t('teachers.tea5Txt')
},
{
image: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/teacher-t6.png',
name: 'Joe fisher',
intr: ['俄亥俄州立大学博士', 'KELLEY商学院教授']
name: this.$t('teachers.tea6Name'),
intr: this.$t('teachers.tea6Txt')
}
]
},
{
title: '中方师资(部分)',
title: this.$t('teachers.tit2'),
list: [
{
image: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/teacher-t7.png',
name: '肇越',
intr: ['清华五道口经济学博士', '香港致富证券首席经济学家']
name: this.$t('teachers.tea7Name'),
intr: this.$t('teachers.tea7Txt')
},
{
image: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/teacher-t8.png',
name: '梁国忠',
intr: ['复旦大学金融学硕士', '中金甲子投资基金管理有限公司', '董事长兼总经理']
name: this.$t('teachers.tea8Name'),
intr: this.$t('teachers.tea8Txt')
},
{
image: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/teacher-t9.png',
name: '孙明春',
intr: ['斯坦福大学博士', '海通国际首席经济学家']
name: this.$t('teachers.tea9Name'),
intr: this.$t('teachers.tea9Txt')
},
{
image: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/teacher-t10.png',
name: '洪灏',
intr: ['澳大利亚商学院金融系工商管理硕士', '交银国际董事总经理、首席策略师']
name: this.$t('teachers.tea10Name'),
intr: this.$t('teachers.tea10Txt')
},
{
image: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/teacher-t11.png',
name: '王勇',
intr: ['加拿大达尔豪斯大学博士', '国家千人计划专家', '天风证券首席风险官']
name: this.$t('teachers.tea11Name'),
intr: this.$t('teachers.tea11Txt')
},
{
image: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/teacher-t12.png',
name: '王鹤菲',
intr: ['斯坦福大学商学院金融学博士', '中国人民大学国际学院金融学教授']
name: this.$t('teachers.tea12Name'),
intr: this.$t('teachers.tea12Txt')
}
]
}
......@@ -107,12 +105,12 @@ export default {
banner: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/about-banner2.png',
slider: [
{
name: '课程设置',
name: this.$t('menu.courseChild.set'),
path: '/about/course',
pathActive: ['/about/course']
},
{
name: '师资力量',
name: this.$t('menu.courseChild.teachers'),
path: '/about/teacher',
pathActive: ['/about/teacher']
}
......@@ -161,7 +159,7 @@ export default {
}
.p {
font-size: 14px;
line-height: 100%;
// line-height: 100%;
color: #666666;
white-space: nowrap;
margin-bottom: 5px;
......
......@@ -2,7 +2,7 @@
<div class="outstanding">
<app-frame :data="frameParams">
<div class="alumni">
<h5>KELLEY商学院杰出校友</h5>
<h5>{{ $t('outstanding.title1') }}</h5>
<ul class="card-list">
<li v-for="(item, index) in alumniList" :key="index">
<div class="avatar">
......@@ -14,7 +14,7 @@
</div>
</li>
</ul>
<h5>紫荆-KELLEY优秀学生</h5>
<h5>{{ $t('outstanding.title2') }}</h5>
<ul class="card-list">
<li v-for="item in studentList" :key="item.name">
<div class="avatar">
......@@ -136,12 +136,12 @@ export default {
banner: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/alumni-outstanding-banner.png',
slider: [
{
name: '杰出校友',
name: this.$t('menu.alumniChild.outstanding'),
path: '/alumni/outstanding',
pathActive: ['/alumni/outstanding']
},
{
name: '校友分享',
name: this.$t('menu.alumniChild.share'),
path: '/alumni/sharing',
pathActive: ['/alumni/sharing']
}
......
......@@ -25,12 +25,12 @@ export default {
banner: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/alumni-sharing-banner.png',
slider: [
{
name: '杰出校友',
name: this.$t('menu.alumniChild.outstanding'),
path: '/alumni/outstanding',
pathActive: ['/alumni/outstanding']
},
{
name: '校友分享',
name: this.$t('menu.alumniChild.share'),
path: '/alumni/sharing',
pathActive: ['/alumni/sharing']
}
......
......@@ -30,42 +30,41 @@ export default {
return {
problemList: [
{
title: '申请和面试相关问题',
title: this.$t('problem.item1Tit'),
problem: [
{
tit: 'Q:如何申请美国印第安纳大学Kelley商学院金融学硕士?大概流程是什么?',
answer: 'A: 请参考网页招生简章。'
tit: this.$t('problem.item1problem1'),
answer: this.$t('problem.item1answer1')
},
{
tit: 'Q:面试多少人?录取多少人?率取比率是多少?',
answer: 'A: 本项目采取现场/视频面试的方式,面试人数和录取人数视申请人数和申请资质而定。'
tit: this.$t('problem.item1problem2'),
answer: this.$t('problem.item1answer2')
},
{
tit: 'Q:是否要求考生的工作经验必须属于金融行业?',
answer:
'A: 本项目对考生的行业没有特殊要求。只要是有志于从事金融行业和相关工作的考生都可以报考本项目。录取为综合考评,工作背景是综合评价时需要参考的一部分信息。'
tit: this.$t('problem.item1problem3'),
answer: this.$t('problem.item1answer3')
}
]
},
{
title: '报考资格相关问题',
title: this.$t('problem.item2Tit'),
problem: [
{
tit: 'Q:大专毕业后,又通过自考获得本科毕业证和学士学位,能否报考?',
answer: 'A: 可以报考,只要获得本科学位证书,按照本科毕业生身份报考即可。'
tit: this.$t('problem.item2problem1'),
answer: this.$t('problem.item2answer1')
},
{
tit: 'Q:成人教育的本科毕业生(无学位证)能否报考?',
answer: 'A: 不可以。需要获得本科学位证书才能符合相应报考条件。'
tit: this.$t('problem.item2problem2'),
answer: this.$t('problem.item2answer2')
}
]
},
{
title: '费用相关问题',
title: this.$t('problem.item3Tit'),
problem: [
{
tit: 'Q:美国印第安纳大学Kelley商学院金融学硕士项目学费是多少? 可以分期吗?',
answer: 'A: 目前本项目的学费为24.98万元人民币,由学生在入学前向紫荆教育缴清(不可选择分期)。'
tit: this.$t('problem.item3problem1'),
answer: this.$t('problem.item3answer1')
}
]
}
......@@ -74,17 +73,17 @@ export default {
banner: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/apply-banner3.png',
slider: [
{
name: '有关申请',
name: this.$t('menu.recruitChild.apply'),
path: '/apply/relevant',
pathActive: ['/apply/relevant']
},
{
name: '费用资助',
name: this.$t('menu.recruitChild.cost'),
path: '/apply/support',
pathActive: ['/apply/support']
},
{
name: '常见问题',
name: this.$t('menu.recruitChild.problem'),
path: '/apply/problem',
pathActive: ['/apply/problem']
}
......
......@@ -3,15 +3,10 @@
<app-frame :data="frameParams">
<div class="content-box">
<div class="text-content">
<div class="title">申请条件</div>
<div class="con-txt">已获得本科或以上学位<br />有一定工作经验<br />托福79分/雅思6分以上</div>
<div class="title mar-t55">招生对象</div>
<div class="con-txt">
证劵、基金、银行、财富管理等相关行业人士<br />
金融相关行业有丰富工作经验的专业人士<br />
所从事的金融业务具有国际化需求的人士<br />
其他对本项目有兴趣并自身优异者
</div>
<div class="title">{{ $t('apply.con1Tit') }}</div>
<div class="con-txt" v-html="$t('apply.con1Txt')"></div>
<div class="title mar-t55">{{ $t('apply.con2Tit') }}</div>
<div class="con-txt" v-html="$t('apply.con2Txt')"></div>
</div>
<img src="https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/apply-img.png" alt="" />
</div>
......@@ -32,17 +27,17 @@ export default {
banner: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/apply-banner.png',
slider: [
{
name: '有关申请',
name: this.$t('menu.recruitChild.apply'),
path: '/apply/relevant',
pathActive: ['/apply/relevant']
},
{
name: '费用资助',
name: this.$t('menu.recruitChild.cost'),
path: '/apply/support',
pathActive: ['/apply/support']
},
{
name: '常见问题',
name: this.$t('menu.recruitChild.problem'),
path: '/apply/problem',
pathActive: ['/apply/problem']
}
......
......@@ -3,17 +3,10 @@
<app-frame :data="frameParams">
<div class="content-box">
<div class="text-content">
<div class="title">学费</div>
<div class="con-txt">
本项目学费24.98万元,<br />
由学生向清华控股旗下紫荆教育一次性缴纳。
</div>
<div class="title mar-t55">贷款</div>
<div class="con-txt">
1、就读本项目的学生,可以申请多家金融机构的贷款服务。<br />
2、具体信息会在学生获得正式录取资格后公布。<br />
3、清华控股旗下紫荆教育不为学员担保贷款,不承担催款义务
</div>
<div class="title">{{ $t('cost.con1Tit') }}</div>
<div class="con-txt" v-html="$t('cost.con1Txt')"></div>
<div class="title mar-t55">{{ $t('cost.con2Tit') }}</div>
<div class="con-txt" v-html="$t('cost.con2Txt')"></div>
</div>
</div>
</app-frame>
......@@ -33,17 +26,17 @@ export default {
banner: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/apply-banner2.png',
slider: [
{
name: '有关申请',
name: this.$t('menu.recruitChild.apply'),
path: '/apply/relevant',
pathActive: ['/apply/relevant']
},
{
name: '费用资助',
name: this.$t('menu.recruitChild.cost'),
path: '/apply/support',
pathActive: ['/apply/support']
},
{
name: '常见问题',
name: this.$t('menu.recruitChild.problem'),
path: '/apply/problem',
pathActive: ['/apply/problem']
}
......
......@@ -25,12 +25,12 @@ export default {
banner: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/news-banner.png',
slider: [
{
name: '热点新闻',
name: this.$t('menu.newsChild.hot'),
path: '/news/hot',
pathActive: ['/news/hot', '/news/hot-detail']
},
{
name: '教授采访',
name: this.$t('menu.newsChild.interview'),
path: '/news/interview',
pathActive: ['/news/interview', '/news/interview-detail']
}
......
......@@ -26,12 +26,12 @@ export default {
banner: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/news-banner2.png',
slider: [
{
name: '热点新闻',
name: this.$t('menu.newsChild.hot'),
path: '/news/hot',
pathActive: ['/news/hot']
},
{
name: '教授采访',
name: this.$t('menu.newsChild.interview'),
path: '/news/interview',
pathActive: ['/news/interview']
}
......
......@@ -16,10 +16,7 @@
<div class="sub-banner">
<img src="https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/project-intro-bg-zjjy.png" alt="" />
</div>
<div class="text">
紫荆教育全称是清控紫荆(北京)教育科技股份有限公司,由清华控股有限公司于2015年以清华大学五道口金融学院相关知识产权创设而成。“紫荆”二字取自清华大学校花“紫荆花”,寓意“自强不息,向美而行”。<br />
紫荆教育以教育为本、以科技赋能、以专业化为基础,以国际化为目标,提供高端国际学位教育、职业教育和在线教育解决方案,为我国培养高质量的国际化人才和产业人才。
</div>
<div class="text" v-html="$t('bg.con1Txt')"></div>
<div class="tags">
<div
:class="{ 'tag-item': true, big: (index + 2) % 4 === 0 }"
......@@ -90,35 +87,35 @@ export default {
return {
tabActive: 'zjjy',
list: [
{ name: 'zjjy', label: '紫荆教育' },
{ name: 'kelley', label: 'KELLEY商学院' },
{ name: 'lhbx', label: '联合办学背景' }
{ name: 'zjjy', label: this.$t('bg.tabBtn1') },
{ name: 'kelley', label: this.$t('bg.tabBtn2') },
{ name: 'lhbx', label: this.$t('bg.tabBtn3') }
],
tags: [
{ num: 12, unit: '所', text: '国际合作院校' },
{ num: 522, unit: '门', text: '线上课程' },
{ num: 600, unit: '+', text: '金融机构/协会/政府/学校' },
{ num: 700, unit: '+', text: '国内外师资团队' },
{ num: 1000, unit: '+', text: '学术直播课' },
{ num: 4800, unit: '+', text: '总研发课时' },
{ num: 5000, unit: '+', text: '学位学员' },
{ num: 500, unit: '万+', text: '人次学习' }
{ num: 12, unit: this.$t('bg.unit1'), text: this.$t('bg.con1ItemT1') },
{ num: 522, unit: this.$t('bg.unit2'), text: this.$t('bg.con1ItemT2') },
{ num: 600, unit: '+', text: this.$t('bg.con1ItemT3') },
{ num: 700, unit: '+', text: this.$t('bg.con1ItemT4') },
{ num: 1000, unit: '+', text: this.$t('bg.con1ItemT5') },
{ num: 4800, unit: '+', text: this.$t('bg.con1ItemT6') },
{ num: 5000, unit: '+', text: this.$t('bg.con1ItemT7') },
{ num: 500, unit: this.$t('bg.unit3'), text: this.$t('bg.con1ItemT8') }
],
frameParams: {
banner: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/project-intro-bg.png',
slider: [
{
name: '项目背景',
name: this.$t('menu.projectChild.bg'),
path: '/project-intro/bg',
pathActive: ['/project-intro/bg']
},
{
name: '项目特色',
name: this.$t('menu.projectChild.feature'),
path: '/project-intro/charac',
pathActive: ['/project-intro/charac']
},
{
name: '证书授予',
name: this.$t('menu.projectChild.cert'),
path: '/project-intro/certificate',
pathActive: ['/project-intro/certificate']
}
......
......@@ -3,16 +3,16 @@
<app-frame :data="frameParams">
<div class="certificate-main">
<div class="checkbox">
<p><i></i>修满33个学分</p>
<p><i></i>完成毕业报告</p>
<p><i></i>{{ $t('cert.txt1') }}</p>
<p><i></i>{{ $t('cert.txt2') }}</p>
</div>
<p class="text">达到毕业条件的学员将被授予美国印第安纳大学KELLEY商学院金融硕士学位</p>
<p class="text">{{ $t('cert.txt3') }}</p>
<img
src="https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/project-intro-certificate-pic.png"
alt=""
/>
<p class="certificate-title">KELLEY商学院学位证书</p>
<p class="certificate-des">*本学位和美国本校生所获学位相同</p>
<p class="certificate-title">{{ $t('cert.txt4') }}</p>
<p class="certificate-des">{{ $t('cert.txt5') }}</p>
</div>
</app-frame>
</div>
......@@ -26,17 +26,17 @@ export default {
banner: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/project-intro-certificate-banner.png',
slider: [
{
name: '项目背景',
name: this.$t('menu.projectChild.bg'),
path: '/project-intro/bg',
pathActive: ['/project-intro/bg']
},
{
name: '项目特色',
name: this.$t('menu.projectChild.feature'),
path: '/project-intro/charac',
pathActive: ['/project-intro/charac']
},
{
name: '证书授予',
name: this.$t('menu.projectChild.cert'),
path: '/project-intro/certificate',
pathActive: ['/project-intro/certificate']
}
......
......@@ -23,39 +23,35 @@ export default {
list: [
{
img: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/project-intro-charac-icon1.png',
title: '线上线下结合灵活的授课学习方式',
texts: ['线上+线下教学模式', '在职学习、无需出国、入读名校', '最短15个月最长5年拿到学位']
title: this.$t('feature.item1Tit'),
texts: [this.$t('feature.item1Txt1'), this.$t('feature.item1Txt2'), this.$t('feature.item1Txt3')]
},
{
img: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/project-intro-charac-icon2.png',
title: '高性价比享超高品质教学服务体验',
texts: ['专业金融在线教育品牌', '无需联考、快速入门的学习模式', '全方位的金融职业教育课程体系']
title: this.$t('feature.item2Tit'),
texts: [this.$t('feature.item2Txt1'), this.$t('feature.item2Txt2'), this.$t('feature.item2Txt3')]
},
{
img: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/project-intro-charac-icon3.png',
title: '国际视野结合中国本土的实践课程',
texts: [
'先修课程+必修课程+选修课程+美国访学',
'全球排名顶尖师资+中国金融界权威专家',
'多次被 U.S. News & World Report评为全美第一'
]
title: this.$t('feature.item3Tit'),
texts: [this.$t('feature.item3Txt1'), this.$t('feature.item3Txt2'), this.$t('feature.item3Txt3')]
}
],
frameParams: {
banner: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/project-intro-charac.png',
slider: [
{
name: '项目背景',
name: this.$t('menu.projectChild.bg'),
path: '/project-intro/bg',
pathActive: ['/project-intro/bg']
},
{
name: '项目特色',
name: this.$t('menu.projectChild.feature'),
path: '/project-intro/charac',
pathActive: ['/project-intro/charac']
},
{
name: '证书授予',
name: this.$t('menu.projectChild.cert'),
path: '/project-intro/certificate',
pathActive: ['/project-intro/certificate']
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论