Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
84cec672
提交
84cec672
authored
8月 02, 2023
作者:
lhh
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update
上级
1175facc
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
146 行增加
和
64 行删除
+146
-64
Foot.vue
components/layout/pc/Foot.vue
+3
-3
Menu.vue
components/layout/pc/Menu.vue
+27
-30
index.vue
pages/degree/index.vue
+110
-29
process.vue
pages/guides/process.vue
+1
-1
index.vue
pages/plan/index.vue
+5
-1
没有找到文件。
components/layout/pc/Foot.vue
浏览文件 @
84cec672
...
@@ -2,8 +2,8 @@
...
@@ -2,8 +2,8 @@
<div
class=
"foot-main"
>
<div
class=
"foot-main"
>
<div
class=
"foot-box"
>
<div
class=
"foot-box"
>
<div
class=
"logo-title"
>
<div
class=
"logo-title"
>
<img
src=
"https://webapp-pub.
ezijing.com/project/cbu-enterprise/logo.png"
width=
"60px
"
/>
<img
src=
"https://webapp-pub.
oss-cn-beijing.aliyuncs.com/project/cbu-enterprise/82/logo.png
"
/>
<
h1>
亦学创新国际教育中心
</h1
>
<
!--
<h1>
亦学创新国际教育中心
</h1>
--
>
</div>
</div>
<div
class=
"bottom"
>
<div
class=
"bottom"
>
<div
class=
"bottom-item"
>
<div
class=
"bottom-item"
>
...
@@ -53,7 +53,7 @@ export default {}
...
@@ -53,7 +53,7 @@ export default {}
.logo-title
{
.logo-title
{
display
:
flex
;
display
:
flex
;
align-items
:
center
;
align-items
:
center
;
height
:
50
px
;
height
:
66
px
;
h1
{
h1
{
margin-left
:
14px
;
margin-left
:
14px
;
padding
:
0
14px
;
padding
:
0
14px
;
...
...
components/layout/pc/Menu.vue
浏览文件 @
84cec672
<
template
>
<
template
>
<ul
class=
"nav-item-box"
@
mouseleave=
"navLeave"
>
<ul
class=
"nav-item-box"
@
mouseleave=
"navLeave"
>
<template
v-for=
"(item, index) in navData"
>
<li
v-for=
"(item, index) in navData"
:key=
"index"
>
<li
:key=
"index"
>
<div
:class=
"getNameActive(item)"
>
<div
:class=
"getNameActive(item)"
>
<template
v-if=
"!item.path"
>
<template
v-if=
"!item.path"
>
<template
v-if=
"item.onClick"
>
<template
v-if=
"item.onClick"
>
<span
@
click=
"item.onClick"
>
{{
item
.
name
}}
</span>
<span
@
click=
"item.onClick"
>
{{
item
.
name
}}
</span>
</
template
>
<
template
v-else
>
{{
item
.
name
}}
</
template
>
</
template
>
</
template
>
<
template
v-else
>
<
template
v-else
>
<nuxt-link
:to=
"item.path"
>
{{
item
.
name
}}
</nuxt-link>
{{
item
.
name
}}
</
template
>
</
template
>
</div>
</template>
<div
class=
"child-item"
v-if=
"item.children"
>
<
template
v-else
>
<div
class=
"one-level"
>
<nuxt-link
:to=
"item.path"
>
{{
item
.
name
}}
</nuxt-link>
<
template
v-for=
"(level2Item, level2Index) in item.children"
>
</
template
>
<div
</div>
:class=
"$route.path === level2Item.path || level2Item.isShow ? 'li active' : 'li'"
<div
class=
"child-item"
v-if=
"item.children"
>
:key=
"level2Index + 'level2'"
<div
class=
"one-level"
>
@
mouseenter=
"levelShow(level2Item)"
<div
@
mouseleave=
"levelShow(level2Item, 'out')"
v-for=
"(level2Item, level2Index) in item.children"
>
:class=
"$route.path === level2Item.path || level2Item.isShow ? 'li active' : 'li'"
<app-link
:to=
"level2Item.path"
>
:key=
"level2Index + 'level2'"
<div
class=
"name"
>
@
mouseenter=
"levelShow(level2Item)"
{{
level2Item
.
name
}}
@
mouseleave=
"levelShow(level2Item, 'out')"
</div>
>
<div
class=
"el-icon-arrow-right"
v-if=
"level2Item.children"
></div>
<app-link
:to=
"level2Item.path"
>
</app-link>
<div
class=
"name"
>
{{ level2Item.name }}
</div>
</div>
</
template
>
<div
class=
"el-icon-arrow-right"
v-if=
"level2Item.children"
></div>
</app-link>
</div>
</div>
</div>
</div>
</
li
>
</
div
>
</
template
>
</
li
>
</ul>
</ul>
</template>
</template>
<
script
>
<
script
>
...
...
pages/degree/index.vue
浏览文件 @
84cec672
...
@@ -2,13 +2,47 @@
...
@@ -2,13 +2,47 @@
<div>
<div>
<img
src=
"https://webapp-pub.ezijing.com/project/marywood-plus/academic-banner.png"
width=
"100%"
/>
<img
src=
"https://webapp-pub.ezijing.com/project/marywood-plus/academic-banner.png"
width=
"100%"
/>
<div
class=
"main_content"
>
<div
class=
"main_content"
>
<div
class=
"img_english"
>
<div
class=
"content-top"
>
<p>
数字领导力企业家学者DBA
由学说国际教育独家运营,学员在完成所有毕业要求后,将获得加州浸会大学授予的工商管理博士学位。该学位证书与学生去加州浸会大学线下就读所获证书相同。加州浸会大学是受中国教育部承认的正规国际名校,该项目由学说平台、清控紫荆教育提供学术及技术支持。
</p>
<img
class=
"logo-all"
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/cbu-enterprise/82/logo-all.png"
/>
<p
class=
"mb-30"
>
加州浸会大学,创立于1950 年, 位于美国加州“科技、创新之都”河滨市,距离洛杉矶仅60 英里,北邻硅谷是拥有11000
余名在校生的综合性大学, 加州浸会大学工商管理博士DBA 项目是经过美国教育监管机构WASC、BPPE、DOE
等批准的正规博士项目。该项目强调课程学习与论文写作结合,以培养将管理实践和理论研究深度融合的商业领袖和学者为目标。
</p>
<p
class=
"mb-30"
>
学校所获排名和奖项包括美国最佳本科教学排名第6,美国西部大学排名第34,美国最具创新力大学排名第3,是受中国教育部承认正规海外院校(教育部涉外监管信息网可查)。
</p>
<p
class=
"mb-30"
>
学校开设超过150 多种本科专业、40 多种硕士学位专业以及7 种博士学位专业。
</p>
<div
class=
"degree-logo"
>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/cbu-enterprise/82/degree-logo1.png"
/>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/cbu-enterprise/82/degree-logo2.png"
/>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/cbu-enterprise/82/degree-logo3.png"
/>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/cbu-enterprise/82/degree-logo4.png"
/>
</div>
</div>
<div
class=
"content-bottom"
>
<div
class=
"title"
>
国际访问学者
</div>
<p>
部分已取得博士学位,并具备条件的优秀学员,将有机会参与由学说与香港排名前三的知名高校联合打造的“访问学者计划”,并受邀担任香港高校荣誉研究员(Honorary
ResearchAssociate)。在香港开启为期不低于两年的学习与学术研究生涯。
</p>
</div>
<!--
<div
class=
"img_english"
>
<el-image
src=
"https:///webapp-pub.ezijing.com/project/cbu-online/pc-cert-en.png"
class=
"img1"
></el-image>
<el-image
src=
"https:///webapp-pub.ezijing.com/project/cbu-online/pc-cert-en.png"
class=
"img1"
></el-image>
<div
class=
"item_english_name"
>
博士学位证书
</div>
<div
class=
"item_english_name"
>
博士学位证书
</div>
</div>
</div>
<div
class=
"academic_desc"
>
<div
class=
"academic_desc"
>
*注:学员在完成所有毕业要求后,将获得加州浸会大学授予工商管理博士学位。该学位证书与学生去加州浸会大学线下就读所获证书相同。
*注:学员在完成所有毕业要求后,将获得加州浸会大学授予工商管理博士学位。该学位证书与学生去加州浸会大学线下就读所获证书相同。
</div>
</div>
-->
</div>
</div>
</div>
</div>
</
template
>
</
template
>
...
@@ -21,38 +55,85 @@ export default {
...
@@ -21,38 +55,85 @@ export default {
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.is-pc
{
.is-pc
{
.main_content
{
.main_content
{
padding
:
70px
64px
80px
48px
;
margin
:
90px
auto
;
display
:
flex
;
width
:
900px
;
justify-content
:
center
;
.content-top
{
align-items
:
center
;
background-color
:
#aa1941
;
flex-direction
:
column
;
padding
:
50px
65px
40px
;
box-sizing
:
border-box
;
.img_english
{
p
{
display
:
flex
;
font-size
:
16px
;
justify-content
:
center
;
color
:
#ffffff
;
align-items
:
center
;
line-height
:
28px
;
flex-direction
:
column
;
&
.mb-30
{
.item_english_name
{
margin-bottom
:
30px
;
font-weight
:
400
;
}
color
:
#424242
;
font-size
:
20px
;
margin-top
:
20px
;
}
}
.img1
{
.logo-all
{
width
:
678px
;
display
:
block
;
height
:
495px
;
width
:
575px
;
margin
:
44px
auto
;
}
}
.img2
{
.degree-logo
{
width
:
350px
;
display
:
flex
;
height
:
513px
;
justify-content
:
space-around
;
margin-left
:
32px
;
align-items
:
center
;
margin
:
10px
0
;
img
{
height
:
fit-content
;
}
}
}
}
}
.academic_desc
{
.content-bottom
{
color
:
#666666
;
border
:
1px
solid
#aa1941
;
font-size
:
16px
;
padding
:
53px
65px
40px
;
margin-top
:
20px
;
margin-top
:
70px
;
.title
{
font-size
:
24px
;
font-weight
:
bold
;
color
:
#231815
;
line-height
:
100%
;
text-align
:
center
;
}
p
{
font-size
:
16px
;
color
:
#666666
;
line-height
:
28px
;
margin-top
:
38px
;
}
}
}
// padding: 70px 64px 80px 48px;
// display: flex;
// justify-content: center;
// align-items: center;
// flex-direction: column;
// .img_english {
// display: flex;
// justify-content: center;
// align-items: center;
// flex-direction: column;
// .item_english_name {
// font-weight: 400;
// color: #424242;
// font-size: 20px;
// margin-top: 20px;
// }
// .img1 {
// width: 678px;
// height: 495px;
// }
// .img2 {
// width: 350px;
// height: 513px;
// margin-left: 32px;
// }
// }
// .academic_desc {
// color: #666666;
// font-size: 16px;
// margin-top: 20px;
// }
}
}
}
}
.is-h5
{
.is-h5
{
...
...
pages/guides/process.vue
浏览文件 @
84cec672
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
</div>
</div>
<div
class=
"apply-item"
>
<div
class=
"apply-item"
>
<div
class=
"apply-item-num"
>
6
</div>
<div
class=
"apply-item-num"
>
6
</div>
<div
class=
"apply-item-hd"
>
签订入学协议,并
支付学费
</div>
<div
class=
"apply-item-hd"
>
支付学费
</div>
</div>
</div>
<div
class=
"apply-item"
>
<div
class=
"apply-item"
>
<div
class=
"apply-item-num"
>
7
</div>
<div
class=
"apply-item-num"
>
7
</div>
...
...
pages/plan/index.vue
浏览文件 @
84cec672
...
@@ -16,11 +16,15 @@
...
@@ -16,11 +16,15 @@
<p>
<p>
·顶配师资,国内外一流专家学者及代表性企业家担任授课老师
<br
/>
·论文导师匹配将在第二学年开启。我们在第二学年设计了丰富的必修、学位课和更多的专题实践,帮助学生深入了解不同教授的研究领域,为大家确定研究方向和匹配导师提供平台。
·顶配师资,国内外一流专家学者及代表性企业家担任授课老师
<br
/>
·论文导师匹配将在第二学年开启。我们在第二学年设计了丰富的必修、学位课和更多的专题实践,帮助学生深入了解不同教授的研究领域,为大家确定研究方向和匹配导师提供平台。
</p>
</p>
<img
style=
"width: 993px;display: block;margin: 60px auto;"
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/cbu-enterprise/82/tea-all.png"
/>
</section>
</section>
<section
class=
"section"
>
<section
class=
"section"
>
<h2
class=
"title"
>
国际游学
</h2>
<h2
class=
"title"
>
国际游学
</h2>
<p>
<p>
数字领导力DBA游学为中国最具变革精神的企业家打造精品线路,以
亦学创新
无与伦比的政、商、学资源让学员在一周至十天的学习行程中,打下塑造企业未来发展、提升格局的基础。开拓企业发展的国际视野及国际投资机遇。
数字领导力DBA游学为中国最具变革精神的企业家打造精品线路,以
学说国际教育
无与伦比的政、商、学资源让学员在一周至十天的学习行程中,打下塑造企业未来发展、提升格局的基础。开拓企业发展的国际视野及国际投资机遇。
</p>
</p>
</section>
</section>
<div
class=
"swiper-content"
@
mouseenter=
"swiperStop"
@
mouseleave=
"swiperStart"
>
<div
class=
"swiper-content"
@
mouseenter=
"swiperStop"
@
mouseleave=
"swiperStart"
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论