阿丽 3 years ago
commit 75f722dc0c

@ -24,7 +24,7 @@
</a-dropdown> </a-dropdown>
<span class="iH-left-s1">菜单</span> <span class="iH-left-s1">菜单</span>
<a-select :default-value="1" :size="$vuiSize" class="selHead" v-model="form.sTimeType" @change="handleChange"> <a-select :default-value="1" :size="$vuiSize" class="selHead" v-model="form.sTimeType" @change="handleChange" v-if="timeShow">
<a-select-option :style="{ color: '#fff' }" v-for="item in selDatas" :value="item.key" :key="item.key"> <a-select-option :style="{ color: '#fff' }" v-for="item in selDatas" :value="item.key" :key="item.key">
{{ item.value }} {{ item.value }}
</a-select-option> </a-select-option>
@ -83,7 +83,20 @@ export default {
}, },
selDatas: [], selDatas: [],
offsetDays: 86400000 * 30, //7 offsetDays: 86400000 * 30, //7
timeShow: true
}; };
},
watch: {
$route: {
handler(val) {
if (val.path === "/eventDEC") {
this.timeShow = false;
} else {
this.timeShow = true;
}
},
immediate: true,
},
}, },
created() { created() {
this.form = Object.assign(this.form, this.getCtime2); this.form = Object.assign(this.form, this.getCtime2);

@ -1,8 +0,0 @@
/*
* @Author: your name
* @Date: 2021-10-19 09:55:35
* @LastEditTime: 2021-10-19 09:55:36
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /data-show/src/views/EventComparison/CWIEC/opt.js
*/

@ -1,7 +1,7 @@
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2021-10-18 16:03:35 * @Date: 2021-10-18 16:03:35
* @LastEditTime: 2021-11-15 19:20:39 * @LastEditTime: 2021-11-16 18:25:15
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: /data-show/src/views/EventComparison/comparisonOfEventpp/index.vue * @FilePath: /data-show/src/views/EventComparison/comparisonOfEventpp/index.vue
@ -11,75 +11,122 @@
<v-label-div title="事件传播历程对比" :showLine="false" :eStyle="{'border-style': 'none'}"> <v-label-div title="事件传播历程对比" :showLine="false" :eStyle="{'border-style': 'none'}">
</v-label-div> </v-label-div>
<div class="coe-ts" v-for="(item,index) in list" :key="index"> <div class="coe-ts" v-for="(item,index) in list" :key="index">
<div class="coe-ts-d1"><img src="../../../assets/images/EventInsight/img_zuo.png" /></div> <div class="coe-ts-d1" @click="goL('vs'+(index+1))"><img src="../../../assets/images/EventInsight/img_zuo.png" /></div>
<span class="coe-ts-s1" :style="{color: colors[index]}">{{item.Name|doStr(10)}}传播历程</span> <span class="coe-ts-s1" :style="{color: colors[index]}">{{item.Name|doStr(10)}}传播历程</span>
<div class="coe-ts-d2"> <div class="coe-ts-d2">
<vue-scroll> <vue-scroll :ref="'vs'+(index+1)">
<div class="dd1-label"> <div class="dd1-label">
<div class="d1">{{getEComparison[index].events_type}}</div> <div class="d1">{{getEComparison[index].events_type}}</div>
<div class="d2">状态事件发生</div> <div class="d2">状态事件发生</div>
<div class="d3">{{getEComparison[index].minSourcetime}}</div> <div class="d3">{{getEComparison[index].minSourcetime}}</div>
</div> </div>
<template v-for="(it,n) in item.Data"> <template v-for="(it,n) in item.Data">
<div class="dd1-item" :key="it._id"> <div class="dd1-item" :key="it._id">
<img class="m1" :src="n%2 != 0 ? m1 : m2" :style="n%2 != 0 ? 'transform:rotate(180deg);margin-top: 9rem' : 'transform:rotate(180deg)'" /> <img class="m1" :src="n%2 != 0 ? m1 : m2" :style="n%2 != 0 ? 'transform:rotate(180deg);margin-top: 9rem' : 'transform:rotate(180deg)'" />
<div class="dd1-fen"></div> <div class="dd1-fen"></div>
<div class="dt-d1" :style="n%2 != 0 ? 'margin-top: 9.1rem' : ''"> <div class="dt-d1" :style="n%2 != 0 ? 'margin-top: 9.1rem' : ''">
<div class="d1" :style="n%2 != 0 ? 'color: #CC7733' : 'color: #3373CC'" @click="openUrl(it._source.url)">{{it._source.title|doStr(30)}}</div> <div class="d1" :style="n%2 != 0 ? 'color: #CC7733' : 'color: #3373CC'" @click="openUrl(it._source.url)">{{it._source.title|doStr(30)}}</div>
<div class="d2">{{it._source.firstweb}}</div> <div class="d2">{{it._source.firstweb}}</div>
<div class="d3">{{it._source.firsttime}}</div> <div class="d3">{{it._source.firsttime}}</div>
</div>
</div> </div>
</div>
</template> </template>
</vue-scroll> </vue-scroll>
</div> </div>
<div class="coe-ts-d1"><img src="../../../assets/images/EventInsight/img_xan.png" /></div> <div class="coe-ts-d1" @click="goR('vs'+(index+1))"><img src="../../../assets/images/EventInsight/img_xan.png" /></div>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import {getListC} from "@/api/EventComparison" import { getListC } from "@/api/EventComparison";
export default { export default {
name: "comparisonOfEventpp", name: "comparisonOfEventpp",
data() { data() {
return { return {
form: { form: {
token: "", token: "",
sRele: "" sRele: "",
}, },
colors: ['#3373CC','#54BF93'], colors: ["#3373CC", "#54BF93"],
m1: require("../../../assets/images/EventInsight/img_ct.png"), m1: require("../../../assets/images/EventInsight/img_ct.png"),
m2: require("../../../assets/images/EventInsight/img_lt.png"), m2: require("../../../assets/images/EventInsight/img_lt.png"),
list: [] list: [],
x1: 0,
x2: 0
}; };
}, },
created() { created() {
this.initData() this.initData();
}, },
methods: { methods: {
initData() { initData() {
this.form.token = this.getToken; this.form.token = this.getToken;
let arr = []; let arr = [];
this.getEComparison.forEach(ele => { this.getEComparison.forEach((ele) => {
arr.push(ele.events_id); arr.push(ele.events_id);
}) });
this.form.sRele = arr.toString(); this.form.sRele = arr.toString();
this.getData() this.getData();
}, },
getData() { getData() {
let obj = Object.assign({}, this.getCtime2, this.form); let obj = Object.assign({}, this.getCtime2, this.form);
getListC(obj).then(res => { getListC(obj).then((res) => {
let data = res.data || []; let data = res.data || [];
this.list = data; this.list = data;
}) });
}, },
openUrl(url) { openUrl(url) {
window.open(url); window.open(url);
} },
} goL(name) {
let l = 0;
const { scrollLeft } = this.$refs[name][0].getPosition();
const {h} = this.$refs[name][0].getScrollProcess();
if(h === 0) {
return
}
if(parseInt(name) === 2) {
this.x2 = scrollLeft;
this.x2 -= 150
l = this.x2
} else {
this.x1 = scrollLeft;
this.x1 -= 150
l = this.x1
}
this.$refs[name][0].scrollTo(
{
x: l,
},
300
);
},
goR(name) {
let r = 0;
const { scrollLeft } = this.$refs[name][0].getPosition();
const {h} = this.$refs[name][0].getScrollProcess();
if(h === 1) {
return
}
if(parseInt(name) === 2) {
this.x2 = scrollLeft;
this.x2 += 150
r = this.x2
} else {
this.x1 = scrollLeft;
this.x1 += 150
r = this.x1
}
this.$refs[name][0].scrollTo(
{
x: r,
},
300
);
},
},
}; };
</script> </script>

@ -3,7 +3,7 @@
/* /*
* @Author: your name * @Author: your name
* @Date: 2021-10-09 12:38:34 * @Date: 2021-10-09 12:38:34
* @LastEditTime: 2021-10-14 11:48:19 * @LastEditTime: 2021-11-16 17:55:26
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: /data-show/src/views/Index/tailInsight/opt.js * @FilePath: /data-show/src/views/Index/tailInsight/opt.js
@ -68,7 +68,7 @@ export default function createOptD1(dx = [],ds = []) {
{ {
name: '2011', name: '2011',
type: 'bar', type: 'bar',
barWidth: 24, barWidth: 18,
data: ds, data: ds,
color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [{ color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [{
offset: 0, offset: 0,

@ -1,7 +1,7 @@
/* /*
* @Author: your name * @Author: your name
* @Date: 2021-10-09 11:01:19 * @Date: 2021-10-09 11:01:19
* @LastEditTime: 2021-10-19 10:19:28 * @LastEditTime: 2021-11-16 17:59:22
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: /data-show/src/views/Index/spreadTheSound/opt.js * @FilePath: /data-show/src/views/Index/spreadTheSound/opt.js
@ -38,10 +38,10 @@ export default function createOpt(dx = [], dataList = []) {
let info = createData(dataList, dx); let info = createData(dataList, dx);
return { return {
grid: { grid: {
left: 16, left: 10,
right: 16, right: 16,
bottom: 16, bottom: 10,
top: 56, top: 35,
containLabel: true containLabel: true
}, },
tooltip: { tooltip: {
@ -58,7 +58,7 @@ export default function createOpt(dx = [], dataList = []) {
textStyle: { //图例文字的样式 textStyle: { //图例文字的样式
color: '#fff' color: '#fff'
}, },
y: 10, y: 0,
x: 16, x: 16,
itemWidth: 12, itemWidth: 12,
itemHeight: 12, itemHeight: 12,

@ -1,7 +1,7 @@
/* /*
* @Author: your name * @Author: your name
* @Date: 2021-10-12 10:11:24 * @Date: 2021-10-12 10:11:24
* @LastEditTime: 2021-11-16 17:13:35 * @LastEditTime: 2021-11-16 17:43:46
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: /data-show/src/views/BrandInsight/titsopo/opt.js * @FilePath: /data-show/src/views/BrandInsight/titsopo/opt.js
@ -52,7 +52,7 @@ export default function createOpt(dx=[], ds=[]) {
return { return {
grid: { grid: {
left: 10, left: 10,
right: '5%', right: 20,
bottom: 10, bottom: 10,
top: 44, top: 44,
containLabel: true containLabel: true

@ -29,7 +29,7 @@
<div class="d1"> <div class="d1">
<img class="m1" src="../../assets/images/EventInsight/ic_yxl.png" /> <img class="m1" src="../../assets/images/EventInsight/ic_yxl.png" />
<span class="s1">影响力指数</span> <span class="s1">影响力指数</span>
<span class="s2">38.89</span> <span class="s2">{{eventObj.Effect}}</span>
</div> </div>
<div class="d1"> <div class="d1">
<img class="m1" src="../../assets/images/EventInsight/ic_cbl.png" /> <img class="m1" src="../../assets/images/EventInsight/ic_cbl.png" />
@ -91,7 +91,8 @@ export default {
events_title: "", events_title: "",
description: "", description: "",
source_time: "", source_time: "",
events_count: 0 events_count: 0,
Effect: ""
}, },
form: { form: {
sRele: "", sRele: "",

@ -2,7 +2,7 @@
/* /*
* @Author: your name * @Author: your name
* @Date: 2021-10-09 11:38:06 * @Date: 2021-10-09 11:38:06
* @LastEditTime: 2021-11-16 17:25:40 * @LastEditTime: 2021-11-16 17:43:30
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: /data-show/src/views/Index/barometer/opt.js * @FilePath: /data-show/src/views/Index/barometer/opt.js
@ -56,7 +56,7 @@ export default function createOpt(dx = [], ds = []) {
return { return {
grid: { grid: {
left: 10, left: 10,
right: 10, right: 20,
bottom: 10, bottom: 10,
top: 46, top: 46,
containLabel: true containLabel: true

Loading…
Cancel
Save