Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-fi
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-fi
Commits
20e83da2
提交
20e83da2
authored
10月 28, 2022
作者:
matian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
updates
上级
b36414f5
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
69 行增加
和
4 行删除
+69
-4
base.css
src/assets/css/base.css
+1
-1
main.ts
src/main.ts
+3
-3
Knowledge.vue
src/modules/home/components/Knowledge.vue
+7
-0
Main.vue
src/modules/home/components/Main.vue
+51
-0
ProjectSystem.vue
src/modules/home/components/ProjectSystem.vue
+0
-0
Index.vue
src/modules/home/views/Index.vue
+7
-0
没有找到文件。
src/assets/css/base.css
浏览文件 @
20e83da2
...
...
@@ -78,7 +78,7 @@ textarea:focus {
body
{
min-width
:
375px
;
font-size
:
14px
;
background-color
:
#f
ff
;
background-color
:
#f
5f5f5
;
}
@media
(
min-width
:
768px
)
{
...
...
src/main.ts
浏览文件 @
20e83da2
...
...
@@ -4,8 +4,8 @@ import { createPinia } from 'pinia'
import
App
from
'./App.vue'
import
router
from
'./router'
//
import ElementPlus from 'element-plus'
//
import 'element-plus/dist/index.css'
import
ElementPlus
from
'element-plus'
import
'element-plus/dist/index.css'
// 公共css
import
'./assets/css/base.css'
...
...
@@ -24,6 +24,6 @@ modules({ router })
app
.
use
(
createPinia
())
app
.
use
(
router
)
//
app.use(ElementPlus)
app
.
use
(
ElementPlus
)
app
.
mount
(
'#app'
)
src/modules/home/components/Knowledge.vue
0 → 100644
浏览文件 @
20e83da2
<
script
setup
lang=
"ts"
></
script
>
<
template
>
<div></div>
</
template
>
<
style
lang=
"scss"
scoped
></
style
>
src/modules/home/components/Main.vue
0 → 100644
浏览文件 @
20e83da2
<
script
lang=
"ts"
setup
>
import
'swiper/css'
</
script
>
<
template
>
<div
class=
"main"
>
<div
class=
"main_con"
>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/fi/main1.png"
alt=
""
/>
<div
class=
"con_content"
>
清控紫荆金融保险研究院
&
清控紫荆金融保险学院,基于政策指导,通过汇聚清华等国内外高校、行业骨干企业、行业研究机构的科研资源与实践成果,打造国内顶尖、国际卓越的金融保险智库,达到“产学研”的深度融合;通过创立通晓金融保险理论与行业实务双方面的金融保险课题研发团队,针对金融保险不同领域、不同阶段的学习需求,为金融从业者提供专业学习契机、为金融机构培育高素质国际化人才。
</div>
</div>
<div
class=
"main_con1"
>
核心产品为紫荆教育专属版权产品,站在高起点、高站位、高规格的“三高”教育标准平台上,向社会和企业精
<br
/>
英人士教授与传承“格与质”、“道与术”、“欲与渔”的经营管理品格和能力,主打行业认证类、行业标准类
<br
/>
和定制专属类等三类金融职业类培育体系。
</div>
</div>
</
template
>
<
style
lang=
"scss"
scoped
>
.main
{
.main_con
{
width
:
1200px
;
margin
:
95px
auto
;
display
:
flex
;
justify-content
:
space-between
;
align-items
:
center
;
.con_content
{
background
:
#ffffff
;
position
:
relative
;
margin-left
:
-143px
;
z-index
:
100
;
font-size
:
20px
;
font-weight
:
400
;
line-height
:
40px
;
color
:
#333333
;
padding
:
69px
55px
62px
58px
;
}
}
.main_con1
{
height
:
308px
;
background
:
url('https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/fi/main2.png')
no-repeat
center
;
background-size
:
100%
100%
;
font-size
:
24px
;
font-weight
:
400
;
line-height
:
40px
;
color
:
#ffffff
;
text-align
:
center
;
padding-top
:
100px
;
box-sizing
:
border-box
;
}
}
</
style
>
src/modules/home/components/ProjectSystem.vue
0 → 100644
浏览文件 @
20e83da2
差异被折叠。
点击展开。
src/modules/home/views/Index.vue
浏览文件 @
20e83da2
<
script
setup
lang=
"ts"
>
import
Banner
from
'../components/Banner.vue'
import
Main
from
'../components/Main.vue'
import
ProjectSystem
from
'../components/ProjectSystem.vue'
import
Knowledge
from
'../components/Knowledge.vue'
import
Teacher
from
'../components/Teacher.vue'
import
Course
from
'../components/Course.vue'
import
Brand
from
'../components/Brand.vue'
...
...
@@ -7,6 +11,9 @@ import Brand from '../components/Brand.vue'
<
template
>
<Banner></Banner>
<Main></Main>
<ProjectSystem
/>
<Knowledge
/>
<Teacher></Teacher>
<Course></Course>
<Brand></Brand>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论