Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-www-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-www-pc
Commits
8ac3fd9f
提交
8ac3fd9f
authored
4月 29, 2021
作者:
lihuihui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改
上级
eeb2eee6
隐藏空白字符变更
内嵌
并排
正在显示
13 个修改的文件
包含
78 行增加
和
54 行删除
+78
-54
index.js
.nuxt/components/index.js
+12
-12
plugin.js
.nuxt/components/plugin.js
+6
-6
readme.md
.nuxt/components/readme.md
+6
-6
tags.json
.nuxt/vetur/tags.json
+18
-18
Foot.vue
components/Foot.vue
+7
-0
Head.vue
components/Head.vue
+4
-4
culture.vue
components/about/culture.vue
+1
-1
detail.vue
components/about/detail.vue
+3
-2
news.vue
components/about/news.vue
+3
-1
alumniStories.vue
components/home/alumniStories.vue
+14
-1
banner.vue
components/home/banner.vue
+1
-1
headmasterMsg.vue
components/home/headmasterMsg.vue
+2
-2
projectNotice.vue
components/home/projectNotice.vue
+1
-0
没有找到文件。
.nuxt/components/index.js
浏览文件 @
8ac3fd9f
...
...
@@ -3,12 +3,6 @@ import { wrapFunctional } from './utils'
export
{
default
as
Foot
}
from
'../../components/Foot.vue'
export
{
default
as
Head
}
from
'../../components/Head.vue'
export
{
default
as
RightAside
}
from
'../../components/RightAside.vue'
export
{
default
as
AboutContact
}
from
'../../components/about/contact.vue'
export
{
default
as
AboutCulture
}
from
'../../components/about/culture.vue'
export
{
default
as
AboutDetail
}
from
'../../components/about/detail.vue'
export
{
default
as
AboutIntroduce
}
from
'../../components/about/introduce.vue'
export
{
default
as
AboutNews
}
from
'../../components/about/news.vue'
export
{
default
as
AboutTabNav
}
from
'../../components/about/tabNav.vue'
export
{
default
as
AlumnusParty
}
from
'../../components/alumnus/party.vue'
export
{
default
as
AlumnusTabNav
}
from
'../../components/alumnus/tabNav.vue'
export
{
default
as
HomeAlumniStories
}
from
'../../components/home/alumniStories.vue'
...
...
@@ -19,17 +13,17 @@ export { default as HomeHeadmasterMsg } from '../../components/home/headmasterMs
export
{
default
as
HomeOpenClass
}
from
'../../components/home/openClass.vue'
export
{
default
as
HomeProjectNotice
}
from
'../../components/home/projectNotice.vue'
export
{
default
as
HomeServiceCase
}
from
'../../components/home/serviceCase.vue'
export
{
default
as
AboutContact
}
from
'../../components/about/contact.vue'
export
{
default
as
AboutCulture
}
from
'../../components/about/culture.vue'
export
{
default
as
AboutDetail
}
from
'../../components/about/detail.vue'
export
{
default
as
AboutIntroduce
}
from
'../../components/about/introduce.vue'
export
{
default
as
AboutNews
}
from
'../../components/about/news.vue'
export
{
default
as
AboutTabNav
}
from
'../../components/about/tabNav.vue'
export
{
default
as
ServicesTab
}
from
'../../components/services/tab.vue'
export
const
LazyFoot
=
import
(
'../../components/Foot.vue'
/* webpackChunkName: "components/foot" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyHead
=
import
(
'../../components/Head.vue'
/* webpackChunkName: "components/head" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyRightAside
=
import
(
'../../components/RightAside.vue'
/* webpackChunkName: "components/right-aside" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAboutContact
=
import
(
'../../components/about/contact.vue'
/* webpackChunkName: "components/about-contact" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAboutCulture
=
import
(
'../../components/about/culture.vue'
/* webpackChunkName: "components/about-culture" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAboutDetail
=
import
(
'../../components/about/detail.vue'
/* webpackChunkName: "components/about-detail" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAboutIntroduce
=
import
(
'../../components/about/introduce.vue'
/* webpackChunkName: "components/about-introduce" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAboutNews
=
import
(
'../../components/about/news.vue'
/* webpackChunkName: "components/about-news" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAboutTabNav
=
import
(
'../../components/about/tabNav.vue'
/* webpackChunkName: "components/about-tab-nav" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAlumnusParty
=
import
(
'../../components/alumnus/party.vue'
/* webpackChunkName: "components/alumnus-party" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAlumnusTabNav
=
import
(
'../../components/alumnus/tabNav.vue'
/* webpackChunkName: "components/alumnus-tab-nav" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyHomeAlumniStories
=
import
(
'../../components/home/alumniStories.vue'
/* webpackChunkName: "components/home-alumni-stories" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
...
...
@@ -40,4 +34,10 @@ export const LazyHomeHeadmasterMsg = import('../../components/home/headmasterMsg
export
const
LazyHomeOpenClass
=
import
(
'../../components/home/openClass.vue'
/* webpackChunkName: "components/home-open-class" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyHomeProjectNotice
=
import
(
'../../components/home/projectNotice.vue'
/* webpackChunkName: "components/home-project-notice" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyHomeServiceCase
=
import
(
'../../components/home/serviceCase.vue'
/* webpackChunkName: "components/home-service-case" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAboutContact
=
import
(
'../../components/about/contact.vue'
/* webpackChunkName: "components/about-contact" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAboutCulture
=
import
(
'../../components/about/culture.vue'
/* webpackChunkName: "components/about-culture" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAboutDetail
=
import
(
'../../components/about/detail.vue'
/* webpackChunkName: "components/about-detail" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAboutIntroduce
=
import
(
'../../components/about/introduce.vue'
/* webpackChunkName: "components/about-introduce" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAboutNews
=
import
(
'../../components/about/news.vue'
/* webpackChunkName: "components/about-news" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyAboutTabNav
=
import
(
'../../components/about/tabNav.vue'
/* webpackChunkName: "components/about-tab-nav" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
export
const
LazyServicesTab
=
import
(
'../../components/services/tab.vue'
/* webpackChunkName: "components/services-tab" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
.nuxt/components/plugin.js
浏览文件 @
8ac3fd9f
...
...
@@ -5,12 +5,6 @@ const components = {
Foot
:
()
=>
import
(
'../../components/Foot.vue'
/* webpackChunkName: "components/foot" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
Head
:
()
=>
import
(
'../../components/Head.vue'
/* webpackChunkName: "components/head" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
RightAside
:
()
=>
import
(
'../../components/RightAside.vue'
/* webpackChunkName: "components/right-aside" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AboutContact
:
()
=>
import
(
'../../components/about/contact.vue'
/* webpackChunkName: "components/about-contact" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AboutCulture
:
()
=>
import
(
'../../components/about/culture.vue'
/* webpackChunkName: "components/about-culture" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AboutDetail
:
()
=>
import
(
'../../components/about/detail.vue'
/* webpackChunkName: "components/about-detail" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AboutIntroduce
:
()
=>
import
(
'../../components/about/introduce.vue'
/* webpackChunkName: "components/about-introduce" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AboutNews
:
()
=>
import
(
'../../components/about/news.vue'
/* webpackChunkName: "components/about-news" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AboutTabNav
:
()
=>
import
(
'../../components/about/tabNav.vue'
/* webpackChunkName: "components/about-tab-nav" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AlumnusParty
:
()
=>
import
(
'../../components/alumnus/party.vue'
/* webpackChunkName: "components/alumnus-party" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AlumnusTabNav
:
()
=>
import
(
'../../components/alumnus/tabNav.vue'
/* webpackChunkName: "components/alumnus-tab-nav" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
HomeAlumniStories
:
()
=>
import
(
'../../components/home/alumniStories.vue'
/* webpackChunkName: "components/home-alumni-stories" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
...
...
@@ -21,6 +15,12 @@ const components = {
HomeOpenClass
:
()
=>
import
(
'../../components/home/openClass.vue'
/* webpackChunkName: "components/home-open-class" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
HomeProjectNotice
:
()
=>
import
(
'../../components/home/projectNotice.vue'
/* webpackChunkName: "components/home-project-notice" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
HomeServiceCase
:
()
=>
import
(
'../../components/home/serviceCase.vue'
/* webpackChunkName: "components/home-service-case" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AboutContact
:
()
=>
import
(
'../../components/about/contact.vue'
/* webpackChunkName: "components/about-contact" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AboutCulture
:
()
=>
import
(
'../../components/about/culture.vue'
/* webpackChunkName: "components/about-culture" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AboutDetail
:
()
=>
import
(
'../../components/about/detail.vue'
/* webpackChunkName: "components/about-detail" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AboutIntroduce
:
()
=>
import
(
'../../components/about/introduce.vue'
/* webpackChunkName: "components/about-introduce" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AboutNews
:
()
=>
import
(
'../../components/about/news.vue'
/* webpackChunkName: "components/about-news" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
AboutTabNav
:
()
=>
import
(
'../../components/about/tabNav.vue'
/* webpackChunkName: "components/about-tab-nav" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
)),
ServicesTab
:
()
=>
import
(
'../../components/services/tab.vue'
/* webpackChunkName: "components/services-tab" */
).
then
(
c
=>
wrapFunctional
(
c
.
default
||
c
))
}
...
...
.nuxt/components/readme.md
浏览文件 @
8ac3fd9f
...
...
@@ -9,12 +9,6 @@ You can directly use them in pages and other components without the need to impo
-
`<Foot>`
|
`<foot>`
(components/Foot.vue)
-
`<Head>`
|
`<head>`
(components/Head.vue)
-
`<RightAside>`
|
`<right-aside>`
(components/RightAside.vue)
-
`<AboutContact>`
|
`<about-contact>`
(components/about/contact.vue)
-
`<AboutCulture>`
|
`<about-culture>`
(components/about/culture.vue)
-
`<AboutDetail>`
|
`<about-detail>`
(components/about/detail.vue)
-
`<AboutIntroduce>`
|
`<about-introduce>`
(components/about/introduce.vue)
-
`<AboutNews>`
|
`<about-news>`
(components/about/news.vue)
-
`<AboutTabNav>`
|
`<about-tab-nav>`
(components/about/tabNav.vue)
-
`<AlumnusParty>`
|
`<alumnus-party>`
(components/alumnus/party.vue)
-
`<AlumnusTabNav>`
|
`<alumnus-tab-nav>`
(components/alumnus/tabNav.vue)
-
`<HomeAlumniStories>`
|
`<home-alumni-stories>`
(components/home/alumniStories.vue)
...
...
@@ -25,4 +19,10 @@ You can directly use them in pages and other components without the need to impo
-
`<HomeOpenClass>`
|
`<home-open-class>`
(components/home/openClass.vue)
-
`<HomeProjectNotice>`
|
`<home-project-notice>`
(components/home/projectNotice.vue)
-
`<HomeServiceCase>`
|
`<home-service-case>`
(components/home/serviceCase.vue)
-
`<AboutContact>`
|
`<about-contact>`
(components/about/contact.vue)
-
`<AboutCulture>`
|
`<about-culture>`
(components/about/culture.vue)
-
`<AboutDetail>`
|
`<about-detail>`
(components/about/detail.vue)
-
`<AboutIntroduce>`
|
`<about-introduce>`
(components/about/introduce.vue)
-
`<AboutNews>`
|
`<about-news>`
(components/about/news.vue)
-
`<AboutTabNav>`
|
`<about-tab-nav>`
(components/about/tabNav.vue)
-
`<ServicesTab>`
|
`<services-tab>`
(components/services/tab.vue)
.nuxt/vetur/tags.json
浏览文件 @
8ac3fd9f
...
...
@@ -8,24 +8,6 @@
"RightAside"
:
{
"description"
:
"Auto imported from components/RightAside.vue"
},
"AboutContact"
:
{
"description"
:
"Auto imported from components/about/contact.vue"
},
"AboutCulture"
:
{
"description"
:
"Auto imported from components/about/culture.vue"
},
"AboutDetail"
:
{
"description"
:
"Auto imported from components/about/detail.vue"
},
"AboutIntroduce"
:
{
"description"
:
"Auto imported from components/about/introduce.vue"
},
"AboutNews"
:
{
"description"
:
"Auto imported from components/about/news.vue"
},
"AboutTabNav"
:
{
"description"
:
"Auto imported from components/about/tabNav.vue"
},
"AlumnusParty"
:
{
"description"
:
"Auto imported from components/alumnus/party.vue"
},
...
...
@@ -56,6 +38,24 @@
"HomeServiceCase"
:
{
"description"
:
"Auto imported from components/home/serviceCase.vue"
},
"AboutContact"
:
{
"description"
:
"Auto imported from components/about/contact.vue"
},
"AboutCulture"
:
{
"description"
:
"Auto imported from components/about/culture.vue"
},
"AboutDetail"
:
{
"description"
:
"Auto imported from components/about/detail.vue"
},
"AboutIntroduce"
:
{
"description"
:
"Auto imported from components/about/introduce.vue"
},
"AboutNews"
:
{
"description"
:
"Auto imported from components/about/news.vue"
},
"AboutTabNav"
:
{
"description"
:
"Auto imported from components/about/tabNav.vue"
},
"ServicesTab"
:
{
"description"
:
"Auto imported from components/services/tab.vue"
}
...
...
components/Foot.vue
浏览文件 @
8ac3fd9f
...
...
@@ -29,6 +29,13 @@
<div
class=
"txt"
>
微信公众号
</div>
</div>
</div>
<div
class=
"right-content"
>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley/image.png"
alt=
""
class=
"code"
>
<!--
<div
class=
"tips-txt"
>
<img
src=
"https://zws-imgs-pub.ezijing.com/static/public/184235d9f6edbb39d52fc6f77339ff5b.png"
alt=
""
>
<div
class=
"txt"
>
微信公众号2
</div>
</div>
-->
</div>
</div>
<!--
<div
class=
"links"
>
友情链接:中国人民银行 中国涉外监管网 中国银行协会 中国证券投资基金业协会
...
...
components/Head.vue
浏览文件 @
8ac3fd9f
...
...
@@ -195,14 +195,14 @@
path
:
'/services/major'
},
{
name
:
'
新职业
'
,
name
:
'
产业学院
'
,
isShow
:
false
,
path
:
'/services/
job
'
path
:
'/services/
college
'
},
{
name
:
'
产业学院
'
,
name
:
'
新职业
'
,
isShow
:
false
,
path
:
'/services/
college
'
path
:
'/services/
job
'
},
{
name
:
'高质量实习就业服务'
,
...
...
components/about/culture.vue
浏览文件 @
8ac3fd9f
...
...
@@ -77,7 +77,7 @@ export default {
width
:
1000px
;
height
:
552px
;
background
:
#AA1941
;
padding
:
51px
10
0px
;
padding
:
25px
5
0px
;
box-sizing
:
border-box
;
video
{
width
:
100%
;
...
...
components/about/detail.vue
浏览文件 @
8ac3fd9f
...
...
@@ -100,9 +100,10 @@ export default {
font-size
:
32px
;
font-weight
:
bold
;
color
:
#141414
;
height
:
62px
;
//
height: 62px;
border-bottom
:
1px
solid
#E6E6E6
;
line-height
:
100%
;
// line-height: 100%;
padding-bottom
:
10px
;
}
.article-content
{
padding-top
:
25px
;
...
...
components/about/news.vue
浏览文件 @
8ac3fd9f
...
...
@@ -71,6 +71,7 @@ export default {
cursor
:
pointer
;
&
:hover
{
.right-con
{
background
:
rgba
(
241
,
241
,
241
,
0
.6
);
.text
{
color
:
#141414
;
}
...
...
@@ -83,7 +84,8 @@ export default {
}
.right-con
{
width
:
550px
;
margin-left
:
30px
;
margin-left
:
15px
;
padding-left
:
15px
;
.time
{
font-size
:
16px
;
font-weight
:
300
;
...
...
components/home/alumniStories.vue
浏览文件 @
8ac3fd9f
...
...
@@ -34,7 +34,7 @@ export default {
autoplay
:
true
,
delay
:
3000
,
loop
:
true
,
slidesPerView
:
4
,
slidesPerView
:
'auto'
,
centeredSlides
:
true
,
spaceBetween
:
20
,
on
:
{
...
...
@@ -124,10 +124,13 @@ export default {
}
.swiper-content
{
padding-top
:
37px
;
// overflow: auto;
// width: 100%;
.swiper-slide
{
position
:
relative
;
width
:
388px
;
height
:
244px
;
margin-top
:
10px
;
.text
{
position
:
absolute
;
bottom
:
0
;
...
...
@@ -148,6 +151,16 @@ export default {
width
:
100%
;
}
}
.swiper-slide-active
{
width
:
423px
;
height
:
266px
;
margin-top
:
0
;
img
{
width
:
100%
;
height
:
100%
;
display
:
block
;
}
}
}
}
.scale
{
...
...
components/home/banner.vue
浏览文件 @
8ac3fd9f
...
...
@@ -22,7 +22,7 @@
swiperOption
:
{
speed
:
400
,
autoplay
:
true
,
delay
:
30
00
,
delay
:
45
00
,
observer
:
true
,
observerParent
:
true
,
navigation
:
{
...
...
components/home/headmasterMsg.vue
浏览文件 @
8ac3fd9f
...
...
@@ -147,4 +147,4 @@ export default {
}
}
}
</
style
>
\ No newline at end of file
</
style
>
\ No newline at end of file
components/home/projectNotice.vue
浏览文件 @
8ac3fd9f
...
...
@@ -134,6 +134,7 @@ export default {
.list
{
width
:
378px
;
margin-left
:
60px
;
transform
:
translateY
(
-15px
);
.li
{
display
:
flex
;
align-items
:
center
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论