郊县管网监测指标

This commit is contained in:
1378012178@qq.com 2025-08-28 10:35:21 +08:00
parent edb522a422
commit e28f1bd987
5 changed files with 330 additions and 23 deletions

View File

@ -22,15 +22,15 @@
</a-select>
</a-form-item>
</a-col>
<!-- <a-col :lg="5">-->
<!-- <a-form-item label="换热站">-->
<!-- <a-select ref="select" placeholder="请选择换热站" v-model:value="queryParam.view004" style="width: 250px"-->
<!-- @focus="focus" @change="handleChange3">-->
<!-- <a-select-option :value="item.id" v-for="item in heatsourcestation" :key="item.id">{{ item.stationName-->
<!-- }}</a-select-option>-->
<!-- </a-select>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :lg="5">-->
<!-- <a-form-item label="换热站">-->
<!-- <a-select ref="select" placeholder="请选择换热站" v-model:value="queryParam.view004" style="width: 250px"-->
<!-- @focus="focus" @change="handleChange3">-->
<!-- <a-select-option :value="item.id" v-for="item in heatsourcestation" :key="item.id">{{ item.stationName-->
<!-- }}</a-select-option>-->
<!-- </a-select>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<a-col :lg="5">
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
<a-col :lg="6">
@ -64,6 +64,10 @@
</div>
<!--引用表格-->
<BasicTable @register="registerTable">
<!--操作栏-->
<template #action="{ record }">
<TableAction :actions="getTableAction(record)" />
</template>
<template v-slot:bodyCell="{ column, record, index, text }">
<template v-if="column.dataIndex === 'view005'">
<span v-if="record.fromFlow == 0">{{ record.view005 }}</span>
@ -77,6 +81,8 @@
</template>
</template>
</BasicTable>
<HeatanalysisModal ref="registerModal"></HeatanalysisModal>
</div>
</template>
@ -86,6 +92,7 @@ import { BasicTable, useTable, TableAction } from '/@/components/Table';
import { useListPage } from '/@/hooks/system/useListPage';
import { columnsJx } from './Heatanalysis.data';
import { list, companylist, heatsourcelist, heatsourcestationlist } from './Heatanalysis.api';
import HeatanalysisModal from './components/HeatanalysisModal.vue'
const queryParam = ref<any>({});
const toggleSearchStatus = ref<boolean>(false);
@ -99,7 +106,6 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
canResize: false,
useSearchForm: false,
clickToRowSelect: false,
showActionColumn: false,
showIndexColumn: false,
tableSetting: {
//
@ -156,13 +162,13 @@ function searchReset() {
const thermalcompany = ref();
async function getThermalcompany() {
let params = {regionType:'郊县'};
let params = { regionType: '郊县' };
thermalcompany.value = await companylist(params);
}
const heatsource = ref();
async function getHeatsource() {
let params = {regionType:'郊县'};
let params = { regionType: '郊县' };
heatsource.value = await heatsourcelist(params);
}
@ -172,7 +178,7 @@ async function getHeatsource() {
// }
async function handleChange1(record) {
var params = { companyId: record,regionType:'郊县' };
var params = { companyId: record, regionType: '郊县' };
heatsource.value = await heatsourcelist(params);
// heatsourcestation.value = [];
}
@ -183,6 +189,22 @@ async function handleChange2(record) {
function handleChange3(record) {
}
function handleDetail(record) {
registerModal.value.jxDetail(record)
}
/**
* 操作栏
*/
function getTableAction(record) {
return [
{
label: '详情',
onClick: handleDetail.bind(null, record),
},
];
}
onMounted(() => {
getThermalcompany();
getHeatsource();

View File

@ -4,16 +4,23 @@
<HeatanalysisForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false">
</HeatanalysisForm>
</a-modal>
<a-modal title="详情" width="100vw" wrap-class-name="full-modal" :visible="cqzxtVisible" @cancel="handleCqzxtCancel"
:okButtonProps="{ class: { 'jee-hidden': true } }" cancelText="关闭">
<Cqzxt ref="cqzxtRef"></Cqzxt>
<!-- 城区折线图 -->
<a-modal title="详情" width="100vw" wrap-class-name="full-modal" v-if="cqzxtVisible" :visible="cqzxtVisible"
@cancel="handleCqzxtCancel" :okButtonProps="{ class: { 'jee-hidden': true } }" cancelText="关闭">
<ZxtCQ ref="cqzxtRef"></ZxtCQ>
</a-modal>
<!-- 郊县折线图 -->
<a-modal title="详情" width="100vw" wrap-class-name="full-modal" v-if="jxzxtVisible" :visible="jxzxtVisible"
@cancel="handleJxzxtCancel" :okButtonProps="{ class: { 'jee-hidden': true } }" cancelText="关闭">
<ZxtJX ref="jxzxtRef"></ZxtJX>
</a-modal>
</template>
<script lang="ts" setup>
import { ref, nextTick, defineExpose } from 'vue';
import HeatanalysisForm from './HeatanalysisForm.vue'
import Cqzxt from './Cqzxt.vue'
import ZxtCQ from './ZxtCQ.vue'
import ZxtJX from './ZxtJX.vue'
const title = ref<string>('');
const width = ref<number>(800);
@ -23,6 +30,8 @@ const registerForm = ref();
const emit = defineEmits(['register', 'success']);
const cqzxtVisible = ref(false)
const cqzxtRef = ref()
const jxzxtVisible = ref(false)
const jxzxtRef = ref()
/**
* 新增
@ -71,7 +80,7 @@ function handleCancel() {
function cqDetail(record) {
cqzxtVisible.value = true
nextTick(()=>{
nextTick(() => {
cqzxtRef.value.init(record)
})
}
@ -80,11 +89,23 @@ function handleCqzxtCancel() {
cqzxtVisible.value = false
}
function jxDetail(record) {
jxzxtVisible.value = true
nextTick(() => {
jxzxtRef.value.init(record)
})
}
function handleJxzxtCancel() {
jxzxtVisible.value = false
}
defineExpose({
add,
edit,
disableSubmit,
cqDetail,
jxDetail,
});
</script>
@ -101,11 +122,13 @@ defineExpose({
padding-bottom: 0;
margin: 0;
}
.ant-modal-content {
display: flex;
flex-direction: column;
height: calc(100vh);
}
.ant-modal-body {
flex: 1;
}

View File

@ -53,13 +53,16 @@ function safeNum(v: any) {
}
function buildHeader(records: any[], record_: any) {
if (records && records.length > 0) {
const r = records[0];
return `${r.view001Name || ''}/${r.view002Name || ''}/${r.view004Name || ''}`;
}
return `${record_.view001Name || ''}/${record_.view002Name || ''}/${record_.view004Name || ''}`.replace(/\/+$/, '');
const r = (records && records.length > 0) ? records[0] : record_;
//
const names = [r.view001Name, r.view002Name, r.view004Name].filter(v => v && v !== '');
//
return names.join(' → ');
}
function initChartsOptions(records: any[]) {
records.sort((a: any, b: any) => new Date(a.datatime).getTime() - new Date(b.datatime).getTime());
const xAxis = records.map((r: any) => r.datatime);

View File

@ -0,0 +1,255 @@
<template>
<div class="wrap">
<div class="title">{{ headerText }}</div>
<a-tabs v-model:activeKey="activeTab" centered @change="onTabChange">
<a-tab-pane key="temp" tab="温度指标">
<div ref="tempChartRef" class="chart-box"></div>
</a-tab-pane>
<a-tab-pane key="press" tab="压力指标">
<div ref="pressChartRef" class="chart-box"></div>
</a-tab-pane>
<a-tab-pane key="heat" tab="热量指标">
<div ref="heatChartRef" class="chart-box"></div>
</a-tab-pane>
<a-tab-pane key="flow" tab="流量指标">
<div ref="flowChartRef" class="chart-box"></div>
</a-tab-pane>
</a-tabs>
</div>
</template>
<script lang="ts" setup>
import { ref, nextTick, defineProps, onUnmounted } from 'vue';
import * as echarts from 'echarts';
import { useMessage } from '/@/hooks/web/useMessage';
import { jxpage } from '/@/views/heating/history/HeatanalysisHistory.api';
const props = defineProps({});
const { createMessage } = useMessage();
const activeTab = ref('temp'); // tab
// 7
const end = new Date();
end.setHours(23, 59, 59, 999);
const start = new Date(end);
start.setDate(end.getDate() - 6);
start.setHours(0, 0, 0, 0);
const pad = (n: number) => String(n).padStart(2, '0');
function formatDateTime(d: Date) {
return `${d.getFullYear()}-${pad(d.getMonth() + 1)}-${pad(d.getDate())} ${pad(d.getHours())}:${pad(d.getMinutes())}:${pad(d.getSeconds())}`;
}
const tempChartRef = ref<HTMLElement | null>(null);
const pressChartRef = ref<HTMLElement | null>(null);
const heatChartRef = ref<HTMLElement | null>(null);
const flowChartRef = ref<HTMLElement | null>(null);
let tempChart: echarts.ECharts | null = null;
let pressChart: echarts.ECharts | null = null;
let heatChart: echarts.ECharts | null = null;
let flowChart: echarts.ECharts | null = null;
let tempOption: any = null;
let pressOption: any = null;
let heatOption: any = null;
let flowOption: any = null;
const headerText = ref(''); //
function safeNum(v: any) {
if (v === null || v === undefined || v === '') return null;
const n = Number(v);
return Number.isNaN(n) ? null : n;
}
function buildHeader(records: any[], record_: any) {
const r = (records && records.length > 0) ? records[0] : record_;
const names = [r.view001Name, r.view002Name].filter(v => v && v !== '');
return names.join(' → ');
}
function initChartsOptions(records: any[]) {
// datatime view032
records.sort((a: any, b: any) => {
const ta = new Date(a.datatime || a.view032 || '').getTime();
const tb = new Date(b.datatime || b.view032 || '').getTime();
return (isNaN(ta) ? 0 : ta) - (isNaN(tb) ? 0 : tb);
});
// 使 view032 datatime
const xAxis = records.map((r: any) => r.view032 || r.datatime || '');
const tempSeries = [
{ name: '供水温度', key: 'view005' },
{ name: '回水温度', key: 'view006' },
].map(s => ({
name: s.name,
type: 'line',
showSymbol: false,
connectNulls: false,
data: records.map((r: any) => safeNum(r[s.key])),
}));
const pressSeries = [
{ name: '供水压力', key: 'view007' },
{ name: '回水压力', key: 'view008' },
].map(s => ({
name: s.name,
type: 'line',
showSymbol: false,
connectNulls: false,
data: records.map((r: any) => safeNum(r[s.key])),
}));
// view041 view042
const heatSeries = [
{ name: '瞬时热量', key: 'view041' },
{ name: '正累积热量', key: 'view042' },
].map(s => ({
name: s.name,
type: 'line',
showSymbol: false,
connectNulls: false,
data: records.map((r: any) => safeNum(r[s.key])),
}));
// view037 view038
const flowSeries = [
{ name: '瞬时流量', key: 'view037' },
{ name: '正累积流量', key: 'view038' },
].map(s => ({
name: s.name,
type: 'line',
showSymbol: false,
connectNulls: false,
data: records.map((r: any) => safeNum(r[s.key])),
}));
const baseOption = {
tooltip: { trigger: 'axis', axisPointer: { type: 'cross' } },
legend: { top: 36, left: 'center' },
grid: { left: '5%', right: '5%', bottom: 70, top: 70, containLabel: true },
xAxis: {
type: 'category',
data: xAxis,
boundaryGap: false,
axisLabel: {
interval: 0,
formatter: (val: string) => val ? val.replace(' ', '\n') : val,
},
},
yAxis: { type: 'value', scale: true },
};
tempOption = { ...baseOption, title: { text: '温度指标', left: 'center', top: 8 }, series: tempSeries };
pressOption = { ...baseOption, title: { text: '压力指标', left: 'center', top: 8 }, series: pressSeries };
heatOption = { ...baseOption, title: { text: '热量指标', left: 'center', top: 8 }, series: heatSeries };
flowOption = { ...baseOption, title: { text: '流量指标', left: 'center', top: 8 }, series: flowSeries };
}
let resizeAdded = false;
function ensureResizeListener() {
if (resizeAdded) return;
const onResize = () => {
tempChart?.resize();
pressChart?.resize();
heatChart?.resize();
flowChart?.resize();
};
window.addEventListener('resize', onResize);
onUnmounted(() => {
window.removeEventListener('resize', onResize);
});
resizeAdded = true;
}
function init(record_: any) {
const params = {
pageNo: 1,
pageSize: -1,
regionType: '郊县',
view001: record_.view001,
view002: record_.view002,
view004: -1,
SDateStr: formatDateTime(start),
EDateStr: formatDateTime(end),
};
jxpage(params).then((res: any) => {
console.log("🌊 ~ init ~ res:", res)
const records = (res && res.records) ? res.records : [];
headerText.value = buildHeader(records, record_);
initChartsOptions(records);
nextTick(() => {
// tab
if (tempChartRef.value) {
if (!tempChart) tempChart = echarts.init(tempChartRef.value);
tempChart.setOption(tempOption);
}
ensureResizeListener();
});
}).catch(err => {
console.error(err);
createMessage.error('获取数据失败');
});
}
// tab init
function onTabChange(key: string) {
nextTick(() => {
if (key === 'temp') {
if (!tempChart && tempChartRef.value) {
tempChart = echarts.init(tempChartRef.value);
tempChart.setOption(tempOption);
}
tempChart?.resize();
} else if (key === 'press') {
if (!pressChart && pressChartRef.value) {
pressChart = echarts.init(pressChartRef.value);
pressChart.setOption(pressOption);
}
pressChart?.resize();
} else if (key === 'heat') {
if (!heatChart && heatChartRef.value) {
heatChart = echarts.init(heatChartRef.value);
heatChart.setOption(heatOption);
}
heatChart?.resize();
} else if (key === 'flow') {
if (!flowChart && flowChartRef.value) {
flowChart = echarts.init(flowChartRef.value);
flowChart.setOption(flowOption);
}
flowChart?.resize();
}
});
}
defineExpose({ init });
onUnmounted(() => {
if (tempChart) { tempChart.dispose(); tempChart = null; }
if (pressChart) { pressChart.dispose(); pressChart = null; }
if (heatChart) { heatChart.dispose(); heatChart = null; }
if (flowChart) { flowChart.dispose(); flowChart = null; }
});
</script>
<style lang="less" scoped>
.wrap {
width: 80%;
margin: 0 auto;
}
.title {
text-align: center;
font-size: 16px;
font-weight: 600;
margin: 12px 0;
}
.chart-box {
width: 100%;
height: 60vh;
}
</style>

View File

@ -5,6 +5,7 @@ const { createConfirm } = useMessage();
enum Api {
list = '/heating/heatanalysishistory/page',
jxpage = '/heating/heatanalysishistory/jxpage',
companylist = '/heating/thermalcompany/list',
heatsourcelist = '/heating/heatsource/list',
heatsourcestationlist = '/heating/heatsourcestation/list',
@ -17,6 +18,9 @@ enum Api {
export const list = (params) =>
defHttp.get({url: Api.list, params});
export const jxpage = (params) =>
defHttp.get({url: Api.jxpage, params});
export const companylist = (params) =>
defHttp.get({url: Api.companylist, params});