|
|
@ -7,7 +7,7 @@
|
|
|
|
* @FilePath: /data-show/src/views/EventComparison/positiveAndNegativeWordCloudContrast/index.vue
|
|
|
|
* @FilePath: /data-show/src/views/EventComparison/positiveAndNegativeWordCloudContrast/index.vue
|
|
|
|
-->
|
|
|
|
-->
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<div class="panwc-outter">
|
|
|
|
<div class="panwc-outter" v-loading="load">
|
|
|
|
<div class="panwc-inner">
|
|
|
|
<div class="panwc-inner">
|
|
|
|
<div class="panwc-d1">
|
|
|
|
<div class="panwc-d1">
|
|
|
|
<v-label-div
|
|
|
|
<v-label-div
|
|
|
@ -15,11 +15,14 @@
|
|
|
|
:showLine="false"
|
|
|
|
:showLine="false"
|
|
|
|
:eStyle="{ 'border-style': 'none' }"
|
|
|
|
:eStyle="{ 'border-style': 'none' }"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<v-tab-group :btns="['正面', '负面']"></v-tab-group>
|
|
|
|
<v-tab-group
|
|
|
|
|
|
|
|
:btns="['正面', '负面']"
|
|
|
|
|
|
|
|
@change="handlerTab1"
|
|
|
|
|
|
|
|
></v-tab-group>
|
|
|
|
</v-label-div>
|
|
|
|
</v-label-div>
|
|
|
|
<span class="p-d1-s1">事件一</span>
|
|
|
|
<span class="p-d1-s1">{{ eventData1.name }}</span>
|
|
|
|
<div class="panwc-inner">
|
|
|
|
<div class="panwc-inner">
|
|
|
|
<v-echarts :opt="opt"></v-echarts>
|
|
|
|
<v-echarts :opt="opt1"></v-echarts>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="panwc-d1">
|
|
|
|
<div class="panwc-d1">
|
|
|
@ -28,11 +31,16 @@
|
|
|
|
:showLine="false"
|
|
|
|
:showLine="false"
|
|
|
|
:eStyle="{ 'border-style': 'none' }"
|
|
|
|
:eStyle="{ 'border-style': 'none' }"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<v-tab-group :btns="['正面', '负面']"></v-tab-group>
|
|
|
|
<v-tab-group
|
|
|
|
|
|
|
|
:btns="['正面', '负面']"
|
|
|
|
|
|
|
|
@change="handlerTab2"
|
|
|
|
|
|
|
|
></v-tab-group>
|
|
|
|
</v-label-div>
|
|
|
|
</v-label-div>
|
|
|
|
<span class="p-d1-s1" style="color: #54bf93">事件二</span>
|
|
|
|
<span class="p-d1-s1" style="color: #54bf93">{{
|
|
|
|
|
|
|
|
eventData2.name
|
|
|
|
|
|
|
|
}}</span>
|
|
|
|
<div class="panwc-inner">
|
|
|
|
<div class="panwc-inner">
|
|
|
|
<v-echarts :opt="opt"></v-echarts>
|
|
|
|
<v-echarts :opt="opt2"></v-echarts>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -40,19 +48,31 @@
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import { getNegative } from "@/api/EventComparison";
|
|
|
|
import { getNegativeC } from "@/api/EventComparison/index.js";
|
|
|
|
import { getPositive } from "@/api/EventComparison";
|
|
|
|
import { getPositiveC } from "@/api/EventComparison/index.js";
|
|
|
|
//import createWordCloud from "@/utils/gol/bubbleWord";
|
|
|
|
import createWordCloud from "@/utils/gol/bubbleWord";
|
|
|
|
import createOpt from "./opt";
|
|
|
|
//import createOpt from "./opt";
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
name: "positiveAndNegativeWordCloudContrast",
|
|
|
|
name: "positiveAndNegativeWordCloudContrast",
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
opt: createOpt(),
|
|
|
|
opt1: {},
|
|
|
|
|
|
|
|
opt2: {},
|
|
|
|
form: {
|
|
|
|
form: {
|
|
|
|
token: "",
|
|
|
|
token: "",
|
|
|
|
sRele: "",
|
|
|
|
sRele: "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
eventData1: {
|
|
|
|
|
|
|
|
name: "",
|
|
|
|
|
|
|
|
positive: {},
|
|
|
|
|
|
|
|
negative: {},
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
eventData2: {
|
|
|
|
|
|
|
|
name: "",
|
|
|
|
|
|
|
|
positive: {},
|
|
|
|
|
|
|
|
negative: {},
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
load: false,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
@ -69,19 +89,24 @@ export default {
|
|
|
|
this.getData();
|
|
|
|
this.getData();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
getData() {
|
|
|
|
getData() {
|
|
|
|
|
|
|
|
this.load = true;
|
|
|
|
Promise.all([this.getPoz(), this.getNeg()]).then(() => {
|
|
|
|
Promise.all([this.getPoz(), this.getNeg()]).then(() => {
|
|
|
|
// 什么也不执行
|
|
|
|
this.handlerTab1(0);
|
|
|
|
//this.handlerTab(0);
|
|
|
|
this.handlerTab2(0);
|
|
|
|
//this.load = false;
|
|
|
|
this.load = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
getPoz() {
|
|
|
|
getPoz() {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
let obj = Object.assign({}, this.getCtime2, this.form);
|
|
|
|
let obj = Object.assign({}, this.getCtime2, this.form);
|
|
|
|
getPositive(obj)
|
|
|
|
getPositiveC(obj)
|
|
|
|
.then((res) => {
|
|
|
|
.then((res) => {
|
|
|
|
let data = res.data || {};
|
|
|
|
let data = res.data;
|
|
|
|
resolve(data);
|
|
|
|
this.eventData1.name = data[0].Name;
|
|
|
|
|
|
|
|
this.eventData2.name = data[1].Name;
|
|
|
|
|
|
|
|
this.eventData1.positive = data[0].Data;
|
|
|
|
|
|
|
|
this.eventData2.positive = data[1].Data;
|
|
|
|
|
|
|
|
resolve(res);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {
|
|
|
|
reject(false);
|
|
|
|
reject(false);
|
|
|
@ -91,16 +116,32 @@ export default {
|
|
|
|
getNeg() {
|
|
|
|
getNeg() {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
let obj = Object.assign({}, this.getCtime2, this.form);
|
|
|
|
let obj = Object.assign({}, this.getCtime2, this.form);
|
|
|
|
getNegative(obj)
|
|
|
|
getNegativeC(obj)
|
|
|
|
.then((res) => {
|
|
|
|
.then((res) => {
|
|
|
|
let data = res.data || {};
|
|
|
|
let data = res.data;
|
|
|
|
resolve(data);
|
|
|
|
this.eventData1.negative = data[0].Data;
|
|
|
|
|
|
|
|
this.eventData2.negative = data[1].Data;
|
|
|
|
|
|
|
|
resolve(res);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {
|
|
|
|
reject(false);
|
|
|
|
reject(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
handlerTab1(n) {
|
|
|
|
|
|
|
|
if (n === 0) {
|
|
|
|
|
|
|
|
this.opt1 = createWordCloud(this.eventData1.positive);
|
|
|
|
|
|
|
|
} else if (n === 1) {
|
|
|
|
|
|
|
|
this.opt1 = createWordCloud(this.eventData1.negative);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handlerTab2(n) {
|
|
|
|
|
|
|
|
if (n === 0) {
|
|
|
|
|
|
|
|
this.opt2 = createWordCloud(this.eventData2.positive);
|
|
|
|
|
|
|
|
} else if (n === 1) {
|
|
|
|
|
|
|
|
this.opt2 = createWordCloud(this.eventData2.negative);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|