提交 8a68543e 编写于 作者: guangjun.yang's avatar guangjun.yang

cmeType=2的项目定位问题

上级 3a8d43e8
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
:subject="project.subject" :subject="project.subject"
/> />
<!-- 步骤条 --> <!-- 步骤条 -->
<div v-if="project.cmeType == 1"> <div v-if="project.cmeType != 2">
<CmeStep <CmeStep
:currentProgress="project.currentProgress" :currentProgress="project.currentProgress"
:studyProgress="project.studyProgress" :studyProgress="project.studyProgress"
...@@ -355,8 +355,13 @@ export default { ...@@ -355,8 +355,13 @@ export default {
this.bgColor = "none"; this.bgColor = "none";
} }
this.fixedFlag = scrollTop > 270 ? true : false; this.fixedFlag = scrollTop > 300 ? true : false;
// this.fixedFlag = scrollTop > 300 ? true : false; // 中华医学会项目
if(this.project.cmeType == 2) {
this.fixedFlag = scrollTop > 200 ? true : false;
} else {
this.fixedFlag = scrollTop > 300 ? true : false;
}
this.tabFlag = scrollTop > h ? false : true; this.tabFlag = scrollTop > h ? false : true;
}, },
// token是否失效校验 // token是否失效校验
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册