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.

60 lines
1.1 KiB

<!--
* @Author: your name
* @Date: 2021-10-20 11:19:00
* @LastEditTime: 2021-11-22 10:09:34
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /data-show/src/views/EventDEC/tailAnalysisED/index.vue
-->
<template>
<div class="taed-outter">
</div>
</template>
<script>
export default {
name: "tailAnalysisED",
props: {
id: {
type: String,
default: "",
},
},
data() {
return {
opt: {},
selDatas: [
{
key: 34,
value: "小时",
},
{
key: 20,
value: "天",
},
],
form: {
token: "",
sRele: "",
sTimeType: 20,
},
};
},
};
</script>
<style lang="less" scoped>
.taed-outter {
width: 100%;
height: 412px;
.taed-inner {
width: 100%;
height: calc(100% - 48px);
.taed-d1 {
width: 100%;
height: calc(100% - 48px);
}
}
}
</style>