提交 6438f24d 编写于 作者: guangjun.yang's avatar guangjun.yang

添加单位天

上级 34d81ba2
......@@ -11,7 +11,7 @@
<!-- <p class="desc-2">完成人数 8860 | 参与人数 101</p> -->
</div>
<div class="ratio">
<p class="desc-1">{{(item.costTime || 0).toFixed(1) }}</p>
<p class="desc-1">{{(item.costTime || 0).toFixed(1) }}</p>
<p class="desc-2">完成天数</p>
</div>
</li>
......
......@@ -9,7 +9,7 @@
</div>
<div class="content">
<span class="desc-1">{{item.subName}}</span>
<span class="desc-2">完成人数 {{item.certCount}} | 参与人数 {{item.joinCount}}</span>
<span class="desc-2">{{certFlag ? '获证人数' : '完成人数'}} {{item.certCount}} | 参与人数 {{item.joinCount}}</span>
</div>
<div class="ratio">
<span class="desc-1">{{(item.certRate * 100).toFixed(0)}}%</span>
......
......@@ -92,17 +92,17 @@ export default {
}
},
created() {
if (process.client) {
if(this.$route && this.$route.query) {
let cQuery = this.$route.query
this.queryGDParams.projectId = cQuery.projectId || '';
this.queryGDParams.regionId = cQuery.regionId || '';
let hospitalIdList = cQuery.hospitalIdList || ''
this.queryGDParams.hospitalIdList = hospitalIdList && hospitalIdList.split(',') || [];
cookies.set("token", cQuery.token || '');
this.getGeneralExam(this.queryGDParams);
}
}
// if (process.client) {
// if(this.$route && this.$route.query) {
// let cQuery = this.$route.query
// this.queryGDParams.projectId = cQuery.projectId || '';
// this.queryGDParams.regionId = cQuery.regionId || '';
// let hospitalIdList = cQuery.hospitalIdList || ''
// this.queryGDParams.hospitalIdList = hospitalIdList && hospitalIdList.split(',') || [];
// cookies.set("token", cQuery.token || '');
// this.getGeneralExam(this.queryGDParams);
// }
// }
},
mounted() {
......
......@@ -25,12 +25,12 @@
<ChartColumnStack :echartsData="echartsData"></ChartColumnStack>
<CommonSplitLine></CommonSplitLine>
<CommonTitle title="项目情况排名"></CommonTitle>
<RankingList :rankList="(allData && allData.studyRank)"></RankingList>
<ShowAll @action="gotoPage('/rankedu')"></ShowAll>
<RankingList :certFlag="projectInfo.certFlag" :rankList="(allData && allData.studyRank)"></RankingList>
<ShowAll v-show="allData && allData.studyRank && allData.studyRank.length > 5" @action="gotoPage('/rankedu')"></ShowAll>
<CommonSplitLine></CommonSplitLine>
<CommonTitleWithWhat @tipsClick="tipsRankingItemClick" title="完成天数排名"></CommonTitleWithWhat>
<RankingItemDays :rankList="(allData && allData.costRank)"></RankingItemDays>
<ShowAll @action="gotoPage('/rankdays')"></ShowAll>
<ShowAll v-show="allData && allData.costRank && allData.costRank.length > 5" @action="gotoPage('/rankdays')"></ShowAll>
</div>
<div v-show="isSingleOrg">
<CommonTitle title="培训机构情况"></CommonTitle>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册