Commit bd65cda3 authored by 裴文涛's avatar 裴文涛
parents d8dff57a 8f72df52
<template>
<div class="contentBlock">
<div class="contentBlockInn">
<el-card class="card-contianer">
<table
cellpadding="0"
cellspacing="1"
style="background-color: #99bbe8"
>
<tr>
<th style="width: 25%">电调阈开启度</th>
......@@ -13,7 +16,13 @@
<table cellpadding="0" cellspacing="0">
<tr>
<td style="text-align: left">
<el-input style="width: 80%"></el-input>%
<el-input style="width: 80%" v-model="formDatas.openingOfElectricValve">
<template #append>
<div style="width: 40px">%
</div>
</template>
</el-input>
</td>
</tr>
......@@ -22,6 +31,7 @@
</tr>
<tr>
<th style="width: 25%">换热站</th>
<td style="text-align: left">
<el-checkbox-group v-model="form.type" style="width: 60%;">
......@@ -43,12 +53,18 @@
<table cellpadding="0" cellspacing="0">
<tr>
<td style="text-align: left">
<el-input style="width: 80%"></el-input>
<el-input style="width: 80%" v-model="formDatas.boilerOutletWaterTemperature">
<template #append >
<div style="width: 40px;">
</div>
</template>
</el-input>
</td>
</tr>
</table>
</td>
</tr>
......@@ -59,7 +75,14 @@
<tr>
<td style="text-align: left">
<el-form>
<el-input style="width: 80%"></el-input>分钟
<el-input style="width: 80%" v-model="formDatas.holdingTime">
<template #append >
<div style="width: 40px">
分钟
</div>
</template>
</el-input>
</el-form>
</td>
......@@ -77,7 +100,14 @@
<table cellpadding="0" cellspacing="0">
<tr>
<td style="text-align: left">
<el-input style="width: 80%"></el-input>m3/h
<el-input style="width: 80%" v-model="formDatas.upperLlimitMainFlow">
<template #append >
<div style="width: 40px;">
m3/h
</div>
</template>
</el-input>
</td>
</tr>
</table>
......@@ -92,7 +122,14 @@
<table cellpadding="0" cellspacing="0">
<tr>
<td style="text-align: left">
<el-input style="width: 80%"></el-input>m3/h
<el-input style="width: 80%" v-model="formDatas.lowerLlimitMainFlow">
<template #append>
<div style="width: 40px">
m3/h
</div>
</template>
</el-input>
</td>
</tr>
......@@ -100,14 +137,20 @@
</td>
</tr>
<tr>
<th style="width: 25%">目标温度最大值</th>
<td style="width: 60%; margin: 0; padding: 0">
<table cellpadding="0" cellspacing="0">
<tr>
<td style="text-align: left">
<el-input style="width: 80%"></el-input>
<el-input style="width: 80%" v-model="formDatas.maxTargetTemperature">
<template #append>
<div style="width: 40px;">
</div>
</template>
</el-input>
</td>
</tr>
......@@ -124,7 +167,13 @@
<table cellpadding="0" cellspacing="0">
<tr>
<td style="text-align: left">
<el-input style="width: 80%"></el-input>分钟
<el-input style="width: 80%" v-model="formDatas.bestHoldingTime">
<template #append>
<div style="width: 40px">
分钟
</div>
</template>
</el-input>
</td>
</tr>
</table>
......@@ -144,52 +193,40 @@
</tr>
</table>
</el-card>
</div>
</div>
<!--操作-->
<!--<th rowspan="3">-->
<!-- <div>-->
<!-- <div class="btngrounp">-->
<!-- <el-button-->
<!-- type="primary"-->
<!-- @click="postTransferEnergyFun"-->
<!-- style="margin: 15px 0 0 0"-->
<!-- >查询</el-button-->
<!-- ><el-button-->
<!-- type="primary"-->
<!-- @click="exportTableToExcel"-->
<!-- style="margin: 15px 0 0 10px"-->
<!-- >打印</el-button-->
<!-- ><el-button-->
<!-- type="primary"-->
<!-- @click="exportTableToExcel"-->
<!-- style="margin: 15px 0 0 10px"-->
<!-- >打印预览</el-button-->
<!-- >-->
<!-- <el-button-->
<!-- type="primary"-->
<!-- @click="exportTableToExcel"-->
<!-- style="margin: 15px 0 0 10px"-->
<!-- >导出</el-button-->
<!-- >-->
<!-- </div>-->
<!-- </div>-->
<!--</th>-->
</template>
<script setup>
import { reactive, onMounted, onUnmounted } from "vue";
import {ref, reactive, onMounted, onUnmounted, onBeforeMount} from "vue";
import http from '../../api/http';
const options = reactive(['瑞景园低区','瑞景园高区','翰锦园','圣美园低区','圣美园高区','社区服务中心','风雅园','风雅园_幼儿园','枫润园低区','枫润园高区']);
const form = reactive({
const form = ref({
type:[],
types:[]
})
const formDatas = ref({
})
const listData = ()=>{
http.get("/api/configboiler/getData").then((result)=>{
formDatas.value=result.data;
console.log('***********&&&&&&&&&&&&')
console.log(formDatas.value)
})
}
listData()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment