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.
84 lines
1.7 KiB
84 lines
1.7 KiB
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-10-20 10:56:06
|
|
* @LastEditTime: 2021-11-17 13:34:01
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/EventDEC/wbUserEDE/index.vue
|
|
-->
|
|
<template>
|
|
<div class="wue-outter">
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "wbUserEDE",
|
|
props: {
|
|
id: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
form: {
|
|
token: "",
|
|
sRele: "",
|
|
},
|
|
colors: [
|
|
"#3373CC",
|
|
"#54BF93",
|
|
"#CC9D12",
|
|
"#f15c80",
|
|
"#e4d354",
|
|
"#8085e8",
|
|
"#8d4653",
|
|
"#91e8e1",
|
|
"#f7a35c",
|
|
"#90ed7d",
|
|
"#54BF93",
|
|
"#3373CC",
|
|
"#CC9D12",
|
|
"#f15c80",
|
|
"#e4d354",
|
|
"#8085e8",
|
|
"#8d4653",
|
|
"#91e8e1",
|
|
"#f7a35c",
|
|
"#90ed7d",
|
|
],
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.wue-outter {
|
|
width: 100%;
|
|
height: 460px;
|
|
margin-top: 16px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
.d1 {
|
|
width: 936px;
|
|
height: 100%;
|
|
border: 2px solid #0f2a4d;
|
|
.d1-inner {
|
|
width: 100%;
|
|
height: calc(100% - 48px);
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
.dd1 {
|
|
width: 430px;
|
|
height: 100%;
|
|
}
|
|
.dd2 {
|
|
width: 460px;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|