Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-professional-exam
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Culm
pica-professional-exam
提交
57992b97
提交
57992b97
编写于
3月 09, 2020
作者:
张平
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev-hotfix(3p)-0308' into 'release'
CME迭代优化-前端 code reviewer: 张平 CME迭代优化-前端 code reviewer: 张平 See merge request !7
上级
c1782f17
1575c194
变更
4
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
17 行增加
和
6 行删除
+17
-6
cell-list-detail.vue
src/components/business/cell-list-detail.vue
+1
-1
cell-list-item.vue
src/components/business/cell-list-item.vue
+1
-1
cme-step.vue
src/components/cme/cme-step.vue
+1
-1
merge-detail.vue
src/views/merge-detail.vue
+14
-3
未找到文件。
src/components/business/cell-list-detail.vue
浏览文件 @
57992b97
...
...
@@ -89,7 +89,7 @@ const actionMap = {
12
:
"再考一次"
,
13
:
"已通过"
,
14
:
"已完成"
,
15
:
"
去刷分
"
,
15
:
"
已通过
"
,
16
:
"未通过"
,
21
:
"去学习"
,
22
:
"继续学习"
,
...
...
src/components/business/cell-list-item.vue
浏览文件 @
57992b97
...
...
@@ -51,7 +51,7 @@ const actionMap = {
12
:
"再考一次"
,
13
:
"已通过"
,
14
:
"已完成"
,
15
:
"
去刷分
"
,
15
:
"
已通过
"
,
16
:
"未通过"
,
21
:
"去学习"
,
22
:
"继续学习"
,
...
...
src/components/cme/cme-step.vue
浏览文件 @
57992b97
...
...
@@ -74,7 +74,7 @@ export default {
default
:
""
},
projectId
:
{
type
:
String
,
type
:
String
|
Number
,
default
:
"1"
},
inScope
:
{
...
...
src/views/merge-detail.vue
浏览文件 @
57992b97
...
...
@@ -32,6 +32,7 @@
:subject=
"project.subject"
/>
<!-- 步骤条 -->
<div
ref=
"cmeStepRef"
>
<CmeStep
:currentProgress=
"project.currentProgress"
:studyProgress=
"project.studyProgress"
...
...
@@ -43,6 +44,7 @@
:certificateId=
"project.certificateId"
@
applicationCredit=
"applicationCredit"
/>
</div>
<!-- 简介和目录 -->
<div
class=
"intro-catalogue-container"
>
<div
id=
"content-title"
class=
"title"
:class=
"
{'fixed-title-1': (fixedFlag
&&
!isWeb), 'fixed-title-2': (fixedFlag
&&
isWeb)}">
...
...
@@ -410,8 +412,8 @@ export default {
_this
.
clientType
=
__isWeb
?
1
:
__isAndroid
?
2
:
3
;
}
// 先设置视频URL再显示视频组件 ------------ END
_this
.
project
=
res
.
data
;
if
(
_this
.
project
.
projectIntro
)
{
_this
.
textContent
=
_this
.
project
.
projectIntro
.
length
>
70
?
_this
.
project
.
projectIntro
.
slice
(
0
,
70
)
+
"..."
:
this
.
project
.
projectIntro
;
}
...
...
@@ -432,6 +434,15 @@ export default {
_this
.
premissionFlag
=
true
;
_this
.
permission
();
// 提示是否有机构和在申请范围内
}
// TODO Add by Anndy Yang
if
(
_this
.
project
.
currentProgress
==
2
)
{
this
.
$nextTick
(
()
=>
{
window
.
scrollTo
(
0
,
0
);
// window.scrollTo(0, this.$refs.cmeStepRef.offsetTop - 100);
// window.scrollTo(0, this.$refs.cmeStepRef.offsetTop - 100);
})
}
}
//_this.showLoading = false;
});
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录