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.
53 lines
962 B
53 lines
962 B
4 years ago
|
<!--
|
||
|
* @Author: your name
|
||
|
* @Date: 2021-10-14 19:41:24
|
||
|
* @LastEditTime: 2021-11-10 17:53:28
|
||
|
* @LastEditors: Please set LastEditors
|
||
|
* @Description: In User Settings Edit
|
||
|
* @FilePath: /data-show/src/views/WeiboDetails/weiboTonalDistribution/index.vue
|
||
|
-->
|
||
|
<template>
|
||
|
<div class="wtd-outter">
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "MWDweiboTonalDistribution",
|
||
|
data() {
|
||
|
return {
|
||
|
form: {
|
||
|
token: "",
|
||
|
sBrand: "",
|
||
|
sSeriesName: "",
|
||
|
},
|
||
|
};
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
.wtd-outter {
|
||
|
width: 460px;
|
||
|
height: 460px;
|
||
|
border: 2px solid #0f2a4d;
|
||
|
margin-left: 16px;
|
||
|
padding-bottom: 50px;
|
||
|
.wtd-inner {
|
||
|
width: 100%;
|
||
|
padding: 20px 16px;
|
||
|
.wtd-item {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
margin-bottom: 36px;
|
||
|
.s1 {
|
||
|
display: block;
|
||
|
color: #fff;
|
||
|
font-size: 14px;
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|