Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
T
transport-show-h5
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
transport-show-h5
Commits
7a33f06c
提交
7a33f06c
authored
8月 03, 2020
作者:
lihuihui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改能力自测样式,能力自测结果页添加按钮
上级
74d520c4
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
33 行增加
和
8 行删除
+33
-8
webpack.client.conf.js
build/webpack.client.conf.js
+1
-0
ability-r-btn.png
src/assets/images/ability-r-btn.png
+0
-0
ability-r-btn.png
src/modules/exam-module/assets/images/ability-r-btn.png
+0
-0
ExamEnd.vue
src/modules/exam-module/src/ExamEnd.vue
+27
-4
questionsDetails.vue
src/pages/my/questionsDetails.vue
+4
-4
index.vue
src/pages/pay/index.vue
+1
-0
没有找到文件。
build/webpack.client.conf.js
浏览文件 @
7a33f06c
...
...
@@ -26,6 +26,7 @@ if ($GLOBAL.isDev === 'development') {
port
:
$GLOBAL
.
webConf
.
serverPort
,
disableHostCheck
:
false
,
host
:
$GLOBAL
.
webConf
.
domain
||
'localhost'
,
http2
:
false
,
https
:
$GLOBAL
.
webConf
.
isHttps
&&
{
key
:
fs
.
readFileSync
(
path
.
join
(
__dirname
,
'../static/cert/dev.ezijing.com.key'
)),
cert
:
fs
.
readFileSync
(
path
.
join
(
__dirname
,
'../static/cert/dev.ezijing.com.pem'
))
...
...
src/assets/images/ability-r-btn.png
0 → 100644
浏览文件 @
7a33f06c
5.0 KB
src/modules/exam-module/assets/images/ability-r-btn.png
0 → 100644
浏览文件 @
7a33f06c
5.0 KB
src/modules/exam-module/src/ExamEnd.vue
浏览文件 @
7a33f06c
...
...
@@ -31,12 +31,18 @@
<img
v-show=
"ratioNum >= 40 && ratioNum < 60"
src=
"../assets/images/mountain2.png"
alt=
""
>
<img
v-show=
"ratioNum >= 60 && ratioNum < 99"
src=
"../assets/images/mountain3.png"
alt=
""
>
<img
v-show=
"ratioNum == 100"
src=
"../assets/images/mountain4.png"
alt=
""
>
<div
v-if=
"ratioNum == 100"
class=
"txt"
>
成功近在眼前,再接再厉!
</div>
<div
v-else
class=
"txt"
>
您离成功还有一段距离,继续努力!
</div>
<
template
v-if=
"title != '能力自测'"
>
<div
v-if=
"ratioNum == 100"
class=
"txt"
>
成功近在眼前,再接再厉!
</div>
<div
v-else
class=
"txt"
>
您离成功还有一段距离,继续努力!
</div>
</
template
>
<
template
v-else
>
<div
class=
"txt"
style=
"text-align: left;"
>
您距离拿证还有一段距离,急速拿证推荐您使用VIP课程!
</div>
</
template
>
</div>
<div
class=
"nl-btn"
v-if=
"title == '能力自测'"
>
<div
class=
"btn"
@
click=
"goAbilityExam"
>
重做测试
</div>
<div
class=
"btn"
@
click=
"goCourse"
>
学习课程
</div>
<!-- <div class="btn" @click="goAbilityExam">重做测试</div>
<div class="btn" @click="goCourse">学习课程</div> -->
<div
class=
"new-btn"
@
click=
"goVip"
>
购买VIP服务
</div>
</div>
<div
class=
"card"
>
<div
class=
"tit"
>
答题卡:
</div>
...
...
@@ -175,6 +181,11 @@ export default {
}
},
methods
:
{
goVip
()
{
this
.
$router
.
push
({
path
:
'/pay'
})
},
goAbilityExam
()
{
this
.
$router
.
replace
({
path
:
'/exam/index'
,
...
...
@@ -463,6 +474,18 @@ export default {
.btn
:nth-child
(
2
)
{
margin-left
:
auto
;
}
.new-btn
{
width
:
3
.2rem
;
height
:
.9rem
;
background
:
#C62245
;
text-align
:
center
;
line-height
:
.9rem
;
color
:
#fff
;
font-size
:
.3rem
;
background
:
url(../assets/images/ability-r-btn.png)
;
background-size
:
100%
100%
;
margin
:
0
auto
;
}
}
.st-btn
{
width
:
100%
;
...
...
src/pages/my/questionsDetails.vue
浏览文件 @
7a33f06c
...
...
@@ -442,7 +442,7 @@ export default {
padding
:
.1rem
.2rem
;
font-size
:
.2rem
;
color
:
#fff
;
background
:
#
67A8FF
;
background
:
#
F47885
;
border-radius
:
.25rem
;
margin-left
:
.2rem
;
}
...
...
@@ -506,8 +506,8 @@ export default {
word-wrap
:break-word
;
}
.active
{
color
:
#
fff
;
background
:
#
67A8
FF
;
color
:
#
5F95DE
;
background
:
#
DDF1
FF
;
}
.active2
{
color
:
#fff
;
...
...
@@ -575,7 +575,7 @@ export default {
.btn
{
width
:
2
.4rem
;
height
:
.7rem
;
background
:
rgba
(
43
,
124
,
233
,
1
)
;
background
:
#C62245
;
border-radius
:
.12rem
;
text-align
:
center
;
line-height
:
.7rem
;
...
...
src/pages/pay/index.vue
浏览文件 @
7a33f06c
...
...
@@ -74,6 +74,7 @@ export default {
getOrderStatus
()
{
api
.
getOrderStatus
().
then
(
res
=>
{
this
.
orderStatus
=
res
.
status
console
.
log
(
this
.
orderStatus
)
if
(
this
.
orderStatus
===
1
)
{
this
.
orderStatusTime
&&
clearInterval
(
this
.
orderStatusTime
)
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论