You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
847 B
37 lines
847 B
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-10-18 09:04:31
|
|
* @LastEditTime: 2021-10-18 09:40:33
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/EventInsight/index.vue
|
|
-->
|
|
<template>
|
|
<div class="d-container">
|
|
<div class="ei-outter">
|
|
<!-- <hotEventPO></hotEventPO> -->
|
|
<industryTOPHE></industryTOPHE>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
// import hotEventPO from "./hotEventPO"
|
|
import industryTOPHE from "./industryTOPHE"
|
|
export default {
|
|
name: "eventInsight",
|
|
components: {
|
|
// hotEventPO, // 热点事件传播导向
|
|
industryTOPHE // 行业TOP热点事件
|
|
},
|
|
created() {
|
|
this.setHeaderType(3);
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="less" scoped>
|
|
.ei-outter {
|
|
padding: 0px 16px 16px 16px;
|
|
}
|
|
</style>
|