update 综合驾驶舱
This commit is contained in:
30
src/views/copilot/energy/components/ElecCost.vue
Normal file
30
src/views/copilot/energy/components/ElecCost.vue
Normal file
@@ -0,0 +1,30 @@
|
||||
<!--
|
||||
filename: ElecCost.vue
|
||||
author: liubin
|
||||
date: 2024-04-29 16:37:01
|
||||
description: 电能耗
|
||||
-->
|
||||
|
||||
<template>
|
||||
<div class="elec-cost">elec cost</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "ElecCost",
|
||||
components: {},
|
||||
props: {},
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
computed: {},
|
||||
methods: {},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.elec-cost {
|
||||
background: #cc03;
|
||||
flex: 1;
|
||||
}
|
||||
</style>
|
||||
30
src/views/copilot/energy/components/NatGas.vue
Normal file
30
src/views/copilot/energy/components/NatGas.vue
Normal file
@@ -0,0 +1,30 @@
|
||||
<!--
|
||||
filename: NatGas.vue
|
||||
author: liubin
|
||||
date: 2024-04-29 16:36:27
|
||||
description: 天然气能耗
|
||||
-->
|
||||
|
||||
<template>
|
||||
<div class="nat-gas">nat-gas</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "NatGas",
|
||||
components: {},
|
||||
props: {},
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
computed: {},
|
||||
methods: {},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.nat-gas {
|
||||
background: #31f2;
|
||||
flex: 1;
|
||||
}
|
||||
</style>
|
||||
30
src/views/copilot/energy/components/StockMonitor.vue
Normal file
30
src/views/copilot/energy/components/StockMonitor.vue
Normal file
@@ -0,0 +1,30 @@
|
||||
<!--
|
||||
filename: StockMonitor.vue
|
||||
author: liubin
|
||||
date: 2024-04-29 16:35:40
|
||||
description: 仓库监控·当前
|
||||
-->
|
||||
|
||||
<template>
|
||||
<div class="stock-monitor">仓库监控</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "StockMonitor",
|
||||
components: {},
|
||||
props: {},
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
computed: {},
|
||||
methods: {},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.stock-monitor {
|
||||
background: #fff2;
|
||||
flex: 1;
|
||||
}
|
||||
</style>
|
||||
30
src/views/copilot/energy/components/WaterCost.vue
Normal file
30
src/views/copilot/energy/components/WaterCost.vue
Normal file
@@ -0,0 +1,30 @@
|
||||
<!--
|
||||
filename: WaterCost.vue
|
||||
author: liubin
|
||||
date: 2024-04-29 16:37:34
|
||||
description: 水能耗
|
||||
-->
|
||||
|
||||
<template>
|
||||
<div class="water-cost">water cost</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "WaterCost",
|
||||
components: {},
|
||||
props: {},
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
computed: {},
|
||||
methods: {},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.water-cost {
|
||||
background: #f002;
|
||||
flex: 1;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user