Jelajahi Sumber

优化换热站和环路的字段显示

yanglzh 2 tahun lalu
induk
melakukan
a13b46a42c

+ 2 - 2
src/views/heating/energyAnalysis/stationPerformanceAppraisal/index.vue

@@ -67,9 +67,9 @@
 				<el-table-column :label="`总耗热(${unitMap['总耗热']})`" prop="unitConsumptionTotal" />
 				<el-table-column :label="`热单耗(${unitMap['总单耗']})`" prop="unitConsumption" />
 				<el-table-column :label="`总耗水(${unitMap['总耗水']})`" prop="flowLossTotal" />
-				<el-table-column :label="`水单耗(${unitMap['日失水单耗']})`" prop="flowLoss" />
+				<el-table-column :label="`小时补水量(${unitMap['小时补水量']})`" prop="flowLoss" />
 				<el-table-column :label="`供热负荷(${unitMap['供热负荷']})`" prop="unitConsumptionDemand" />
-				<el-table-column :label="`失水量(${unitMap['失水量']})`" prop="flowLossDemand" />
+				<!-- <el-table-column :label="`失水量(${unitMap['失水量']})`" prop="flowLossDemand" /> -->
 			</el-table>
 
 			<pagination

+ 4 - 4
src/views/heating/heatStation/heatStation/index.vue

@@ -56,14 +56,14 @@
 				<!-- <el-table-column label="ID" align="center" prop="id" width="60" /> -->
 				<el-table-column label="换热站" prop="name" v-col="'name'" :show-overflow-tooltip="true" />
 				<el-table-column label="换热站编号" prop="code" v-col="'code'" :show-overflow-tooltip="true" />
-				<el-table-column label="位置" prop="position" v-col="'position'" :show-overflow-tooltip="true" />
-				<el-table-column label="负责人" prop="principalInfo.userNickname" v-col="'principalInfo.userNickname'" width="80" />
-				<el-table-column label="状态" prop="status" v-col="'status'" width="80">
+				<el-table-column label="位置" prop="position" v-col="'position'" min-width="120" :show-overflow-tooltip="true" />
+				<el-table-column label="负责人" prop="principalInfo.userNickname" v-col="'principalInfo.userNickname'" width="100" />
+				<el-table-column label="状态" prop="status" v-col="'status'" width="100">
 					<template #default="scope">
 						{{ scope.row.status === 1 ? '启用' : '禁用' }}
 					</template>
 				</el-table-column>
-				<el-table-column label="创建时间" prop="createdAt" v-col="'createdAt'" :show-overflow-tooltip="true" />
+				<el-table-column label="创建时间" prop="createdAt" v-col="'createdAt'" :show-overflow-tooltip="true"  width="180"/>
 				<el-table-column label="操作" width="200" v-col="'handle'" align="center">
 					<template #default="scope">
 						<el-button size="small" text type="primary" @click="onOpenDetail(scope.row)">详情</el-button>