唐润平:UI显示面板开发起步版

This commit is contained in:
trp
2023-12-08 16:12:55 +08:00
parent 3edbf7312f
commit e20b7c1002
34 changed files with 1202 additions and 4 deletions

View File

@@ -1,13 +1,24 @@
<template>
<div>
<tunnel-scene id="tunnel-box"/>
<tunnel-scene id="tunnel-box" />
<fan-info />
<transducer-list />
<used-ele />
<wind-pressure-list />
<air-info />
<bad-gas-info />
</div>
</template>
<script setup>
import TunnelScene from "@/components/content/tunnelScene/TunnelScene.vue";
// 两边echarts展示
import FanInfo from "../../components/content/fanInfo/FanInfo.vue";
import TransducerList from "../../components/content/transducerList/TransducerList.vue";
import UsedEle from "../../components/content/usedEle/UsedEle.vue";
import WindPressureList from "../../components/content/windPressure/WindPressureList.vue";
import AirInfo from "../../components/content/airInfo/AirInfo.vue";
import BadGasInfo from "../../components/content/badGasInfo/BadGasInfo.vue";
</script>
<style lang="scss" scoped>
</style>
<style lang="scss" scoped></style>