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
提交
7484f2e4
提交
7484f2e4
编写于
12月 12, 2019
作者:
guangjun.yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
图表样式处理
上级
fc6e6ea9
变更
14
隐藏空白字符变更
内嵌
并排
正在显示
14 个修改的文件
包含
113 行增加
和
72 行删除
+113
-72
chart-column-horizontal-tc-long.vue
...ents/bussiness/charts/chart-column-horizontal-tc-long.vue
+30
-11
chart-column-horizontal-tc.vue
components/bussiness/charts/chart-column-horizontal-tc.vue
+1
-0
chart-column-stack.vue
components/bussiness/charts/chart-column-stack.vue
+22
-1
chart-column-vertical-score.vue
components/bussiness/charts/chart-column-vertical-score.vue
+1
-0
chart-column-vertical-tc.vue
components/bussiness/charts/chart-column-vertical-tc.vue
+1
-0
chart-column-vertical-times.vue
components/bussiness/charts/chart-column-vertical-times.vue
+1
-0
chart-column-vertical.vue
components/bussiness/charts/chart-column-vertical.vue
+1
-0
chart-pie-cert.vue
components/bussiness/charts/chart-pie-cert.vue
+3
-14
chart-pie-edu.vue
components/bussiness/charts/chart-pie-edu.vue
+23
-4
chart-pie-title.vue
components/bussiness/charts/chart-pie-title.vue
+24
-23
chart-pie.vue
components/bussiness/charts/chart-pie.vue
+4
-13
nuxt.config.js
nuxt.config.js
+1
-1
index.vue
pages/index.vue
+0
-1
klgpoint.vue
pages/klgpoint.vue
+1
-4
未找到文件。
components/bussiness/charts/chart-column-horizontal-tc-long.vue
浏览文件 @
7484f2e4
<!-- 柱状图-竖向 -->
<!-- 柱状图-竖向 -->
<
template
>
<
template
>
<div
class=
"chart-column-vtc"
>
<div>
<div
:id=
"id"
:style=
"
{width: chartWidth, height: chartHeight}">
</div>
<div
class=
"chart-column-vtc"
>
<div
:id=
"id"
:style=
"
{width: chartWidth, height: chartHeight}">
</div>
</div>
<CommonNoMore></CommonNoMore>
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
let
vm
=
null
;
let
vm
=
null
;
import
CommonNoMore
from
"@/components/common/common-no-more"
;
// let chartColumn = null;
// let chartColumn = null;
export
default
{
export
default
{
components
:
{
CommonNoMore
},
props
:
{
props
:
{
id
:
{
id
:
{
type
:
String
,
type
:
String
,
...
@@ -32,7 +39,7 @@ export default {
...
@@ -32,7 +39,7 @@ export default {
data
()
{
data
()
{
return
{
return
{
chartWidth
:
"100%"
,
chartWidth
:
"100%"
,
chartHeight
:
"
35
0px"
chartHeight
:
"
20
0px"
};
};
},
},
watch
:
{
watch
:
{
...
@@ -56,37 +63,40 @@ export default {
...
@@ -56,37 +63,40 @@ export default {
document
.
body
.
clientWidth
||
document
.
body
.
clientWidth
||
document
.
documentElement
.
clientWidth
;
document
.
documentElement
.
clientWidth
;
this
.
chartWidth
=
clientWidth
+
"px"
;
this
.
chartWidth
=
clientWidth
+
"px"
;
// this.chartHeight = 54 * 3 + "px";
this
.
chartHeight
=
53
*
this
.
dataList
.
length
+
"px"
;
this
.
chartHeight
=
43
*
this
.
dataList
.
length
+
"px"
;
this
.
drawColumn
(
yAxisData
,
series0Data
,
series1Data
);
this
.
drawColumn
(
yAxisData
,
series0Data
,
series1Data
);
}
}
// this.drawColumn(yAxisData, series0Data, series1Data);
},
},
deep
:
fals
e
deep
:
tru
e
}
}
},
},
created
()
{
created
()
{
if
(
process
.
client
)
{
// vm = this;
// this.drawColumn([], [], []);
}
},
},
mounted
()
{
mounted
()
{
vm
=
this
;
vm
=
this
;
},
},
methods
:
{
methods
:
{
// 画
// 画
drawColumn
(
yAxisData
,
series0Data
,
series1Data
)
{
drawColumn
(
yAxisData
,
series0Data
,
series1Data
)
{
let
chartColumn
=
this
.
$echarts
.
init
(
document
.
getElementById
(
this
.
id
));
let
chartColumn
=
this
.
$echarts
.
init
(
document
.
getElementById
(
this
.
id
));
// let chartColumn = this.$echarts.init(document.getElementById("myChart1"));
// 基于准备好的dom,初始化echarts实例
// 基于准备好的dom,初始化echarts实例
// 绘制图表
// 绘制图表
let
options
=
{
let
options
=
{
color
:
vm
.
colors
,
color
:
vm
.
colors
||
[]
,
tooltip
:
{
tooltip
:
{
trigger
:
"axis"
,
trigger
:
"axis"
,
axisPointer
:
{
axisPointer
:
{
// 坐标轴指示器,坐标轴触发有效
// 坐标轴指示器,坐标轴触发有效
type
:
"shadow"
// 默认为直线,可选为:'line' | 'shadow'
type
:
"shadow"
// 默认为直线,可选为:'line' | 'shadow'
}
},
formatter
:
"{b}<br/>{a0}: {c0}%<br/>{a1}: {c1}%"
},
},
legend
:
{
legend
:
{
show
:
false
,
show
:
false
,
...
@@ -112,6 +122,7 @@ export default {
...
@@ -112,6 +122,7 @@ export default {
xAxis
:
{
xAxis
:
{
axisTick
:
false
,
axisTick
:
false
,
type
:
"value"
,
type
:
"value"
,
minInterval
:
1
,
axisLabel
:
{
axisLabel
:
{
show
:
false
,
show
:
false
,
formatter
:
"{value}"
,
formatter
:
"{value}"
,
...
@@ -187,6 +198,14 @@ export default {
...
@@ -187,6 +198,14 @@ export default {
]
]
};
};
chartColumn
.
setOption
(
options
);
chartColumn
.
setOption
(
options
);
let
autoHeight
=
this
.
dataList
.
length
*
53
;
// counst.length为柱状图的条数,即数据长度。35为我给每个柱状图的高度,50为柱状图x轴内容的高度(大概的)。
chartColumn
.
getDom
().
style
.
height
=
autoHeight
+
"px"
;
chartColumn
.
getDom
().
childNodes
[
0
].
style
.
height
=
autoHeight
+
"px"
;
chartColumn
.
getDom
().
childNodes
[
0
].
childNodes
[
0
].
setAttribute
(
"height"
,
autoHeight
);
chartColumn
.
getDom
().
childNodes
[
0
].
childNodes
[
0
].
style
.
height
=
autoHeight
+
"px"
;
chartColumn
.
resize
();
},
},
shortName
:
function
(
value
,
length
=
5
,
append
=
'...'
)
{
shortName
:
function
(
value
,
length
=
5
,
append
=
'...'
)
{
if
(
value
&&
value
.
length
>
length
)
{
if
(
value
&&
value
.
length
>
length
)
{
...
...
components/bussiness/charts/chart-column-horizontal-tc.vue
浏览文件 @
7484f2e4
...
@@ -108,6 +108,7 @@ export default {
...
@@ -108,6 +108,7 @@ export default {
max
:
100
,
max
:
100
,
axisTick
:
false
,
axisTick
:
false
,
type
:
"value"
,
type
:
"value"
,
minInterval
:
1
,
axisLabel
:
{
axisLabel
:
{
formatter
:
"{value}%"
,
formatter
:
"{value}%"
,
textStyle
:
{
textStyle
:
{
...
...
components/bussiness/charts/chart-column-stack.vue
浏览文件 @
7484f2e4
...
@@ -139,6 +139,9 @@ export default {
...
@@ -139,6 +139,9 @@ export default {
color
:
"#676869"
color
:
"#676869"
},
},
xAxis
:
{
xAxis
:
{
// min: 0,
// max: 'dataMax',
minInterval
:
1
,
axisTick
:
false
,
axisTick
:
false
,
type
:
"value"
,
type
:
"value"
,
axisLabel
:
{
axisLabel
:
{
...
@@ -152,6 +155,15 @@ export default {
...
@@ -152,6 +155,15 @@ export default {
color
:
"#efefef"
,
color
:
"#efefef"
,
width
:
1
width
:
1
}
}
},
//设置网格线颜色
splitLine
:
{
show
:
true
,
lineStyle
:
{
color
:
[
"#efefef"
],
width
:
1
,
type
:
"solid"
}
}
}
},
},
yAxis
:
{
yAxis
:
{
...
@@ -174,7 +186,16 @@ export default {
...
@@ -174,7 +186,16 @@ export default {
color
:
"#efefef"
,
color
:
"#efefef"
,
width
:
1
width
:
1
}
}
}
},
// //设置网格线颜色
// splitLine: {
// show: true,
// lineStyle: {
// color: ["#efefef"],
// width: 1,
// type: "solid"
// }
// }
},
},
series
:
vm
.
seriesData
series
:
vm
.
seriesData
// series: [
// series: [
...
...
components/bussiness/charts/chart-column-vertical-score.vue
浏览文件 @
7484f2e4
...
@@ -64,6 +64,7 @@ export default {
...
@@ -64,6 +64,7 @@ export default {
yAxis
:
{
yAxis
:
{
axisTick
:
false
,
axisTick
:
false
,
type
:
"value"
,
type
:
"value"
,
minInterval
:
1
,
axisLabel
:
{
axisLabel
:
{
formatter
:
"{value}"
,
formatter
:
"{value}"
,
textStyle
:
{
textStyle
:
{
...
...
components/bussiness/charts/chart-column-vertical-tc.vue
浏览文件 @
7484f2e4
...
@@ -110,6 +110,7 @@ export default {
...
@@ -110,6 +110,7 @@ export default {
yAxis: {
yAxis: {
axisTick: false,
axisTick: false,
type: "value",
type: "value",
minInterval: 1,
axisLabel: {
axisLabel: {
formatter: "{value}%",
formatter: "{value}%",
textStyle: {
textStyle: {
...
...
components/bussiness/charts/chart-column-vertical-times.vue
浏览文件 @
7484f2e4
...
@@ -66,6 +66,7 @@ export default {
...
@@ -66,6 +66,7 @@ export default {
yAxis
:
{
yAxis
:
{
axisTick
:
false
,
axisTick
:
false
,
type
:
"value"
,
type
:
"value"
,
minInterval
:
1
,
axisLabel
:
{
axisLabel
:
{
formatter
:
"{value}"
,
formatter
:
"{value}"
,
textStyle
:
{
textStyle
:
{
...
...
components/bussiness/charts/chart-column-vertical.vue
浏览文件 @
7484f2e4
...
@@ -66,6 +66,7 @@ export default {
...
@@ -66,6 +66,7 @@ export default {
yAxis
:
{
yAxis
:
{
axisTick
:
false
,
axisTick
:
false
,
type
:
"value"
,
type
:
"value"
,
minInterval
:
1
,
axisLabel
:
{
axisLabel
:
{
formatter
:
"{value}"
,
formatter
:
"{value}"
,
textStyle
:
{
textStyle
:
{
...
...
components/bussiness/charts/chart-pie-cert.vue
浏览文件 @
7484f2e4
...
@@ -62,22 +62,10 @@ export default {
...
@@ -62,22 +62,10 @@ export default {
// 绘制图表
// 绘制图表
let
options
=
{
let
options
=
{
color
:
echartColors
,
color
:
echartColors
,
// title: {
// text: "总人数: 1,339,220人",
// // subtext: "纯属虚构",
// top: '20%',
// left: '60%',
// textStyle: {
// fontSize: 12,
// fontWeight: "bolder",
// color: "#000000"
// }
// },
tooltip
:
{
tooltip
:
{
trigger
:
"item"
,
trigger
:
"item"
,
formatter
:
"{a} <br/>{b} : {c} ({d}%)"
formatter
:
"{a} <br/>{b} : {c} ({d}%)"
},
},
legend
:
{
legend
:
{
type
:
"scroll"
,
type
:
"scroll"
,
orient
:
"vertical"
,
orient
:
"vertical"
,
...
@@ -98,12 +86,13 @@ export default {
...
@@ -98,12 +86,13 @@ export default {
},
},
series
:
[
series
:
[
{
{
name
:
"证书分布情况"
,
name
:
"证书分布情况
1
"
,
type
:
"pie"
,
type
:
"pie"
,
label
:
{
label
:
{
position
:
"inner"
,
position
:
"inner"
,
formatter
:
function
(
config
)
{
formatter
:
function
(
config
)
{
return
`
${
config
.
percent
}
%`
;
// alert(JSON.stringify(config))
return
`
${
config
}
%`
;
}
}
},
},
radius
:
"65%"
,
radius
:
"65%"
,
...
...
components/bussiness/charts/chart-pie-edu.vue
浏览文件 @
7484f2e4
...
@@ -28,7 +28,8 @@ export default {
...
@@ -28,7 +28,8 @@ export default {
chartHeight
:
"1000px"
,
chartHeight
:
"1000px"
,
handledData
:
{},
handledData
:
{},
legendData
:
[],
legendData
:
[],
seriesData
:
{}
seriesData
:
{},
count
:
0
// 重置颜色,图标如果需要颜色,优先从用户提供的colors中依次提取,用户不提供,则根据默认的颜色进行选取
// 重置颜色,图标如果需要颜色,优先从用户提供的colors中依次提取,用户不提供,则根据默认的颜色进行选取
};
};
},
},
...
@@ -63,6 +64,11 @@ export default {
...
@@ -63,6 +64,11 @@ export default {
this
.
seriesData
=
pieData
.
map
(
item
=>
{
this
.
seriesData
=
pieData
.
map
(
item
=>
{
return
{
name
:
item
.
name
,
value
:
item
.
value
}
return
{
name
:
item
.
name
,
value
:
item
.
value
}
})
})
let
count
=
0
pieData
.
forEach
(
item
=>
{
count
+=
item
.
value
;
})
this
.
count
=
count
;
},
},
// 画饼图
// 画饼图
drawPie
()
{
drawPie
()
{
...
@@ -71,9 +77,21 @@ export default {
...
@@ -71,9 +77,21 @@ export default {
// 绘制图表
// 绘制图表
let
options
=
{
let
options
=
{
color
:
echartColors
,
color
:
echartColors
,
title
:
{
text
:
"总人数: "
+
vm
.
count
,
// subtext: "纯属虚构",
top
:
'10%'
,
left
:
'60%'
,
textStyle
:
{
fontSize
:
12
,
fontWeight
:
"bolder"
,
color
:
"#000000"
}
},
tooltip
:
{
tooltip
:
{
trigger
:
"item"
,
trigger
:
"item"
,
formatter
:
"{a} <br/>{b} : {c} ({d}%)"
// formatter: "{a}
<
br
/>
{
b
}
:
{
c
}
({
d
}
%
)
"
formatter: "
{
b
}{
c
}
人
"
},
},
legend: {
legend: {
...
@@ -83,7 +101,7 @@ export default {
...
@@ -83,7 +101,7 @@ export default {
itemWidth: 9,
itemWidth: 9,
itemHeight: 9,
itemHeight: 9,
borderRadius: 9,
borderRadius: 9,
top
:
'
1
0%'
,
top: '
2
0%',
left: '60%',
left: '60%',
bottom: 20,
bottom: 20,
data: vm.legendData, // ["
优秀证书
", "
及格证书
", "
未获证
"],
data: vm.legendData, // ["
优秀证书
", "
及格证书
", "
未获证
"],
...
@@ -104,7 +122,8 @@ export default {
...
@@ -104,7 +122,8 @@ export default {
label
:
{
label
:
{
position
:
"inner"
,
position
:
"inner"
,
formatter
:
function
(
config
)
{
formatter
:
function
(
config
)
{
return
`
${
config
.
percent
}
%`
;
// return `${config.percent}%`;
return
`
${
config
.
percent
.
toFixed
(
1
)}
%`
;
}
}
},
},
radius
:
"65%"
,
radius
:
"65%"
,
...
...
components/bussiness/charts/chart-pie-title.vue
浏览文件 @
7484f2e4
...
@@ -35,18 +35,12 @@ export default {
...
@@ -35,18 +35,12 @@ export default {
chartHeight
:
"1000px"
,
chartHeight
:
"1000px"
,
handledData
:
{},
handledData
:
{},
legendData
:
[],
legendData
:
[],
seriesData
:
{}
seriesData
:
{},
count
:
0
// 重置颜色,图标如果需要颜色,优先从用户提供的colors中依次提取,用户不提供,则根据默认的颜色进行选取
// 重置颜色,图标如果需要颜色,优先从用户提供的colors中依次提取,用户不提供,则根据默认的颜色进行选取
};
};
},
},
watch
:
{
watch
:
{
// pieData: {
// handler(newValue, oldValue) {
// this.handlePieData(newValue);
// this.drawPie();
// },
// deep: true
// },
dataList
:
{
dataList
:
{
handler
(
newValue
,
oldValue
)
{
handler
(
newValue
,
oldValue
)
{
if
(
process
.
client
)
{
if
(
process
.
client
)
{
...
@@ -77,6 +71,11 @@ export default {
...
@@ -77,6 +71,11 @@ export default {
this
.
seriesData
=
pieData
.
map
(
item
=>
{
this
.
seriesData
=
pieData
.
map
(
item
=>
{
return
{
name
:
item
.
name
,
value
:
item
.
value
};
return
{
name
:
item
.
name
,
value
:
item
.
value
};
});
});
let
count
=
0
pieData
.
forEach
(
item
=>
{
count
+=
item
.
value
;
})
this
.
count
=
count
;
},
},
// 画饼图
// 画饼图
drawPie
()
{
drawPie
()
{
...
@@ -85,31 +84,32 @@ export default {
...
@@ -85,31 +84,32 @@ export default {
// 绘制图表
// 绘制图表
let
options
=
{
let
options
=
{
color
:
echartColors
,
color
:
echartColors
,
//
title: {
title
:
{
// text: "总人数: 1,339,220人"
,
text
:
"总人数: "
+
vm
.
count
,
//
// subtext: "纯属虚构",
// subtext: "纯属虚构",
// top: '2
0%',
top
:
'1
0%'
,
//
left: '60%',
left
:
'60%'
,
//
textStyle: {
textStyle
:
{
//
fontSize: 12,
fontSize
:
12
,
//
fontWeight: "bolder",
fontWeight
:
"bolder"
,
//
color: "#000000"
color
:
"#000000"
//
}
}
//
},
},
tooltip
:
{
tooltip
:
{
trigger
:
"item"
,
trigger
:
"item"
,
formatter
:
"{a} <br/>{b} : {c} ({d}%)"
// formatter: "{a}
<
br
/>
{
b
}
:
{
c
}
({
d
}
%
)
"
formatter: "
{
b
}{
c
}
人
"
},
},
legend: {
legend: {
//
type: "scroll",
type: "
scroll
",
type: "
plain
", // 普通图例
type: "
plain
", // 普通图例
orient: "
vertical
",
orient: "
vertical
",
itemWidth: 9,
itemWidth: 9,
itemHeight: 9,
itemHeight: 9,
borderRadius: 20,
borderRadius: 20,
// orient:'horizontal',
// orient:'horizontal',
top
:
'
1
0%'
,
top: '
2
0%',
left: "
60
%
",
left: "
60
%
",
bottom: 20,
bottom: 20,
data: vm.legendData, // ["
优秀证书
", "
及格证书
", "
未获证
"],
data: vm.legendData, // ["
优秀证书
", "
及格证书
", "
未获证
"],
...
@@ -159,7 +159,8 @@ export default {
...
@@ -159,7 +159,8 @@ export default {
label
:
{
label
:
{
position
:
"inner"
,
position
:
"inner"
,
formatter
:
function
(
config
)
{
formatter
:
function
(
config
)
{
return
`
${
config
.
percent
}
%`
;
// return `${config.percent}%`;
return
`
${
config
.
percent
.
toFixed
(
1
)}
%`
;
}
}
},
},
radius
:
"65%"
,
radius
:
"65%"
,
...
...
components/bussiness/charts/chart-pie.vue
浏览文件 @
7484f2e4
...
@@ -67,20 +67,10 @@ export default {
...
@@ -67,20 +67,10 @@ export default {
// 绘制图表
// 绘制图表
options
=
{
options
=
{
color
:
echartColors
,
color
:
echartColors
,
// title: {
// text: "总人数: 1,339,220人",
// // subtext: "纯属虚构",
// top: '20%',
// left: '60%',
// textStyle: {
// fontSize: 12,
// fontWeight: "bolder",
// color: "#000000"
// }
// },
tooltip
:
{
tooltip
:
{
trigger
:
"item"
,
trigger
:
"item"
,
formatter
:
"{a} <br/>{b} : {c} ({d}%)"
// formatter: "{a}
<
br
/>
{
b
}
:
{
c
}
({
d
}
%
)
"
formatter: "
{
b
}{
c
}
人
"
},
},
legend: {
legend: {
...
@@ -109,7 +99,8 @@ export default {
...
@@ -109,7 +99,8 @@ export default {
label
:
{
label
:
{
position
:
"inner"
,
position
:
"inner"
,
formatter
:
function
(
config
)
{
formatter
:
function
(
config
)
{
return
`
${
config
.
percent
}
%`
;
// alert(JSON.stringify(config))
return
`
${
config
.
percent
.
toFixed
(
1
)}
%`
;
}
}
},
},
radius
:
"65%"
,
radius
:
"65%"
,
...
...
nuxt.config.js
浏览文件 @
7484f2e4
...
@@ -10,7 +10,7 @@ module.exports = {
...
@@ -10,7 +10,7 @@ module.exports = {
{
name
:
'viewport'
,
content
:
'width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, minimal-ui'
},
{
name
:
'viewport'
,
content
:
'width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, minimal-ui'
},
{
name
:
'screen-orientation'
,
content
:
'portrait'
},
{
name
:
'screen-orientation'
,
content
:
'portrait'
},
{
name
:
'apple-mobile-web-app-capable'
,
content
:
'yes'
},
{
name
:
'apple-mobile-web-app-capable'
,
content
:
'yes'
},
{
name
:
'format-detection'
,
content
:
'telephone=
yes
'
},
{
name
:
'format-detection'
,
content
:
'telephone=
no
'
},
{
name
:
'full-screen'
,
content
:
'yes'
},
{
name
:
'full-screen'
,
content
:
'yes'
},
{
name
:
'x5-fullscreen'
,
content
:
'true'
},
{
name
:
'x5-fullscreen'
,
content
:
'true'
},
{
name
:
'x5-fullscreen'
,
content
:
'true'
},
{
name
:
'x5-fullscreen'
,
content
:
'true'
},
...
...
pages/index.vue
浏览文件 @
7484f2e4
...
@@ -104,7 +104,6 @@
...
@@ -104,7 +104,6 @@
<PicaOrg
v-show=
"isShowOrg"
@
confirm=
"orgConfirm"
@
cancel=
"orgCancel"
></PicaOrg>
<PicaOrg
v-show=
"isShowOrg"
@
confirm=
"orgConfirm"
@
cancel=
"orgCancel"
></PicaOrg>
<CommonLoading
v-show=
"false"
></CommonLoading>
<CommonLoading
v-show=
"false"
></CommonLoading>
<PopTips
:tipsContent=
"tipsContent"
@
clickTips=
"clickTips"
v-show=
"isShowTips"
></PopTips>
<PopTips
:tipsContent=
"tipsContent"
@
clickTips=
"clickTips"
v-show=
"isShowTips"
></PopTips>
<a
href=
"tel:13817237261"
>
打电话:13817237261
</a>
</section>
</section>
</
template
>
</
template
>
...
...
pages/klgpoint.vue
浏览文件 @
7484f2e4
...
@@ -4,7 +4,6 @@
...
@@ -4,7 +4,6 @@
<TitleKLGPoint
:title=
"title"
></TitleKLGPoint>
<TitleKLGPoint
:title=
"title"
></TitleKLGPoint>
<TipsInfo
:content=
"tipsContent"
></TipsInfo>
<TipsInfo
:content=
"tipsContent"
></TipsInfo>
<ChartColumnHorizontalTCLong
:dataList=
"knowledgeEffectList"
class=
"mt-10"
></ChartColumnHorizontalTCLong>
<ChartColumnHorizontalTCLong
:dataList=
"knowledgeEffectList"
class=
"mt-10"
></ChartColumnHorizontalTCLong>
<CommonNoMore></CommonNoMore>
</section>
</section>
</
template
>
</
template
>
<
script
>
<
script
>
...
@@ -13,7 +12,6 @@ import { getStudyEffect } from "@/service";
...
@@ -13,7 +12,6 @@ import { getStudyEffect } from "@/service";
import
CommonHeader
from
"@/components/common/common-header"
;
import
CommonHeader
from
"@/components/common/common-header"
;
import
TitleKLGPoint
from
"@/components/bussiness/title-klg-point"
;
import
TitleKLGPoint
from
"@/components/bussiness/title-klg-point"
;
import
CommonNoMore
from
"@/components/common/common-no-more"
;
import
TipsInfo
from
'@/components/bussiness/tips-info'
import
TipsInfo
from
'@/components/bussiness/tips-info'
import
ChartColumnHorizontalTCLong
from
"@/components/bussiness/charts/chart-column-horizontal-tc-long"
;
import
ChartColumnHorizontalTCLong
from
"@/components/bussiness/charts/chart-column-horizontal-tc-long"
;
...
@@ -39,13 +37,12 @@ export default {
...
@@ -39,13 +37,12 @@ export default {
}
}
},
},
tipsContent
:
'报告数据来源仅包含摸底考和正式考的课程培训'
,
tipsContent
:
'报告数据来源仅包含摸底考和正式考的课程培训'
,
knowledgeEffectList
:
[]
knowledgeEffectList
:
[]
,
};
};
},
},
components
:
{
components
:
{
CommonHeader
,
CommonHeader
,
TitleKLGPoint
,
TitleKLGPoint
,
CommonNoMore
,
ChartColumnHorizontalTCLong
,
ChartColumnHorizontalTCLong
,
TipsInfo
TipsInfo
},
},
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录