From c4b9d8c8bc26f05ecc184eb0c36fa2390f820b5d Mon Sep 17 00:00:00 2001 From: "lily.zhang" Date: Thu, 21 Oct 2021 13:44:45 +0800 Subject: [PATCH] cxw-010203 --- src/api/comm/index.js | 29 ++ src/api/home/index.js | 88 +++++ src/components/index.js | 2 +- src/components/v-loading/index.css | 347 ++++++++++++++++++ src/components/v-loading/index.js | 71 ++++ src/components/v-pagination/index.vue | 84 ++++- src/lycomponents/iHeader/index.vue | 58 +-- src/main.js | 2 +- src/mixins/index.js | 6 +- src/request/index.js | 5 +- src/store/actions.js | 5 +- src/store/getters.js | 5 +- src/store/mutations.js | 8 +- src/store/state.js | 10 +- src/utils/gol/bubbleWord.js | 130 +++++++ src/views/Index/dynamicNumber/index.vue | 61 ++- src/views/Index/hotDiscussionGraph/index.vue | 87 +++-- src/views/Index/hotDiscussionGraph/opt.js | 215 ----------- .../Index/keyCommunicationPositions/index.vue | 81 ++-- src/views/Index/realTimeEvent/index.vue | 86 +++-- src/views/Index/salesRank/index.vue | 100 ++--- src/views/Index/tailInsight/index.vue | 46 ++- src/views/Index/tailInsight/opt.js | 18 +- 23 files changed, 1132 insertions(+), 412 deletions(-) create mode 100644 src/api/comm/index.js create mode 100644 src/api/home/index.js create mode 100644 src/components/v-loading/index.css create mode 100644 src/components/v-loading/index.js create mode 100644 src/utils/gol/bubbleWord.js delete mode 100644 src/views/Index/hotDiscussionGraph/opt.js diff --git a/src/api/comm/index.js b/src/api/comm/index.js new file mode 100644 index 0000000..3b10fa3 --- /dev/null +++ b/src/api/comm/index.js @@ -0,0 +1,29 @@ +/* + * @Author: your name + * @Date: 2021-10-20 16:36:08 + * @LastEditTime: 2021-10-20 16:55:28 + * @LastEditors: Please set LastEditors + * @Description: In User Settings Edit + * @FilePath: /data-show/src/api/comm/index.js + */ +import httpService from "@/request" + +// 获取顶部选择项 +export function getOneTime(params) { + let obj = Object.assign({action: 'getTime', sType: 0}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'get', + params: obj + }) +} + +// 获取顶部选择项 +export function getTwoTime(params) { + let obj = Object.assign({action: 'getTime',sType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'get', + params: obj + }) +} diff --git a/src/api/home/index.js b/src/api/home/index.js new file mode 100644 index 0000000..bb7a2fe --- /dev/null +++ b/src/api/home/index.js @@ -0,0 +1,88 @@ +/* + * @Author: your name + * @Date: 2021-10-20 16:17:39 + * @LastEditTime: 2021-10-21 12:04:50 + * @LastEditors: Please set LastEditors + * @Description: In User Settings Edit + * @FilePath: /data-show/src/api/home/index.js + */ +import httpService from "@/request" + +// 首页_实时事件 +export function getEventsListH(params) { + let obj = Object.assign({action: 'getEventsListH',sQuDao: '新车上市', sType: 'Home', iTimeType: 0}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'get', + params: obj + }) +} + +// 首页_传播重点阵地 +export function getWebsiteHome0528(params) { + let obj = Object.assign({action: 'getWebsiteHome0528',sType: 'Home'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'get', + params: obj + }) +} + +// 首页_全网传播数量 +export function getHomeCount0528(params) { + let obj = Object.assign({action: 'getHomeCount0528',sType: 'Home'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'get', + params: obj + }) +} + +// 首页_热销排行 +export function getCheZhuBrandCount0528(params) { + let obj = Object.assign({action: 'getCheZhuBrandCount0528',sType: 'Home'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'get', + params: obj + }) +} + +// 首页_热门词云 +export function getHotWordHome(params) { + let obj = Object.assign({action: 'getHotWordHome',sType: 'Home'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'get', + params: obj + }) +} + +// 首页_正面词云 +export function getPositive0528(params) { + let obj = Object.assign({action: 'getPositive0528',sType: 'Home'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'get', + params: obj + }) +} + +// 首页_负面词云 +export function getNegative0528(params) { + let obj = Object.assign({action: 'getNegative0528',sType: 'Home'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'get', + params: obj + }) +} +// 首页_尾翼洞察 +export function getWeiYiCountHome0528(params) { + let obj = Object.assign({action: 'getWeiYiCountHome0528',sType: 'Home'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'get', + params: obj + }) +} \ No newline at end of file diff --git a/src/components/index.js b/src/components/index.js index 5de88e0..08c9540 100644 --- a/src/components/index.js +++ b/src/components/index.js @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-10-12 10:28:00 - * @LastEditTime: 2021-10-14 13:20:45 + * @LastEditTime: 2021-10-21 13:21:05 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/components/index.js diff --git a/src/components/v-loading/index.css b/src/components/v-loading/index.css new file mode 100644 index 0000000..6862204 --- /dev/null +++ b/src/components/v-loading/index.css @@ -0,0 +1,347 @@ +.zh-load-mark { + position: fixed; + left: 0; + top: 0; + width: 100%; + height: 100%; + z-index: 9999; +} +.zh-load-box { + position: fixed; + z-index: 3; + width: 7.6em; + min-height: 7.6em; + top: 180px; + left: 50%; + margin-left: -3.8em; + background: rgba(0, 0, 0, 0.7); + text-align: center; + border-radius: 5px; + color: #FFFFFF; +} +.zh-load-content { + margin-top: 64%; + font-size: 14px; +} +.zh-loading { + position: absolute; + width: 0px; + left: 50%; + top: 38%; +} +.loading_leaf { + position: absolute; + top: -1px; + opacity: 0.25; +} +.loading_leaf:before { + content: " "; + position: absolute; + width: 9.14px; + height: 3.08px; + background: #d1d1d5; + box-shadow: rgba(0, 0, 0, 0.0980392) 0px 0px 1px; + border-radius: 1px; + -webkit-transform-origin: left 50% 0px; + transform-origin: left 50% 0px; +} +.loading_leaf_0 { + -webkit-animation: opacity-0 1.25s linear infinite; + animation: opacity-0 1.25s linear infinite; +} +.loading_leaf_0:before { + -webkit-transform: rotate(0deg) translate(7.92px, 0px); + transform: rotate(0deg) translate(7.92px, 0px); +} +.loading_leaf_1 { + -webkit-animation: opacity-1 1.25s linear infinite; + animation: opacity-1 1.25s linear infinite; +} +.loading_leaf_1:before { + -webkit-transform: rotate(30deg) translate(7.92px, 0px); + transform: rotate(30deg) translate(7.92px, 0px); +} +.loading_leaf_2 { + -webkit-animation: opacity-2 1.25s linear infinite; + animation: opacity-2 1.25s linear infinite; +} +.loading_leaf_2:before { + -webkit-transform: rotate(60deg) translate(7.92px, 0px); + transform: rotate(60deg) translate(7.92px, 0px); +} +.loading_leaf_3 { + -webkit-animation: opacity-3 1.25s linear infinite; + animation: opacity-3 1.25s linear infinite; +} +.loading_leaf_3:before { + -webkit-transform: rotate(90deg) translate(7.92px, 0px); + transform: rotate(90deg) translate(7.92px, 0px); +} +.loading_leaf_4 { + -webkit-animation: opacity-4 1.25s linear infinite; + animation: opacity-4 1.25s linear infinite; +} +.loading_leaf_4:before { + -webkit-transform: rotate(120deg) translate(7.92px, 0px); + transform: rotate(120deg) translate(7.92px, 0px); +} +.loading_leaf_5 { + -webkit-animation: opacity-5 1.25s linear infinite; + animation: opacity-5 1.25s linear infinite; +} +.loading_leaf_5:before { + -webkit-transform: rotate(150deg) translate(7.92px, 0px); + transform: rotate(150deg) translate(7.92px, 0px); +} +.loading_leaf_6 { + -webkit-animation: opacity-6 1.25s linear infinite; + animation: opacity-6 1.25s linear infinite; +} +.loading_leaf_6:before { + -webkit-transform: rotate(180deg) translate(7.92px, 0px); + transform: rotate(180deg) translate(7.92px, 0px); +} +.loading_leaf_7 { + -webkit-animation: opacity-7 1.25s linear infinite; + animation: opacity-7 1.25s linear infinite; +} +.loading_leaf_7:before { + -webkit-transform: rotate(210deg) translate(7.92px, 0px); + transform: rotate(210deg) translate(7.92px, 0px); +} +.loading_leaf_8 { + -webkit-animation: opacity-8 1.25s linear infinite; + animation: opacity-8 1.25s linear infinite; +} +.loading_leaf_8:before { + -webkit-transform: rotate(240deg) translate(7.92px, 0px); + transform: rotate(240deg) translate(7.92px, 0px); +} +.loading_leaf_9 { + -webkit-animation: opacity-9 1.25s linear infinite; + animation: opacity-9 1.25s linear infinite; +} +.loading_leaf_9:before { + -webkit-transform: rotate(270deg) translate(7.92px, 0px); + transform: rotate(270deg) translate(7.92px, 0px); +} +.loading_leaf_10 { + -webkit-animation: opacity-10 1.25s linear infinite; + animation: opacity-10 1.25s linear infinite; +} +.loading_leaf_10:before { + -webkit-transform: rotate(300deg) translate(7.92px, 0px); + transform: rotate(300deg) translate(7.92px, 0px); +} +.loading_leaf_11 { + -webkit-animation: opacity-11 1.25s linear infinite; + animation: opacity-11 1.25s linear infinite; +} +.loading_leaf_11:before { + -webkit-transform: rotate(330deg) translate(7.92px, 0px); + transform: rotate(330deg) translate(7.92px, 0px); +} +@-webkit-keyframes opacity-0 { + 0% { + opacity: 0.25; + } + 0.01% { + opacity: 0.25; + } + 0.02% { + opacity: 1; + } + 60.01% { + opacity: 0.25; + } + 100% { + opacity: 0.25; + } +} +@-webkit-keyframes opacity-1 { + 0% { + opacity: 0.25; + } + 8.34333% { + opacity: 0.25; + } + 8.35333% { + opacity: 1; + } + 68.3433% { + opacity: 0.25; + } + 100% { + opacity: 0.25; + } +} +@-webkit-keyframes opacity-2 { + 0% { + opacity: 0.25; + } + 16.6767% { + opacity: 0.25; + } + 16.6867% { + opacity: 1; + } + 76.6767% { + opacity: 0.25; + } + 100% { + opacity: 0.25; + } +} +@-webkit-keyframes opacity-3 { + 0% { + opacity: 0.25; + } + 25.01% { + opacity: 0.25; + } + 25.02% { + opacity: 1; + } + 85.01% { + opacity: 0.25; + } + 100% { + opacity: 0.25; + } +} +@-webkit-keyframes opacity-4 { + 0% { + opacity: 0.25; + } + 33.3433% { + opacity: 0.25; + } + 33.3533% { + opacity: 1; + } + 93.3433% { + opacity: 0.25; + } + 100% { + opacity: 0.25; + } +} +@-webkit-keyframes opacity-5 { + 0% { + opacity: 0.270958333333333; + } + 41.6767% { + opacity: 0.25; + } + 41.6867% { + opacity: 1; + } + 1.67667% { + opacity: 0.25; + } + 100% { + opacity: 0.270958333333333; + } +} +@-webkit-keyframes opacity-6 { + 0% { + opacity: 0.375125; + } + 50.01% { + opacity: 0.25; + } + 50.02% { + opacity: 1; + } + 10.01% { + opacity: 0.25; + } + 100% { + opacity: 0.375125; + } +} +@-webkit-keyframes opacity-7 { + 0% { + opacity: 0.479291666666667; + } + 58.3433% { + opacity: 0.25; + } + 58.3533% { + opacity: 1; + } + 18.3433% { + opacity: 0.25; + } + 100% { + opacity: 0.479291666666667; + } +} +@-webkit-keyframes opacity-8 { + 0% { + opacity: 0.583458333333333; + } + 66.6767% { + opacity: 0.25; + } + 66.6867% { + opacity: 1; + } + 26.6767% { + opacity: 0.25; + } + 100% { + opacity: 0.583458333333333; + } +} +@-webkit-keyframes opacity-9 { + 0% { + opacity: 0.687625; + } + 75.01% { + opacity: 0.25; + } + 75.02% { + opacity: 1; + } + 35.01% { + opacity: 0.25; + } + 100% { + opacity: 0.687625; + } +} +@-webkit-keyframes opacity-10 { + 0% { + opacity: 0.791791666666667; + } + 83.3433% { + opacity: 0.25; + } + 83.3533% { + opacity: 1; + } + 43.3433% { + opacity: 0.25; + } + 100% { + opacity: 0.791791666666667; + } +} +@-webkit-keyframes opacity-11 { + 0% { + opacity: 0.895958333333333; + } + 91.6767% { + opacity: 0.25; + } + 91.6867% { + opacity: 1; + } + 51.6767% { + opacity: 0.25; + } + 100% { + opacity: 0.895958333333333; + } +} \ No newline at end of file diff --git a/src/components/v-loading/index.js b/src/components/v-loading/index.js new file mode 100644 index 0000000..cee68d6 --- /dev/null +++ b/src/components/v-loading/index.js @@ -0,0 +1,71 @@ +/* + * @Author: your name + * @Date: 2021-10-21 13:16:41 + * @LastEditTime: 2021-10-21 13:16:43 + * @LastEditors: Please set LastEditors + * @Description: In User Settings Edit + * @FilePath: /data-show/src/components/v-loading/index.js + */ + /* + 自定义 loading 组件 + 调用 + this.$loading('正在加载中...'); + this.$loading.close(); +*/ +let _LOADING = { + show: false, // Boolean loading显示状态 + component: null // Object loading组件 + }; +export default { +install(Vue) { + /* + text: String + type: String + */ + Vue.prototype.$loading = function(text='正在加载中...', type) { + if (type == 'close') { + _LOADING.component.show = _LOADING.show = false; + } else { + if (_LOADING.show) { + return; + } + let LoadingCompoent = Vue.extend({ + data: function() { + return { + show: _LOADING.show + } + }, + template: `
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
${text}
+
+
` + }); + _LOADING.component = new LoadingCompoent(); + let element = _LOADING.component.$mount().$el; + document.body.appendChild(element); + _LOADING.component.show = _LOADING.show = true; + } + }; + // 打开/关闭 + ['open', 'close'].forEach(function(type) { + Vue.prototype.$loading[type] = function(text) { + return Vue.prototype.$loading(text, type); + } + }); +} +} \ No newline at end of file diff --git a/src/components/v-pagination/index.vue b/src/components/v-pagination/index.vue index 5820ac7..7b1dfec 100644 --- a/src/components/v-pagination/index.vue +++ b/src/components/v-pagination/index.vue @@ -1,23 +1,92 @@ diff --git a/src/lycomponents/iHeader/index.vue b/src/lycomponents/iHeader/index.vue index d966e93..f44484a 100644 --- a/src/lycomponents/iHeader/index.vue +++ b/src/lycomponents/iHeader/index.vue @@ -24,12 +24,12 @@ 菜单 - + - {{ item.label }} + {{ item.value }} - + @@ -60,35 +60,25 @@ \ No newline at end of file diff --git a/src/views/Index/hotDiscussionGraph/opt.js b/src/views/Index/hotDiscussionGraph/opt.js deleted file mode 100644 index 3b3bd71..0000000 --- a/src/views/Index/hotDiscussionGraph/opt.js +++ /dev/null @@ -1,215 +0,0 @@ -/* - * @Author: your name - * @Date: 2021-10-09 13:35:13 - * @LastEditTime: 2021-10-09 16:03:40 - * @LastEditors: Please set LastEditors - * @Description: In User Settings Edit - * @FilePath: /data-show/src/views/Index/hotDiscussionGraph/opt.js - */ -// import * as echarts from "echarts"; -const dataBJ = [ - [1, 55, 9, 56, 0.46, 18, 6, '良'], - [2, 25, 11, 21, 0.65, 34, 9, '优'], - [3, 56, 7, 63, 0.3, 14, 5, '良'], - [4, 33, 7, 29, 0.33, 16, 6, '优'], - [5, 42, 24, 44, 0.76, 40, 16, '优'], - [6, 82, 58, 90, 1.77, 68, 33, '良'], - [7, 74, 49, 77, 1.46, 48, 27, '良'], - [8, 78, 55, 80, 1.29, 59, 29, '良'], - [9, 267, 216, 280, 4.8, 108, 64, '重度污染'], - // [10, 185, 127, 216, 2.52, 61, 27, '中度污染'], - // [11, 39, 19, 38, 0.57, 31, 15, '优'], - // [12, 41, 11, 40, 0.43, 21, 7, '优'], - // [13, 64, 38, 74, 1.04, 46, 22, '良'], - // [14, 108, 79, 120, 1.7, 75, 41, '轻度污染'], - // [15, 108, 63, 116, 1.48, 44, 26, '轻度污染'], - // [16, 33, 6, 29, 0.34, 13, 5, '优'], - // [17, 94, 66, 110, 1.54, 62, 31, '良'], - // [18, 186, 142, 192, 3.88, 93, 79, '中度污染'], - // [19, 57, 31, 54, 0.96, 32, 14, '良'], - // [20, 22, 8, 17, 0.48, 23, 10, '优'], - // [21, 39, 15, 36, 0.61, 29, 13, '优'], - // [22, 94, 69, 114, 2.08, 73, 39, '良'], - // [23, 99, 73, 110, 2.43, 76, 48, '良'], - // [24, 31, 12, 30, 0.5, 32, 16, '优'], - // [25, 42, 27, 43, 1, 53, 22, '优'], - // [26, 154, 117, 157, 3.05, 92, 58, '中度污染'], - // [27, 234, 185, 230, 4.09, 123, 69, '重度污染'], - // [28, 160, 120, 186, 2.77, 91, 50, '中度污染'], - // [29, 134, 96, 165, 2.76, 83, 41, '轻度污染'], - // [30, 52, 24, 60, 1.03, 50, 21, '良'], - // [31, 46, 5, 49, 0.28, 10, 6, '优'] - ]; - const dataGZ = [ - [1, 26, 37, 27, 1.163, 27, 13, '优'], - [2, 85, 62, 71, 1.195, 60, 8, '良'], - [3, 78, 38, 74, 1.363, 37, 7, '良'], - [4, 21, 21, 36, 0.634, 40, 9, '优'], - [5, 41, 42, 46, 0.915, 81, 13, '优'], - // [6, 56, 52, 69, 1.067, 92, 16, '良'], - // [7, 64, 30, 28, 0.924, 51, 2, '良'], - // [8, 55, 48, 74, 1.236, 75, 26, '良'], - // [9, 76, 85, 113, 1.237, 114, 27, '良'], - // [10, 91, 81, 104, 1.041, 56, 40, '良'], - // [11, 84, 39, 60, 0.964, 25, 11, '良'], - // [12, 64, 51, 101, 0.862, 58, 23, '良'], - // [13, 70, 69, 120, 1.198, 65, 36, '良'], - // [14, 77, 105, 178, 2.549, 64, 16, '良'], - // [15, 109, 68, 87, 0.996, 74, 29, '轻度污染'], - // [16, 73, 68, 97, 0.905, 51, 34, '良'], - // [17, 54, 27, 47, 0.592, 53, 12, '良'], - // [18, 51, 61, 97, 0.811, 65, 19, '良'], - // [19, 91, 71, 121, 1.374, 43, 18, '良'], - // [20, 73, 102, 182, 2.787, 44, 19, '良'], - // [21, 73, 50, 76, 0.717, 31, 20, '良'], - // [22, 84, 94, 140, 2.238, 68, 18, '良'], - // [23, 93, 77, 104, 1.165, 53, 7, '良'], - // [24, 99, 130, 227, 3.97, 55, 15, '良'], - // [25, 146, 84, 139, 1.094, 40, 17, '轻度污染'], - // [26, 113, 108, 137, 1.481, 48, 15, '轻度污染'], - // [27, 81, 48, 62, 1.619, 26, 3, '良'], - // [28, 56, 48, 68, 1.336, 37, 9, '良'], - // [29, 82, 92, 174, 3.29, 0, 13, '良'], - // [30, 106, 116, 188, 3.628, 101, 16, '轻度污染'], - // [31, 118, 50, 0, 1.383, 76, 11, '轻度污染'] - ]; - const dataSH = [ - [1, 91, 45, 125, 0.82, 34, 23, '良'], - [2, 65, 27, 78, 0.86, 45, 29, '良'], - [3, 83, 60, 84, 1.09, 73, 27, '良'], - [4, 109, 81, 121, 1.28, 68, 51, '轻度污染'], - [5, 106, 77, 114, 1.07, 55, 51, '轻度污染'], - // [6, 109, 81, 121, 1.28, 68, 51, '轻度污染'], - // [7, 106, 77, 114, 1.07, 55, 51, '轻度污染'], - // [8, 89, 65, 78, 0.86, 51, 26, '良'], - // [9, 53, 33, 47, 0.64, 50, 17, '良'], - // [10, 80, 55, 80, 1.01, 75, 24, '良'], - // [11, 117, 81, 124, 1.03, 45, 24, '轻度污染'], - // [12, 99, 71, 142, 1.1, 62, 42, '良'], - // [13, 95, 69, 130, 1.28, 74, 50, '良'], - // [14, 116, 87, 131, 1.47, 84, 40, '轻度污染'], - // [15, 108, 80, 121, 1.3, 85, 37, '轻度污染'], - // [16, 134, 83, 167, 1.16, 57, 43, '轻度污染'], - // [17, 79, 43, 107, 1.05, 59, 37, '良'], - // [18, 71, 46, 89, 0.86, 64, 25, '良'], - // [19, 97, 71, 113, 1.17, 88, 31, '良'], - // [20, 84, 57, 91, 0.85, 55, 31, '良'], - // [21, 87, 63, 101, 0.9, 56, 41, '良'], - // [22, 104, 77, 119, 1.09, 73, 48, '轻度污染'], - // [23, 87, 62, 100, 1, 72, 28, '良'], - // [24, 168, 128, 172, 1.49, 97, 56, '中度污染'], - // [25, 65, 45, 51, 0.74, 39, 17, '良'], - // [26, 39, 24, 38, 0.61, 47, 17, '优'], - // [27, 39, 24, 39, 0.59, 50, 19, '优'], - // [28, 93, 68, 96, 1.05, 79, 29, '良'], - // [29, 188, 143, 197, 1.66, 99, 51, '中度污染'], - // [30, 174, 131, 174, 1.55, 108, 50, '中度污染'], - // [31, 187, 143, 201, 1.39, 89, 53, '中度污染'] - ]; -// const schema = [ -// { name: 'date', index: 0, text: '日' }, -// { name: 'AQIindex', index: 1, text: 'AQI指数' }, -// { name: 'PM25', index: 2, text: 'PM2.5' }, -// { name: 'PM10', index: 3, text: 'PM10' }, -// { name: 'CO', index: 4, text: '一氧化碳(CO)' }, -// { name: 'NO2', index: 5, text: '二氧化氮(NO2)' }, -// { name: 'SO2', index: 6, text: '二氧化硫(SO2)' } -// ]; - const itemStyle = { - opacity: 0.8, - shadowBlur: 10, - shadowOffsetX: 0, - shadowOffsetY: 0, - shadowColor: 'rgba(0,0,0,0.3)' - }; -export default function createOpt() { - return { - grid: { - top: "16px", - left: "16px", - right: "16px", - bottom: "16px", - containLabel: true, - }, - tooltip: { - backgroundColor: "#08182F", - color: "#fff", - borderColor: "#3373CC", - textStyle: { - color: "#fff", //设置文字颜色 - }, - extraCssText: "box-shadow: 0px 0px 10px 0px #3373CC;", - formatter: function(param) { - let value = param.value; - return `${value[value.length - 1]}
${value[0]}` - } - }, - xAxis: { - show: false, - type: 'value', - splitLine: { - lineStyle: { - type: 'dashed' - } - } - }, - yAxis: { - show: false, - type: 'value', - splitLine: { - lineStyle: { - type: 'dashed' - } - }, - scale: true - }, - series: [{ - name: '北京', - data: dataBJ, - type: 'scatter', - symbolSize: function (data) { - return data[2] - }, - label: { - show: true, - color: "#FFF", - formatter: function (param) { - return param.data[param.data.length - 1]; - }, - }, - itemStyle: itemStyle - }, { - name: '上海', - data: dataSH, - type: 'scatter', - symbolSize: function (data) { - return data[2] - }, - label: { - show: true, - color: "#FFF", - formatter: function (param) { - return param.data[param.data.length - 1]; - }, - }, - itemStyle: itemStyle - }, - { - name: '广州', - data: dataGZ, - type: 'scatter', - symbolSize: function (data) { - return data[2] - }, - label: { - show: true, - color: "#FFF", - formatter: function (param) { - return param.data[param.data.length - 1]; - }, - }, - itemStyle: itemStyle - } - ] - } -} diff --git a/src/views/Index/keyCommunicationPositions/index.vue b/src/views/Index/keyCommunicationPositions/index.vue index 5972d04..b673eee 100644 --- a/src/views/Index/keyCommunicationPositions/index.vue +++ b/src/views/Index/keyCommunicationPositions/index.vue @@ -1,49 +1,76 @@ diff --git a/src/views/Index/realTimeEvent/index.vue b/src/views/Index/realTimeEvent/index.vue index b8e6174..2a4e115 100644 --- a/src/views/Index/realTimeEvent/index.vue +++ b/src/views/Index/realTimeEvent/index.vue @@ -1,60 +1,68 @@ diff --git a/src/views/Index/salesRank/index.vue b/src/views/Index/salesRank/index.vue index 0ef7b68..e94f23b 100644 --- a/src/views/Index/salesRank/index.vue +++ b/src/views/Index/salesRank/index.vue @@ -1,65 +1,83 @@ diff --git a/src/views/Index/tailInsight/index.vue b/src/views/Index/tailInsight/index.vue index 460c2ab..8298d76 100644 --- a/src/views/Index/tailInsight/index.vue +++ b/src/views/Index/tailInsight/index.vue @@ -1,7 +1,7 @@