prod
lily.zhang 3 years ago
parent 5f4184f072
commit 2ba862c3a9

@ -89,7 +89,7 @@ export default {
watch: { watch: {
$route: { $route: {
handler(val) { handler(val) {
if (val.path === "/eventDEC") { if (val.path === "/eventDEC" || val.path === "/eventComparison") {
this.timeShow = false; this.timeShow = false;
} else { } else {
this.timeShow = true; this.timeShow = true;

@ -270,3 +270,20 @@ li.ant-calendar-time-picker-select-option-selected {
left: 0px !important; left: 0px !important;
top: 50px; top: 50px;
} }
.ant-modal-content {
background-color:#010B19 !important;
box-shadow: 0px 0px 10px 0px #3373CC !important;
}
.ant-modal-header {
background-color:#010B19 !important;
border-bottom: 1px solid #3373CC !important;
}
.ant-modal-footer {
border-top: 1px solid #3373CC !important;
}
.ant-modal-title {
color: #fff !important;
}
.ant-modal-body {
color: #fff !important;
}

@ -1,7 +1,7 @@
<!-- <!--
* @Author: xw * @Author: xw
* @Date: 2021-10-08 15:56:35 * @Date: 2021-10-08 15:56:35
* @LastEditTime: 2021-11-05 11:39:16 * @LastEditTime: 2021-11-17 16:59:34
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: 实时事件 * @Description: 实时事件
* @FilePath: /data-show/src/views/Index/realTimeEvent/index.vue * @FilePath: /data-show/src/views/Index/realTimeEvent/index.vue
@ -11,8 +11,11 @@
<div class="rte-outter" v-loading="load" v-highly="0.83"> <div class="rte-outter" v-loading="load" v-highly="0.83">
<v-label-div title="实时事件"></v-label-div> <v-label-div title="实时事件"></v-label-div>
<div class="rte-tb" v-highly> <div class="rte-tb" v-highly>
<dv-scroll-board :config="config" :style="{ width: '100%', height: '100%' }" @click="handlerSs"/> <dv-scroll-board :config="config" :style="{ width: '100%', height: '100%' }" @click="handlerSs" />
</div> </div>
<a-modal title="提示" :visible="visible" @ok="handleOk" @cancel="handleCancel">
<p>{{ ModalText }}</p>
</a-modal>
</div> </div>
</template> </template>
@ -24,6 +27,9 @@ export default {
return { return {
load: false, load: false,
config: {}, config: {},
darr: [],
visible: false,
ModalText: ""
}; };
}, },
created() { created() {
@ -31,18 +37,27 @@ export default {
}, },
methods: { methods: {
getData() { getData() {
this.load = true; this.load = true;
getEventsListH(this.getCommTime).then((res) => { getEventsListH(this.getCommTime).then((res) => {
let arr = []; let arr = [];
let arr2 = [];
if (Array.isArray(res.data)) { if (Array.isArray(res.data)) {
res.data.forEach((ele) => { res.data.forEach((ele) => {
let a = [ let a = [
`<span style="cursor: pointer;">${ele.events_title}</span>`, `<span style="cursor: pointer;">${ele.events_title}</span>`,
ele.events_influence, ele.events_influence,
ele.events_brand, ele.events_brand,
]; ];
let b = [
`<span style="cursor: pointer;">${ele.events_title}</span>`,
ele.events_influence,
ele.events_brand,
ele.events_id,
];
arr.push(a); arr.push(a);
arr2.push(b);
}); });
this.darr = arr2;
this.config = { this.config = {
headerBGC: "#0c203b", headerBGC: "#0c203b",
oddRowBGC: "#173b6d", oddRowBGC: "#173b6d",
@ -56,9 +71,27 @@ export default {
this.load = false; this.load = false;
}); });
}, },
handleCancel() {
this.visible = false;
},
handleOk() {
this.$router.push('/login')
},
handlerSs(row) { handlerSs(row) {
console.log(row) if (!this.getToken) {
} this.visible = true;
this.ModalText = "您还未登录,是否前往登录"
return;
}
let ele = this.darr[row.rowIndex];
if (row.columnIndex === 0) {
let id = ele[3];
this.$router.push({
path: "/eventDEC",
query: { events_id: id },
});
}
},
}, },
}; };
</script> </script>

Loading…
Cancel
Save