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.
71 lines
1.7 KiB
71 lines
1.7 KiB
<template>
|
|
<div class="wa-container1">
|
|
<v-label-div title="微博分析">
|
|
</v-label-div>
|
|
<div class="wa-outter">
|
|
<div class="wa-inner">
|
|
<div class="wa-dd1">
|
|
<bigvAnalize></bigvAnalize>
|
|
</div>
|
|
<div class="wa-dd1">
|
|
<coreTransformUser></coreTransformUser>
|
|
</div>
|
|
</div>
|
|
<div class="wa-inner">
|
|
<div class="wa-dd1">
|
|
<transformMethod></transformMethod>
|
|
</div>
|
|
<div class="wa-dd1">
|
|
<bloggerArea></bloggerArea>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import bigvAnalize from "@/views/ThemeBoard/BigvAnalize" //大V分析
|
|
import coreTransformUser from "@/views/ThemeBoard/CoreTransformUser" //核心传播网民
|
|
import transformMethod from "@/views/ThemeBoard/TransformMethod" //传播途径
|
|
import bloggerArea from "@/views/ThemeBoard/BloggerArea" //博主区域分布
|
|
export default {
|
|
name: "WeiboAnalize",
|
|
components: {
|
|
bigvAnalize,
|
|
coreTransformUser,
|
|
transformMethod,
|
|
bloggerArea
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
.wa-container1 {
|
|
width: 100%;
|
|
height: 970px;
|
|
border: 2px solid #0f2a4d;
|
|
margin-top: 16px;
|
|
overflow: hidden;
|
|
.wa-inner {
|
|
width: 100%;
|
|
height: 460px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
.wa-dd1 {
|
|
width: 944px;
|
|
height: 100%;
|
|
}
|
|
}
|
|
.wa-inner2 {
|
|
width: 100%;
|
|
height: 460px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
.dd2 {
|
|
width: 944px;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
</style> |