Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
L
learn-fdc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
learn-fdc
Commits
0344a91a
提交
0344a91a
authored
10月 19, 2022
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: 3个工作日 -> 10个工作日
上级
8d480ba5
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
38 行增加
和
34 行删除
+38
-34
Index.vue
src/modules/exam/exam/views/Index.vue
+2
-3
Index.vue
src/modules/notice/views/Index.vue
+36
-31
没有找到文件。
src/modules/exam/exam/views/Index.vue
浏览文件 @
0344a91a
...
@@ -29,8 +29,7 @@
...
@@ -29,8 +29,7 @@
<div
<div
class=
"card-body__btn"
class=
"card-body__btn"
@
click=
"startExam(item)"
@
click=
"startExam(item)"
v-if=
"item.status == 100 || item.status == 101 || item.status == 104"
v-if=
"item.status == 100 || item.status == 101 || item.status == 104"
>
>
开始考试
开始考试
</div>
</div>
<div
class=
"card-body__btn2"
@
click=
"startExam(item)"
v-if=
"item.status == 102"
>
继续考试
</div>
<div
class=
"card-body__btn2"
@
click=
"startExam(item)"
v-if=
"item.status == 102"
>
继续考试
</div>
...
@@ -54,7 +53,7 @@
...
@@ -54,7 +53,7 @@
3、进入考试系统后系统随机抓屏,离开或退出考试页面超过5次后系统将强制交卷
<br
/>
3、进入考试系统后系统随机抓屏,离开或退出考试页面超过5次后系统将强制交卷
<br
/>
4、题库随机组题,题型为:单选+多选+判断
<br
/>
4、题库随机组题,题型为:单选+多选+判断
<br
/>
5、提交试卷后即显示成绩,80分为通过,可获得本年度证书,低于80分则需重学重考
<br
/>
5、提交试卷后即显示成绩,80分为通过,可获得本年度证书,低于80分则需重学重考
<br
/>
6、考试通过后颁发电子证书,
3
个工作日内进入我的证书查看下载
6、考试通过后颁发电子证书,
10
个工作日内进入我的证书查看下载
</div>
</div>
<span
slot=
"footer"
class=
"dialog-footer"
>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
:disabled=
"!isRead"
type=
"primary"
@
click=
"goPage"
>
{{
noticeText
}}
</el-button>
<el-button
:disabled=
"!isRead"
type=
"primary"
@
click=
"goPage"
>
{{
noticeText
}}
</el-button>
...
...
src/modules/notice/views/Index.vue
浏览文件 @
0344a91a
...
@@ -11,12 +11,14 @@
...
@@ -11,12 +11,14 @@
<el-tooltip
:popper-class=
"`tip$
{index + 1}`" placement="top" effect="light">
<el-tooltip
:popper-class=
"`tip$
{index + 1}`" placement="top" effect="light">
<div
slot=
"content"
v-html=
"item.tips"
></div>
<div
slot=
"content"
v-html=
"item.tips"
></div>
<div
class=
"item"
>
<div
class=
"item"
>
<img
:src=
"item.img"
>
<img
:src=
"item.img"
/>
<div
class=
"text"
><span>
0
{{
index
+
1
}}
</span>
{{
item
.
title
}}
</div>
<div
class=
"text"
>
<span>
0
{{
index
+
1
}}
</span>
{{
item
.
title
}}
</div>
</div>
</div>
</el-tooltip>
</el-tooltip>
<div
class=
"line"
v-if=
"index !== applyList.length - 1"
>
<div
class=
"line"
v-if=
"index !== applyList.length - 1"
>
<img
src=
"https://webapp-pub.ezijing.com/project/fd/line.png"
>
<img
src=
"https://webapp-pub.ezijing.com/project/fd/line.png"
/
>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -28,7 +30,7 @@
...
@@ -28,7 +30,7 @@
<div
class=
"notice-list"
>
<div
class=
"notice-list"
>
<div
class=
"notice-list_item"
v-for=
"(item, index) in noticeList"
:key=
"index"
>
<div
class=
"notice-list_item"
v-for=
"(item, index) in noticeList"
:key=
"index"
>
<div
class=
"icon"
>
<div
class=
"icon"
>
<img
:src=
"item.icon"
alt=
""
>
<img
:src=
"item.icon"
alt=
""
/
>
</div>
</div>
<div
class=
"text"
v-html=
"item.text"
></div>
<div
class=
"text"
v-html=
"item.text"
></div>
</div>
</div>
...
@@ -95,7 +97,7 @@ export default {
...
@@ -95,7 +97,7 @@ export default {
},
},
{
{
icon
:
'https://webapp-pub.ezijing.com/project/fd/notice-text-icon7.png'
,
icon
:
'https://webapp-pub.ezijing.com/project/fd/notice-text-icon7.png'
,
text
:
'<span>证书发放:</span>电子证书,考试通过后
3
个工作日内进入我的证书查看下载'
text
:
'<span>证书发放:</span>电子证书,考试通过后
10
个工作日内进入我的证书查看下载'
}
}
]
]
}
}
...
@@ -103,7 +105,7 @@ export default {
...
@@ -103,7 +105,7 @@ export default {
}
}
</
script
>
</
script
>
<
style
lang=
"scss"
>
<
style
lang=
"scss"
>
.notice-box
{
.notice-box
{
.notice-title
{
.notice-title
{
font-size
:
16px
;
font-size
:
16px
;
line-height
:
27px
;
line-height
:
27px
;
...
@@ -127,40 +129,40 @@ export default {
...
@@ -127,40 +129,40 @@ export default {
color
:
#898989
;
color
:
#898989
;
margin-left
:
242px
;
margin-left
:
242px
;
}
}
.list-box
{
.list-box
{
display
:
flex
;
display
:
flex
;
// justify-content: center;
// justify-content: center;
padding-left
:
90px
;
padding-left
:
90px
;
}
}
.list
{
.list
{
display
:
flex
;
display
:
flex
;
.item
{
.item
{
img
{
img
{
width
:
80px
;
width
:
80px
;
display
:
block
;
display
:
block
;
margin-left
:
12px
;
margin-left
:
12px
;
}
}
.text
{
.text
{
margin-top
:
18px
;
margin-top
:
18px
;
font-size
:
16px
;
font-size
:
16px
;
line-height
:
100%
;
line-height
:
100%
;
color
:
#424242
;
color
:
#424242
;
span
{
span
{
font-size
:
22px
;
font-size
:
22px
;
color
:
#
A
81840
;
color
:
#
a
81840
;
font-weight
:
bold
;
font-weight
:
bold
;
transform
:
translateY
(
-5px
);
transform
:
translateY
(
-5px
);
}
}
}
}
}
}
.line
{
.line
{
padding
:
37px
10px
;
padding
:
37px
10px
;
}
}
}
}
}
}
.notice
{
.notice
{
margin-top
:
67px
;
margin-top
:
67px
;
img
{
img
{
// margin-left: 20px;
// margin-left: 20px;
}
}
.notice__title
{
.notice__title
{
...
@@ -170,53 +172,56 @@ export default {
...
@@ -170,53 +172,56 @@ export default {
line-height
:
100%
;
line-height
:
100%
;
font-weight
:
bold
;
font-weight
:
bold
;
}
}
.notice__content
{
.notice__content
{
font-size
:
16px
;
font-size
:
16px
;
line-height
:
34px
;
line-height
:
34px
;
color
:
rgba
(
137
,
137
,
137
,
1
);
color
:
rgba
(
137
,
137
,
137
,
1
);
margin-left
:
46px
;
margin-left
:
46px
;
font-weight
:
bold
;
font-weight
:
bold
;
span
{
span
{
color
:
rgba
(
102
,
102
,
102
,
1
);
color
:
rgba
(
102
,
102
,
102
,
1
);
font-weight
:
normal
;
font-weight
:
normal
;
}
}
}
}
}
}
}
}
.tip1
,
.tip3
,
.tip5
{
.tip1
,
.tip3
,
.tip5
{
border
:
1px
solid
rgba
(
169
,
31
,
59
,
1
)
!
important
;
border
:
1px
solid
rgba
(
169
,
31
,
59
,
1
)
!
important
;
.popper__arrow
{
.popper__arrow
{
border-top-color
:
rgba
(
169
,
31
,
59
,
1
)
!
important
;
border-top-color
:
rgba
(
169
,
31
,
59
,
1
)
!
important
;
}
}
}
}
.tip2
,
.tip4
{
.tip2
,
border
:
1px
solid
#092E8F
!
important
;
.tip4
{
.popper__arrow
{
border
:
1px
solid
#092e8f
!
important
;
border-top-color
:
#092E8F
!
important
;
.popper__arrow
{
border-top-color
:
#092e8f
!
important
;
}
}
}
}
.notice-list
{
.notice-list
{
.notice-list_item
{
.notice-list_item
{
display
:
flex
;
display
:
flex
;
align-items
:
center
;
align-items
:
center
;
margin-bottom
:
30px
;
margin-bottom
:
30px
;
.icon
{
.icon
{
width
:
20px
;
width
:
20px
;
display
:
flex
;
display
:
flex
;
justify-content
:
center
;
justify-content
:
center
;
margin-left
:
20px
;
margin-left
:
20px
;
}
}
img
{
img
{
// width: 13px;
// width: 13px;
}
}
.text
{
.text
{
margin-left
:
10px
;
margin-left
:
10px
;
font-size
:
16px
;
font-size
:
16px
;
color
:
rgba
(
102
,
102
,
102
,
1
);
color
:
rgba
(
102
,
102
,
102
,
1
);
span
{
span
{
color
:
rgba
(
51
,
51
,
51
,
1
)
color
:
rgba
(
51
,
51
,
51
,
1
)
;
}
}
i
{
i
{
color
:
rgba
(
9
,
46
,
143
,
1
);
color
:
rgba
(
9
,
46
,
143
,
1
);
font-size
:
24px
;
font-size
:
24px
;
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论