lg_frontend/components/peak-coal-monitoring/EnergyProfile.vue

155 lines
3.4 KiB
Vue
Raw Normal View History

2024-03-05 12:02:32 +00:00
<template>
<div class="energy-profile">
2024-03-08 13:34:45 +00:00
<peak-secondary-title :title="title">
<template>
<div class="right-tab">
<div class="tab-type" v-for="item of tabDataList" :class="activeDateTab === item.value? 'active-tab':''"
@click="tabDateChange(item.value)">
{{ item.name }}
</div>
</div>
</template>
</peak-secondary-title>
2024-03-05 12:02:32 +00:00
<div class="_tab">
<div class="tab-item" v-for="item of tabList" :class="item.value === activeTab?'active-tab':''"
@click="tabChange(item.value)">{{ item.label }}
</div>
</div>
<div class="energy-content">
<div class="peak-energy-use" v-if="activeTab === 1">
<peak-energy-use/>
</div>
<div class="peak-enterprise-operations">
<peak-enterprise-operations v-if="activeTab === 2"/>
</div>
</div>
</div>
</template>
<script>
import PeakSecondaryTitle from "@/components/peak-coal-monitoring/PeakSecondaryTitle";
import PeakEnergyUse from "@/components/peak-coal-monitoring/PeakEnergyUse";
import PeakEnterpriseOperations from "@/components/peak-coal-monitoring/PeakEnterpriseOperations";
export default {
name: "EnergyProfile",
components: {PeakEnterpriseOperations, PeakEnergyUse, PeakSecondaryTitle},
data() {
return {
title: '能源概况',
tabList: [
{
label: '能源使用情况',
value: 1
},
{
label: '企业运营情况',
value: 2
}
],
2024-03-08 13:34:45 +00:00
tabDataList: [
{
name: '今日',
value: '0'
},
{
name: '本月',
value: '1'
},
{
name: '上月',
value: '2'
}
],
activeDateTab:'0',
2024-03-05 12:02:32 +00:00
activeTab: 1
}
},
methods: {
tabChange(val) {
this.activeTab = val
2024-03-08 13:34:45 +00:00
},
tabDateChange(val) {
this.activeDateTab = val
},
2024-03-05 12:02:32 +00:00
}
}
</script>
<style scoped lang="less">
@import "assets/styles/mixin";
.energy-profile {
height: 100%;
width: 100%;
.flex-column;
._tab {
margin-top: 10px;
width: 100%;
height: 30px;
.flex-row;
.tab-item {
width: 50%;
height: 100%;
font-family: MicrosoftYaHei-Bold;
font-size: 14px;
color: #FFFFFF;
letter-spacing: 0;
text-align: center;
text-shadow: 0 2px 2px rgba(0, 0, 0, 0.50);
font-weight: 700;
cursor: pointer;
}
.active-tab {
background: url("~/assets/peakCoalMonitoring/common/tab-active-bg.png") no-repeat;
background-size: 100% 100%;
}
}
.energy-content {
flex: 1;
height: 0;
.peak-energy-use{
height: 100%;
}
.peak-enterprise-operations{
height: 100%;
}
}
2024-03-08 13:34:45 +00:00
.right-tab {
height: 100%;
.flex-row;
justify-content: space-between;
width: 220px;
.tab-type {
margin-bottom: 15px;
width: 67px;
height: 30px;
.bg("~/assets/peakCoalImages/left/pollutant-type-default-bg.png");
font-family: MicrosoftYaHei;
font-size: 14px;
color: rgba(216, 240, 255, 0.50);
letter-spacing: 0;
text-align: center;
line-height: 30px;
text-shadow: 0 0 11px #0091FF;
font-weight: 400;
cursor: pointer;
}
.active-tab {
.bg("~/assets/peakCoalImages/left/pollutant-type-active-bg.png");
color: #D8F0FF;
text-shadow: 0 0 33px #0091FF;
font-weight: 400;
}
}
2024-03-05 12:02:32 +00:00
}
</style>