Commit cb89ae87 by jml0128

fix:线上推广图表增加hideThisChart字段

1 parent 250cd8ee
......@@ -3,6 +3,14 @@
* @Date: 2021-09-08 15:26:40
-->
# 0.1.21
1. 线上推广图表增加 hideThisChart 字段控制图表是否隐藏
# 0.1.20
1. 修改线上推广性别图表切换问题
# 0.1.19
1. 增加 npmignore 文件
......
{
"name": "xrk-bi",
"version": "0.1.20",
"version": "0.1.21",
"description": "xrk-bi",
"author": "xrk",
"main": "dist/bundler.js",
......
......@@ -382,7 +382,7 @@ export default {
disableTypes: [3, 4, 9, 10, 11]
}),
item => ({
hideThisChart: item.topicCountInfos.length < 7,
hideThisChart: !!item.hideThisChart,
chartType: item.chartType || randomType([1, 2, 5, 6]),
blockTitle: '数字专区单日点击量Top5日期分布图',
hideLegend: true,
......@@ -390,7 +390,7 @@ export default {
disableTypes: [3, 4, 9, 10, 11]
}),
item => ({
hideThisChart: item.topicCountInfos.length < 7,
hideThisChart: !!item.hideThisChart,
chartType: item.chartType || 9,
blockTitle: '数字专区单日点击量Top5占周期总有效点击量占比分析图',
hideLegend: true,
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!