[web] 修改首页场站详情运行信息数据不显示问题,修改设备卡片参数的字体大小和行高,修改统计分析曲线图的缩放默认100%,修改统计分析页场站切换下拉数据不更新问题

This commit is contained in:
lixiaoyuan
2025-09-19 18:59:55 +08:00
parent 996cbac88c
commit 0a71d7e61a
4 changed files with 7 additions and 5 deletions

View File

@@ -80,7 +80,7 @@ export default {
title: '运行信息', title: '运行信息',
class: 'operation-status', class: 'operation-status',
componentId:markRaw( OperationalInfo), componentId:markRaw( OperationalInfo),
infoKey: 'dataTotal' infoKey: 'envTotal'
}, },
{ {
title: '场站收益情况', title: '场站收益情况',

View File

@@ -483,9 +483,10 @@ export default {
overflow-y: auto; overflow-y: auto;
.value { .value {
font-weight: 700; font-weight: 700;
font-size: 13px;
} }
.item-info { .item-info {
height: 30px; height: 24px;
} }
} }
.item-gun { .item-gun {
@@ -541,6 +542,7 @@ export default {
} }
.text { .text {
color: $text-color; color: $text-color;
font-size: 13px;
} }
.video { .video {
margin-top: 10px; margin-top: 10px;

View File

@@ -223,7 +223,7 @@ export default {
show: true, show: true,
xAxisIndex: 0, xAxisIndex: 0,
start: 0, start: 0,
end: 20, end: 100,
height: 20, height: 20,
bottom: 10, bottom: 10,
}, },

View File

@@ -176,7 +176,7 @@ export default {
// category:类别1:储能设备,2:充电设备,3:光伏设备,为0或不传查询所有类别总计 // category:类别1:储能设备,2:充电设备,3:光伏设备,为0或不传查询所有类别总计
const query = { const query = {
date: getDateDaysAgo(0), date: getDateDaysAgo(0),
stationId: this.stationId, station_id: this.stationId,
category: 0 category: 0
} }
const res = await getReq('/queryStatTotal', query) const res = await getReq('/queryStatTotal', query)
@@ -216,7 +216,7 @@ export default {
// start_date开始日期格式yyyy-mm-dd // start_date开始日期格式yyyy-mm-dd
// end_date结束日期格式yyyy-mm-dd // end_date结束日期格式yyyy-mm-dd
const query = { const query = {
stationId: this.stationId, station_id: this.stationId,
category, category,
start_date: getDateDaysAgo(7 - 1), start_date: getDateDaysAgo(7 - 1),
end_date: getDateDaysAgo(0) end_date: getDateDaysAgo(0)