Files
emsfront/src/views/ems/dzjk/clpz/xftg/index.vue

47 lines
764 B
Vue
Raw Normal View History

2025-06-25 12:55:58 +08:00
<template>
2025-06-26 01:29:16 +08:00
<cl-container :hideSettingBtn="true">
<template v-slot:default>
<temp-table/>
<time-setting/>
<temp-power-chart/>
</template>
</cl-container>
2025-06-25 12:55:58 +08:00
</template>
<script>
2025-06-26 01:29:16 +08:00
import ClContainer from './../ClContainer.vue'
import TempTable from "./TempTable.vue";
import TimeSetting from "./TimeSetting.vue";
import TempPowerChart from "./TempPowerChart.vue";
2025-06-25 12:55:58 +08:00
export default {
name:'DzjkClpzXftg',
2025-06-26 01:29:16 +08:00
components:{ClContainer,TempTable,TimeSetting,TempPowerChart},
2025-06-25 12:55:58 +08:00
data() {
return {
}
},
methods:{
},
mounted(){
}
}
</script>
<style scoped lang="scss">
2025-06-26 01:29:16 +08:00
::v-deep{
.common-card-container .el-card__header{
padding:5px 20px;
height:44px;
.card-title{
line-height: 34px;
}
}
}
2025-06-25 12:55:58 +08:00
</style>