Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
abbef069
提交
abbef069
authored
1月 21, 2022
作者:
matian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
招生简章修改
上级
07a0d8e6
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
24 行增加
和
32 行删除
+24
-32
Video.vue
components/home/Video.vue
+10
-7
banners.vue
components/home/banners.vue
+1
-24
dataDownload.vue
pages/dataDownload/dataDownload.vue
+12
-0
apply.vue
pages/enroll/apply.vue
+1
-1
没有找到文件。
components/home/Video.vue
浏览文件 @
abbef069
...
@@ -2,8 +2,15 @@
...
@@ -2,8 +2,15 @@
<div
class=
"banner-content"
>
<div
class=
"banner-content"
>
<img
class=
"img"
src=
"https://webapp-pub.ezijing.com/project/marywood/video.png"
alt=
""
/>
<img
class=
"img"
src=
"https://webapp-pub.ezijing.com/project/marywood/video.png"
alt=
""
/>
<img
class=
"img1"
src=
"https://webapp-pub.ezijing.com/project/marywood/video_logo.png"
alt=
""
@
click=
"open"
/>
<img
class=
"img1"
src=
"https://webapp-pub.ezijing.com/project/marywood/video_logo.png"
alt=
""
@
click=
"open"
/>
<video
v-show=
"isShow"
class=
"video"
src=
""
controls=
"controls"
preload=
"none"
autoplay=
"autoplay"
></video>
<video
<div
class=
"overlay"
v-show=
"isShow"
@
click=
"close"
></div>
v-if=
"isShow === true"
class=
"video"
src=
"https://webapp-pub.ezijing.com/project/marywood/marywood.mp4"
controls=
"controls"
preload=
"none"
autoplay=
"autoplay"
></video>
<div
class=
"overlay"
v-if=
"isShow === true"
@
click=
"close"
></div>
</div>
</div>
</
template
>
</
template
>
...
@@ -14,19 +21,15 @@ export default {
...
@@ -14,19 +21,15 @@ export default {
isShow
:
false
isShow
:
false
}
}
},
},
mounted
()
{
document
.
getElementsByClassName
(
'video'
)[
0
].
src
=
'https://webapp-pub.ezijing.com/project/marywood/marywood.mp4'
},
methods
:
{
methods
:
{
open
()
{
open
()
{
this
.
isShow
=
true
this
.
isShow
=
true
document
.
getElementsByClassName
(
'video'
)[
0
].
src
=
'https://webapp-pub.ezijing.com/project/marywood/marywood.mp4'
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
height
=
'100%'
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
height
=
'100%'
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
overflow
=
'hidden'
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
overflow
=
'hidden'
},
},
close
()
{
close
()
{
this
.
isShow
=
false
this
.
isShow
=
false
document
.
getElementsByClassName
(
'video'
)[
0
].
src
=
''
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
height
=
''
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
height
=
''
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
overflow
=
''
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
overflow
=
''
}
}
...
...
components/home/banners.vue
浏览文件 @
abbef069
...
@@ -10,20 +10,13 @@
...
@@ -10,20 +10,13 @@
<div
class=
"nav_tit"
>
{{
item
.
tit
}}
</div>
<div
class=
"nav_tit"
>
{{
item
.
tit
}}
</div>
</div>
</div>
</div>
</div>
<!-- 我要咨询弹框 -->
<consultingForm
:visible
.
sync=
"popupVisible"
@
success=
"hideApplyForm"
@
close=
"close"
/>
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
import
consultingForm
from
'../consultingForm.vue'
export
default
{
export
default
{
components
:
{
consultingForm
},
data
()
{
data
()
{
return
{
return
{
popupVisible
:
false
,
navList
:
[
navList
:
[
{
{
img
:
'https://webapp-pub.ezijing.com/project/marywood/icon1.png'
,
img
:
'https://webapp-pub.ezijing.com/project/marywood/icon1.png'
,
...
@@ -54,27 +47,11 @@ export default {
...
@@ -54,27 +47,11 @@ export default {
}
}
},
},
methods
:
{
methods
:
{
showApplyForm
()
{
this
.
popupVisible
=
true
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
height
=
'100%'
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
overflow
=
'hidden'
},
close
()
{
this
.
popupVisible
=
false
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
height
=
''
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
overflow
=
''
},
hideApplyForm
()
{
this
.
popupVisible
=
false
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
height
=
''
document
.
getElementsByTagName
(
'body'
)[
0
].
style
.
overflow
=
''
},
navClick
(
item
)
{
navClick
(
item
)
{
if
(
item
.
tag
===
'1'
)
{
if
(
item
.
tag
===
'1'
)
{
// this.showApplyForm()
this
.
$router
.
push
(
'/my/account'
)
this
.
$router
.
push
(
'/my/account'
)
}
else
if
(
item
.
tag
===
'2'
)
{
}
else
if
(
item
.
tag
===
'2'
)
{
this
.
$router
.
push
(
'/project-intro/introduce
'
)
window
.
open
(
'https://webapp-pub.ezijing.com/project/marywood/%E6%8B%9B%E7%94%9F%E7%AE%80%E7%AB%A0.pdf
'
)
}
else
if
(
item
.
tag
===
'3'
)
{
}
else
if
(
item
.
tag
===
'3'
)
{
this
.
$router
.
push
(
'/project-intro/introduce'
)
this
.
$router
.
push
(
'/project-intro/introduce'
)
}
else
if
(
item
.
tag
===
'4'
)
{
}
else
if
(
item
.
tag
===
'4'
)
{
...
...
pages/dataDownload/dataDownload.vue
浏览文件 @
abbef069
...
@@ -2,6 +2,18 @@
...
@@ -2,6 +2,18 @@
<app-frame
:data=
"frameParams"
>
<app-frame
:data=
"frameParams"
>
<img
src=
"https://webapp-pub.ezijing.com/project/marywood/data_banner.png"
alt=
""
/>
<img
src=
"https://webapp-pub.ezijing.com/project/marywood/data_banner.png"
alt=
""
/>
<div
class=
"dataList"
>
<div
class=
"dataList"
>
<a
href=
"https://webapp-pub.ezijing.com/project/marywood/%E6%8B%9B%E7%94%9F%E7%AE%80%E7%AB%A0.docx"
download=
"111.pdf"
class=
"part"
>
<div
class=
"item"
>
<img
src=
"https://webapp-pub.ezijing.com/project/marywood/pdf.png"
alt=
""
/>
<p
class=
"doc"
>
招生简章.pdf
</p>
<p
class=
"p1"
>
最新更新
</p>
<p
class=
"p2"
>
下载
</p>
</div>
</a>
<a
<a
href=
"https://webapp-pub.ezijing.com/project/marywood/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98.docx"
href=
"https://webapp-pub.ezijing.com/project/marywood/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98.docx"
download=
"常见问题.docx"
download=
"常见问题.docx"
...
...
pages/enroll/apply.vue
浏览文件 @
abbef069
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
<div
class=
"admission_part"
>
<div
class=
"admission_part"
>
<div
class=
"part_tit"
><div
class=
"tit1"
>
玛丽伍德大学 工商管理硕士
</div></div>
<div
class=
"part_tit"
><div
class=
"tit1"
>
玛丽伍德大学 工商管理硕士
</div></div>
<div
class=
"part_desc"
>
<div
class=
"part_desc"
>
<div
class=
"item_desc"
>
本科GPA成绩≥2.
8
;
</div>
<div
class=
"item_desc"
>
本科GPA成绩≥2.
5
;
</div>
<div
class=
"item_desc"
>
通过初审资料审核(详见申请材料)
</div>
<div
class=
"item_desc"
>
通过初审资料审核(详见申请材料)
</div>
<div
class=
"item_desc"
>
通过项目中英文面试
</div>
<div
class=
"item_desc"
>
通过项目中英文面试
</div>
</div>
</div>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论