|
@@ -26,8 +26,8 @@
|
|
<div class="main-contents">
|
|
<div class="main-contents">
|
|
<div class="point-des-box">
|
|
<div class="point-des-box">
|
|
<div>工况点</div>
|
|
<div>工况点</div>
|
|
- <div>负压: {{ selectDataObj.dataH }}</div>
|
|
|
|
- <div>风量: {{ (selectDataObj.dataQ * 60).toFixed(2) }}</div>
|
|
|
|
|
|
+ <div>负压: {{ `${selectDataObj.dataH}Pa` }}</div>
|
|
|
|
+ <div>风量: {{ `${(selectDataObj.dataQ * 60).toFixed(2)}m³/min` }}</div>
|
|
</div>
|
|
</div>
|
|
<div class="main" ref="main"></div>
|
|
<div class="main" ref="main"></div>
|
|
</div>
|
|
</div>
|
|
@@ -35,6 +35,7 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup>
|
|
<script lang="ts" setup>
|
|
|
|
+
|
|
import { ref, reactive, onMounted, nextTick, defineProps, watch } from 'vue';
|
|
import { ref, reactive, onMounted, nextTick, defineProps, watch } from 'vue';
|
|
import { SvgIcon } from '/@/components/Icon';
|
|
import { SvgIcon } from '/@/components/Icon';
|
|
import * as echarts from 'echarts';
|
|
import * as echarts from 'echarts';
|