Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-learning-report
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
com.pica.cloud.education.frontend
pica-learning-report
提交
ed8710d5
提交
ed8710d5
编写于
12月 10, 2019
作者:
guangjun.yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
添加空白页面等
上级
679fe18d
变更
7
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
63 行增加
和
8 行删除
+63
-8
no-content.png
assets/images/no-content.png
+0
-0
chart-pie-edu.vue
components/bussiness/charts/chart-pie-edu.vue
+2
-2
no-content.vue
components/bussiness/no-content.vue
+47
-0
org-doctor-list.vue
components/bussiness/org-doctor-list.vue
+5
-0
ranking-item-days.vue
components/bussiness/ranking-item-days.vue
+1
-1
index.vue
pages/index.vue
+7
-4
klg-point.vue
pages/klg-point.vue
+1
-1
未找到文件。
assets/images/no-content.png
0 → 100755
浏览文件 @
ed8710d5
921 字节
components/bussiness/charts/chart-pie-edu.vue
浏览文件 @
ed8710d5
...
...
@@ -43,8 +43,8 @@ export default {
this
.
chartWidth
=
Math
.
ceil
(
clientWidth
*
0.90
)
+
'px'
;
console
.
log
(
'this.chartWidth'
,
this
.
chartWidth
);
}
this
.
handlePieData
(
newValue
);
this
.
drawPie
();
this
.
handlePieData
(
newValue
);
this
.
drawPie
();
},
deep
:
true
}
...
...
components/bussiness/no-content.vue
0 → 100644
浏览文件 @
ed8710d5
<
template
>
<!-- 专项合作无内容 -->
<section
class=
"nc-container"
>
<img
class=
"nc-container-img"
src=
"../../assets/images/no-content.png"
>
<span
class=
"nc-container-text"
>
暂无内容
</span>
</section>
</
template
>
<
script
>
export
default
{
name
:
"no-content"
,
data
()
{
return
{};
}
};
</
script
>
<
style
lang=
"scss"
scoped
>
// @import "../../style/mixin";
.nc-container
{
display
:
flex
;
width
:
100%
;
flex-direction
:
column
;
justify-content
:
center
;
align-content
:
center
;
margin-top
:
20px
;
margin-bottom
:
20px
;
text-align
:
center
;
// margin: 0 auto;
&
-img
{
margin-left
:
100px
;
width
:
150px
;
height
:
150px
;
}
&
-text
{
height
:
21px
;
line-height
:
21px
;
font-size
:
15px
;
font-weight
:
400
;
color
:
rgba
(
153
,
153
,
153
,
1
);
}
}
</
style
>
components/bussiness/org-doctor-list.vue
浏览文件 @
ed8710d5
...
...
@@ -27,11 +27,16 @@
<!--
<span>
成绩
{{
item
.
score
}}
分
</span>
-->
</li>
</ul>
<NoContent
v-show=
"((cIndex === 0 && !certUserList.length) || (cIndex === 1 && !noCertUserList.length) || (cIndex === 2 && noJoinList.length))"
></NoContent>
</div>
</
template
>
<
script
>
import
NoContent
from
"@/components/bussiness/no-content"
;
export
default
{
components
:
{
NoContent
},
data
()
{
return
{
cIndex
:
0
,
...
...
components/bussiness/ranking-item-days.vue
浏览文件 @
ed8710d5
...
...
@@ -11,7 +11,7 @@
<!--
<p
class=
"desc-2"
>
完成人数 8860 | 参与人数 101
</p>
-->
</div>
<div
class=
"ratio"
>
<p
class=
"desc-1"
>
{{
item
.
costTime
}}
</p>
<p
class=
"desc-1"
>
{{
(
item
.
costTime
||
0
).
toFixed
(
1
)
}}
</p>
<p
class=
"desc-2"
>
完成天数
</p>
</div>
</li>
...
...
pages/index.vue
浏览文件 @
ed8710d5
...
...
@@ -254,8 +254,8 @@ export default {
// },
echartsData
:
null
,
analysisData
:
{
eduList
:
[]
,
titleList
:
[]
eduList
:
{
join
:
[],
finish
:
[]}
,
titleList
:
{
join
:
[],
finish
:
[]},
},
analysisEduData
:
[],
analysisTitleData
:
[],
...
...
@@ -608,16 +608,19 @@ export default {
},
analysisEduClick
(
index
)
{
// if(index === 0) {
// this.analysisEduData = this.analysisData.eduList && this.analysisData.eduList.join
// }
this
.
analysisEduData
=
this
.
analysisData
.
eduList
[
index
?
"finish"
:
"join"
];
]
||
[]
;
this
.
$forceUpdate
();
},
analysisTitleClick
(
index
)
{
this
.
analysisTitleData
=
this
.
analysisData
.
titleList
[
index
?
"finish"
:
"join"
];
]
||
[]
;
this
.
$forceUpdate
();
},
...
...
pages/klg-point.vue
浏览文件 @
ed8710d5
<
template
>
<section>
<CommonHeader
title=
"培训前后知识点掌握情况"
></CommonHeader>
<TipsInfo
:content=
"tipsContent"
></TipsInfo>
<TitleKLGPoint
:title=
"title"
></TitleKLGPoint>
<TipsInfo
:content=
"tipsContent"
></TipsInfo>
<ChartColumnHorizontalTCLong
:dataList=
"knowledgeEffectList"
class=
"mt-10"
></ChartColumnHorizontalTCLong>
<CommonNoMore></CommonNoMore>
</section>
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录