From c3fc1b170a1e55bdda4b644f63d4a214495caa5f Mon Sep 17 00:00:00 2001 From: "lily.zhang" Date: Fri, 29 Oct 2021 21:31:55 +0800 Subject: [PATCH] cxw-010203 --- src/utils/gol/bubbleWord.js | 5 ++++- src/utils/gol/dataTool.js | 12 ++++++++++-- src/views/Index/index.vue | 5 ++++- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/src/utils/gol/bubbleWord.js b/src/utils/gol/bubbleWord.js index bc12766..b9a927f 100644 --- a/src/utils/gol/bubbleWord.js +++ b/src/utils/gol/bubbleWord.js @@ -1,11 +1,12 @@ /* * @Author: your name * @Date: 2021-10-21 11:36:36 - * @LastEditTime: 2021-10-29 12:46:18 + * @LastEditTime: 2021-10-29 21:30:46 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/utils/gol/bubbleWord.js */ +import {compare} from "./dataTool" // 将后台数据转成数组 function doWordCloud(data) { let arr1 = []; @@ -93,6 +94,7 @@ function bubbleChart(data = [], format = []) { // 创建词云图 export default function createWordCloud(obj) { let words = doWordCloud(obj); + words.sort(compare('value')); let bubble = bubbleChart(words, ['name', 'value']); return { animationEasingUpdate: 'bounceIn', @@ -119,6 +121,7 @@ export default function createWordCloud(obj) { }, force: { + gravity:0.2, repulsion: bubble.repulsion, edgeLength: 10 }, diff --git a/src/utils/gol/dataTool.js b/src/utils/gol/dataTool.js index 67958df..fc053b6 100644 --- a/src/utils/gol/dataTool.js +++ b/src/utils/gol/dataTool.js @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-10-29 13:29:26 - * @LastEditTime: 2021-10-29 13:29:28 + * @LastEditTime: 2021-10-29 20:58:56 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/utils/gol/dataTool.js @@ -61,4 +61,12 @@ newValue[1] = '' } return newValue.join('') - } \ No newline at end of file + } + // 对数组中某个对象值进行排序 + export function compare(property){ + return function(a,b){ + let value1 = a[property]; + let value2 = b[property]; + return value1 - value2; + } +} \ No newline at end of file diff --git a/src/views/Index/index.vue b/src/views/Index/index.vue index f485ec7..fff4183 100644 --- a/src/views/Index/index.vue +++ b/src/views/Index/index.vue @@ -1,7 +1,7 @@