47 lines
764 B
Vue
47 lines
764 B
Vue
|
|
<template>
|
|
<cl-container :hideSettingBtn="true">
|
|
<template v-slot:default>
|
|
<temp-table/>
|
|
<time-setting/>
|
|
<temp-power-chart/>
|
|
</template>
|
|
</cl-container>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
import ClContainer from './../ClContainer.vue'
|
|
import TempTable from "./TempTable.vue";
|
|
import TimeSetting from "./TimeSetting.vue";
|
|
import TempPowerChart from "./TempPowerChart.vue";
|
|
export default {
|
|
name:'DzjkClpzXftg',
|
|
components:{ClContainer,TempTable,TimeSetting,TempPowerChart},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods:{
|
|
},
|
|
mounted(){
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
::v-deep{
|
|
.common-card-container .el-card__header{
|
|
padding:5px 20px;
|
|
height:44px;
|
|
.card-title{
|
|
line-height: 34px;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
</style>
|