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.
101 lines
2.5 KiB
101 lines
2.5 KiB
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-10-13 11:31:08
|
|
* @LastEditTime: 2021-10-13 15:14:23
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/EventDetails/eventCorrelation/index.vue
|
|
-->
|
|
<template>
|
|
<div class="ec-outter">
|
|
<div class="ec-top" align="center">
|
|
<v-btn @click="goback">返回品牌洞察</v-btn>
|
|
</div>
|
|
<div class="ec-inner">
|
|
<span class="ec-label">奥迪</span>
|
|
<div class="ec-footer">
|
|
<img class="m1" src="../../../assets/images/BrandInsight/ic_glsl.png" />
|
|
<div class="d1">
|
|
<span class="s1">74,073,195</span>
|
|
<span class="s2">事件关联数量(条)</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "eventCorrelation",
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {
|
|
goback() {
|
|
this.$router.go(-1);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.ec-outter {
|
|
display: flex;
|
|
width: 620px;
|
|
height: 560px;
|
|
justify-content: center;
|
|
margin-left: 16px;
|
|
.ec-top {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: auto;
|
|
top: 0px;
|
|
left: 0px;
|
|
}
|
|
.ec-inner {
|
|
position: relative;
|
|
width: 470px;
|
|
height: 520px;
|
|
margin-top: 38px;
|
|
background-image: url("../../../assets/images/BrandInsight/img_tz.png");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
.ec-label {
|
|
text-align: center;
|
|
display: block;
|
|
font-size: 40px;
|
|
color: #b2daf7;
|
|
margin-top: 110px;
|
|
}
|
|
.ec-footer {
|
|
position: absolute;
|
|
width: auto;
|
|
height: auto;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
bottom: 16px;
|
|
left: 96px;
|
|
.m1 {
|
|
width: 80px;
|
|
height: 80px;
|
|
}
|
|
.d1 {
|
|
margin-left: 20px;
|
|
.s1 {
|
|
display: block;
|
|
font-family: Bebas;
|
|
font-size: 38px;
|
|
color: #fff;
|
|
}
|
|
.s2 {
|
|
display: block;
|
|
font-size: 22px;
|
|
color: #afb2b7;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|