Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
a7f309a7
提交
a7f309a7
authored
6月 11, 2021
作者:
pengxiaohui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update
上级
480aef0e
显示空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
77 行增加
和
105 行删除
+77
-105
.env
.env
+1
-1
.env.dev
.env.dev
+1
-1
Foot.vue
components/Foot.vue
+2
-7
Head.vue
components/Head.vue
+10
-1
commonProblem.vue
components/home/commonProblem.vue
+3
-3
presence.vue
components/home/presence.vue
+1
-1
projectFeatures.vue
components/home/projectFeatures.vue
+15
-15
schoolRanking.vue
components/home/schoolRanking.vue
+39
-71
rightAside.vue
components/rightAside.vue
+2
-2
nuxt.config.js
nuxt.config.js
+3
-3
没有找到文件。
.env
浏览文件 @
a7f309a7
projectId=100
1
projectId=100
0
newProjectId=6800243768751554560
...
...
.env.dev
浏览文件 @
a7f309a7
projectId=100
1
projectId=100
0
newProjectId=6800243768751554560
...
...
components/Foot.vue
浏览文件 @
a7f309a7
...
...
@@ -14,13 +14,8 @@
</a>
</div>
<div>
<a
href=
"http://www.pbcsf.tsinghua.edu.cn"
target=
"_blank"
>
印第安纳大学
</a>
</div>
<div>
<a
href=
"http://www.pbcsf.tsinghua.edu.cn"
target=
"_blank"
>
Kelley商学院
<a
href=
"https://www.sofia.edu/"
target=
"_blank"
>
索菲亚大学
</a>
</div>
<div>
...
...
components/Head.vue
浏览文件 @
a7f309a7
...
...
@@ -4,7 +4,8 @@
<div
class=
"head-top-content"
>
<div
class=
"max-width-content"
>
<app-link
:item=
"
{ path: '/' }">
<img
src=
"https://zws-imgs-pub.ezijing.com/static/public/307f688850f8308a5c944bd129436fe0.png"
/>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/sofia/ezijing-logo.png"
/>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/sofia/sofia-logo.png"
/>
</app-link>
<div
class=
"user"
v-if=
"user.id"
>
<span>
{{
user
.
realname
||
user
.
nickname
}}
</span
...
...
@@ -89,11 +90,19 @@ li {
.max-width-content
{
display
:
flex
;
align-items
:
center
;
::v-deep
.link-content
{
a
{
display
:flex
;
img
{
height
:
55px
;
cursor
:
pointer
;
display
:
block
;
}
img
:first-child
{
margin-right
:
30px
;
}
}
}
.user
{
margin-left
:
auto
;
font-size
:
14px
;
...
...
components/home/commonProblem.vue
浏览文件 @
a7f309a7
...
...
@@ -7,7 +7,7 @@
<ul>
<li>
<div
class=
"icon"
></div>
<div
class=
"text"
>
Kelley商学院
毕业生颁发的学位证书与在美国颁发的证书有何不同?
</div>
<div
class=
"text"
>
索菲亚大学给本项目
毕业生颁发的学位证书与在美国颁发的证书有何不同?
</div>
</li>
<li>
<div
class=
"icon"
></div>
...
...
@@ -29,7 +29,7 @@
<ul>
<li>
<div
class=
"icon"
></div>
<div
class=
"text"
>
如何申请
Kelley商学院金融学硕士
?
</div>
<div
class=
"text"
>
如何申请
美国索菲亚大学FMBA
?
</div>
</li>
<li>
<div
class=
"icon"
></div>
...
...
@@ -41,7 +41,7 @@
</li>
<li>
<div
class=
"icon"
></div>
<div
class=
"text"
>
美国
印第安纳大学Kelley商学院金融学
硕士的学费是多少?
</div>
<div
class=
"text"
>
美国
索菲亚大学金融方向工商管理
硕士的学费是多少?
</div>
</li>
<li>
<div
class=
"icon"
></div>
...
...
components/home/presence.vue
浏览文件 @
a7f309a7
...
...
@@ -194,7 +194,7 @@ export default {
width
:
1200px
;
height
:
540px
;
margin
:
80px
auto
0
;
background
:
url(https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
kelley/home-ssfc
-bg.png)
;
background
:
url(https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
sofia/home-apply-form
-bg.png)
;
background-size
:
100%
100%
;
display
:
flex
;
justify-content
:
space-between
;
...
...
components/home/projectFeatures.vue
浏览文件 @
a7f309a7
...
...
@@ -26,29 +26,29 @@ export default {
},
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
icon
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
sofia/SOFIA_icon_global
.png'
,
iconActive
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
sofia/SOFIA_icon_global_on
.png'
,
text
:
'
所获学位<br />全球通行,正规硕士学位
'
,
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
icon
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
sofia/SOFIA_icon_double_cert
.png'
,
iconActive
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
sofia/SOFIA_icon_double_cert_on
.png'
,
text
:
'
中美双认证大学
'
,
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
icon
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
sofia/SOFIA_icon_trinity
.png'
,
iconActive
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
sofia/SOFIA_icon_trinity_on
.png'
,
text
:
'
创新课程体系<br />融合金融、管理和心理学
'
,
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
icon
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
sofia/SOFIA_icon_International
.png'
,
iconActive
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
sofia/SOFIA_icon_International_on
.png'
,
text
:
'
国际化校友全球16<br />个国家国际校友
'
,
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
icon
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
sofia/SOFIA_icon_Authority
.png'
,
iconActive
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
sofia/SOFIA_icon_Authority_on
.png'
,
text
:
'
中美权威师资<br />清华、北大、斯坦福权威师资
'
,
path
:
''
,
pathType
:
0
}
]
}
...
...
components/home/schoolRanking.vue
浏览文件 @
a7f309a7
...
...
@@ -5,47 +5,38 @@
<div
class=
"name"
>
学校排名
</div>
<div
class=
"line"
></div>
</div>
<div
class=
"content-mian"
>
<div
class=
"li"
>
<div
class=
"li-tit"
>
印第安纳大学
</div>
<div
class=
"item"
>
<div
class=
"tit"
><span>
No.
</span>
11
</div>
<div
class=
"p"
>
全球最佳研究生院排名
</div>
<div
class=
"p"
>
2018 《美国新闻与世界报道》
</div>
<ul
class=
"content-mian"
>
<li>
<div
class=
"img"
>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/sofia/home-ranking-1.png"
>
</div>
<div
class=
"item"
>
<div
class=
"tit"
><span>
No.
</span>
21
</div>
<div
class=
"p"
>
全美最佳商学院研究生综合排名
</div>
<div
class=
"p"
>
2018 《美国新闻与世界报道》
</div>
<p>
中国教育部
<br/>
教育涉外监管信息网
<br/>
认证大学
</p>
</li>
<li>
<div
class=
"img"
>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/sofia/home-ranking-2.png"
>
</div>
<p>
美国教育部
<br/>
西部院校联盟(WASC)
<br/>
认证大学
</p>
</li>
<li>
<div
class=
"img"
>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/sofia/home-ranking-3.png"
>
</div>
<div
class=
"li"
>
<div
class=
"li-tit"
>
KELLEY 商学院
</div>
<div
class=
"item"
>
<div
class=
"tit"
><span>
No.
</span>
21
</div>
<div
class=
"p"
>
总体排名
</div>
<div
class=
"p"
>
2018 《美国新闻与世界报道》
</div>
</div>
<div
class=
"item"
>
<div
class=
"tit"
><span>
No.
</span>
1
</div>
<div
class=
"p"
>
学生满意度排名
</div>
<div
class=
"p"
>
2016 《彭博商业周刊》
</div>
</div>
</div>
<div
class=
"li mar-t"
>
<div
class=
"li-tit"
>
KELLEY
<br
/>
在线金融硕士
</div>
<div
class=
"item"
>
<div
class=
"tit"
><span>
No.
</span>
11
</div>
<div
class=
"p"
>
全球最佳研究生院排名
</div>
<div
class=
"p"
>
2018 《美国新闻与世界报道》
</div>
</div>
<div
class=
"item"
>
<div
class=
"tit"
><span>
No.
</span>
21
</div>
<div
class=
"p"
>
全美最佳商学院研究生综合排名
</div>
<div
class=
"p"
>
2018 《美国新闻与世界报道》
</div>
</div>
<p>
美国加州
<br/>
私立高等教育局(BPPE)
<br/>
认证大学
</p>
</li>
<li>
<div
class=
"img"
>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/sofia/home-ranking-4.png"
>
</div>
<p>
美国高等教育
<br/>
认证委员会(CHEA)
<br/>
认证大学
</p>
</li>
<li>
<div
class=
"img"
>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/sofia/home-ranking-5.png"
>
</div>
<p>
美国
<br/>
学位三级认证
</p>
</li>
</ul>
</div>
</
template
>
<
script
>
...
...
@@ -58,7 +49,7 @@ export default {
margin-top
:
57px
;
width
:
100%
;
height
:
680px
;
background
:
url(https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
kelley/home-
ranking-bg.png)
center
;
background
:
url(https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/
sofia/
ranking-bg.png)
center
;
background-size
:
cover
;
.title
{
width
:
996px
;
...
...
@@ -80,45 +71,22 @@ export default {
}
}
.content-mian
{
width
:
1
00
0px
;
width
:
1
12
0px
;
margin
:
0
auto
;
display
:
flex
;
justify-content
:
space-between
;
.li
{
width
:
250px
;
&
.mar-t
{
transform
:
translateY
(
-35px
);
.li-tit
{
line-height
:
34px
;
transform
:
translateY
(
20px
);
}
}
.li-tit
{
text-align
:
center
;
font-size
:
30px
;
line-height
:
100%
;
color
:
#fff
;
}
.item
{
.tit
{
padding-top
:
46px
;
font-size
:
48px
;
line-height
:
100%
;
color
:
#FFFFFF
;
li
{
width
:
210px
;
background
:
#fff
;
text-align
:
center
;
margin-bottom
:
15px
;
line-height
:
100%
;
span
{
font-size
:
24px
;
}
}
.p
{
text-align
:
center
;
font-size
:
16px
;
line-height
:
100%
;
color
:
#FFFFFF
;
margin-bottom
:
11px
;
.img
{
height
:
200px
;
padding
:
80px
0
50px
;
}
p
{
color
:
#333
;
line-height
:
24px
;
padding-bottom
:
60px
;
}
}
}
...
...
components/rightAside.vue
浏览文件 @
a7f309a7
...
...
@@ -71,13 +71,13 @@ export default {
return
{
tabBtnActive
:
false
,
tabBtnTarget
:
''
,
projectName
:
'金融硕士'
,
projectName
:
'金融
工商管理
硕士'
,
sendCode
:
''
,
isBtnDisabled
:
false
,
formInfo
:
{
name
:
''
,
phone
:
''
,
newProjectId
:
'100
1
'
newProjectId
:
'100
0
'
},
projectList
:
[
{
label
:
'金融工商管理硕士'
,
value
:
'1000'
},
...
...
nuxt.config.js
浏览文件 @
a7f309a7
...
...
@@ -17,7 +17,7 @@ export default {
}),
// Global page headers: https://go.nuxtjs.dev/config-head
head
:
{
title
:
'
紫荆教育-在线MBA课程-MBA在线课程-专业金融在线教育品牌
'
,
title
:
'
索菲亚大学金融方向工商管理硕士项目
'
,
htmlAttrs
:
{
lang
:
'en'
},
...
...
@@ -28,12 +28,12 @@ export default {
{
name
:
'keywords'
,
content
:
'
理财规划师,企业理财顾问师,投资理财顾问,金融理财师,理财培训,企业融资,国家理财规划师,财富管理,资产管理,个人财富管理,证券投资,信托投资,房地产投资
'
'
索非亚大学,金融方向工商管理硕士,心理学研究,个人心理学
'
},
{
name
:
'description'
,
content
:
'
紫荆教育依托清华大学和五道口金融学院丰富的教育资源,秉承其严谨务实的教学理念,紧密结合宏观经济转型过程中,企业和个人知识结构升级的需求,融理论大家、实践专家、顶尖专业机构集体智慧于一体,构建以金融为核心的商业实战知识体系,努力为中国社会商业素质提高贡献一己之力.课程分类:企业理财顾问(CFC),理财规划师,财富资产管理,金融创业投资项目.
'
'
美国索非亚大学创办于1975年,前身是超个人心理学研究所,由毕业于哈佛大学的罗伯特.弗雷格尔博士(Dr.Robert Frager)创办。作为全球第一所超个人心理学顶尖学府,在超个人心理学的研究、整体性及临床教育上,处于全球领导地位。
'
}
],
link
:
[
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论