2025-06-21 23:59:01 +08:00
|
|
|
|
<template>
|
2026-02-15 16:24:29 +08:00
|
|
|
|
<div>
|
|
|
|
|
|
<div class="pcs-tags">
|
|
|
|
|
|
<el-tag
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
:type="selectedClusterId ? 'info' : 'primary'"
|
|
|
|
|
|
:effect="selectedClusterId ? 'plain' : 'dark'"
|
|
|
|
|
|
class="pcs-tag-item"
|
|
|
|
|
|
@click="handleTagClick('')"
|
|
|
|
|
|
>
|
|
|
|
|
|
全部
|
|
|
|
|
|
</el-tag>
|
|
|
|
|
|
<el-tag
|
|
|
|
|
|
v-for="(item, index) in clusterDeviceList"
|
|
|
|
|
|
:key="index + 'clusterTag'"
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
:type="selectedClusterId === (item.deviceId || item.id) ? 'primary' : 'info'"
|
|
|
|
|
|
:effect="selectedClusterId === (item.deviceId || item.id) ? 'dark' : 'plain'"
|
|
|
|
|
|
class="pcs-tag-item"
|
|
|
|
|
|
@click="handleTagClick(item.deviceId || item.id || '')"
|
|
|
|
|
|
>
|
|
|
|
|
|
{{ item.deviceName || item.name || item.deviceId || item.id || 'BMS电池簇' }}
|
|
|
|
|
|
</el-tag>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div v-for="(baseInfo,index) in filteredBaseInfoList" :key="index+'bmsdccContainer'" style="margin-bottom:25px;">
|
2025-12-12 17:38:26 +08:00
|
|
|
|
<el-card shadow="always"
|
|
|
|
|
|
class="sbjk-card-container common-card-container-body-no-padding common-card-container-no-title-bg"
|
2026-01-23 22:32:12 +08:00
|
|
|
|
:class="handleCardClass(baseInfo)">
|
2025-06-28 14:52:49 +08:00
|
|
|
|
<div slot="header">
|
2025-12-12 17:38:26 +08:00
|
|
|
|
<span
|
2026-01-12 14:15:21 +08:00
|
|
|
|
class="large-title">{{
|
|
|
|
|
|
baseInfo.parentDeviceName ? `${baseInfo.parentDeviceName} -> ` : ''
|
|
|
|
|
|
}}{{ baseInfo.deviceName }}</span>
|
2025-11-26 17:50:06 +08:00
|
|
|
|
<div class="info">
|
2025-12-12 17:38:26 +08:00
|
|
|
|
<div>数据更新时间:{{ baseInfo.dataUpdateTime || '-' }}</div>
|
2025-11-26 17:50:06 +08:00
|
|
|
|
</div>
|
2025-11-25 17:56:12 +08:00
|
|
|
|
<div class="alarm">
|
2025-12-12 17:38:26 +08:00
|
|
|
|
<el-button type="primary" round size="small" style="margin-right:20px;"
|
|
|
|
|
|
@click="pointDetail(baseInfo,'point')">详细
|
|
|
|
|
|
</el-button>
|
2026-01-24 10:27:43 +08:00
|
|
|
|
<el-badge :hidden="!baseInfo.alarmNum" :value="baseInfo.alarmNum || 0" class="item">
|
2025-11-26 17:50:06 +08:00
|
|
|
|
<i
|
|
|
|
|
|
class="el-icon-message-solid alarm-icon"
|
|
|
|
|
|
@click="pointDetail(baseInfo,'alarmPoint')"
|
|
|
|
|
|
></i>
|
|
|
|
|
|
</el-badge>
|
2025-11-25 17:56:12 +08:00
|
|
|
|
</div>
|
2025-06-22 21:01:34 +08:00
|
|
|
|
</div>
|
2025-12-12 17:38:26 +08:00
|
|
|
|
<div class="descriptions-main">
|
|
|
|
|
|
<el-descriptions direction="vertical" :column="3" :colon="false">
|
2026-01-23 22:32:12 +08:00
|
|
|
|
<el-descriptions-item
|
|
|
|
|
|
contentClassName="descriptions-direction work-status"
|
|
|
|
|
|
:span="1" label="工作状态">
|
2026-02-16 13:41:41 +08:00
|
|
|
|
<span
|
|
|
|
|
|
class="pointer"
|
|
|
|
|
|
:class="{ 'field-disabled': !hasFieldPointId(baseInfo, 'workStatus') }"
|
|
|
|
|
|
@click="handleFieldClick(baseInfo, 'workStatus', '工作状态')"
|
|
|
|
|
|
>
|
2026-04-12 15:18:00 +08:00
|
|
|
|
{{ formatDictValue(clusterWorkStatusOptions, baseInfo.workStatus) }}
|
2026-02-16 13:41:41 +08:00
|
|
|
|
</span>
|
2025-12-12 17:38:26 +08:00
|
|
|
|
</el-descriptions-item>
|
2026-01-23 22:32:12 +08:00
|
|
|
|
<el-descriptions-item contentClassName="descriptions-direction"
|
2025-12-12 17:38:26 +08:00
|
|
|
|
:span="1" label="与PCS通信">
|
2026-02-16 13:41:41 +08:00
|
|
|
|
<span
|
|
|
|
|
|
class="pointer"
|
|
|
|
|
|
:class="{ 'field-disabled': !hasFieldPointId(baseInfo, 'pcsCommunicationStatus') }"
|
|
|
|
|
|
@click="handleFieldClick(baseInfo, 'pcsCommunicationStatus', '与PCS通信')"
|
|
|
|
|
|
>
|
2026-04-12 15:18:00 +08:00
|
|
|
|
{{ formatDictValue(clusterPcsCommunicationStatusOptions, baseInfo.pcsCommunicationStatus) }}
|
2026-02-16 13:41:41 +08:00
|
|
|
|
</span>
|
2025-12-12 17:38:26 +08:00
|
|
|
|
</el-descriptions-item>
|
2026-01-23 22:32:12 +08:00
|
|
|
|
<el-descriptions-item contentClassName="descriptions-direction"
|
2025-12-12 17:38:26 +08:00
|
|
|
|
:span="1" label="与EMS通信">
|
2026-02-16 13:41:41 +08:00
|
|
|
|
<span
|
|
|
|
|
|
class="pointer"
|
|
|
|
|
|
:class="{ 'field-disabled': !hasFieldPointId(baseInfo, 'emsCommunicationStatus') }"
|
|
|
|
|
|
@click="handleFieldClick(baseInfo, 'emsCommunicationStatus', '与EMS通信')"
|
|
|
|
|
|
>
|
2026-04-12 15:18:00 +08:00
|
|
|
|
{{ formatDictValue(clusterEmsCommunicationStatusOptions, baseInfo.emsCommunicationStatus) }}
|
2026-02-16 13:41:41 +08:00
|
|
|
|
</span>
|
2025-12-12 17:38:26 +08:00
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="descriptions-main descriptions-main-bg-color">
|
|
|
|
|
|
<el-descriptions direction="vertical" :column="3" :colon="false">
|
|
|
|
|
|
<el-descriptions-item labelClassName="descriptions-label" contentClassName="descriptions-direction"
|
|
|
|
|
|
v-for="(item,index) in infoData" :key="index+'pcsInfoData'" :span="1"
|
|
|
|
|
|
:label="item.label">
|
2026-02-16 13:41:41 +08:00
|
|
|
|
<span
|
|
|
|
|
|
class="pointer"
|
|
|
|
|
|
:class="{ 'field-disabled': !hasFieldPointId(baseInfo, item.attr) }"
|
|
|
|
|
|
@click="handleFieldClick(baseInfo, item.attr, item.label)"
|
|
|
|
|
|
>
|
2026-02-15 16:24:29 +08:00
|
|
|
|
<i v-if="isPointLoading(baseInfo[item.attr])" class="el-icon-loading point-loading-icon"></i>
|
|
|
|
|
|
<span v-else>{{ displayValue(baseInfo[item.attr]) | formatNumber }}</span>
|
|
|
|
|
|
<span v-if="item.unit" v-html="item.unit"></span>
|
2025-09-13 20:36:46 +08:00
|
|
|
|
</span>
|
2025-12-12 17:38:26 +08:00
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
<!-- 进度-->
|
|
|
|
|
|
<div class="process-container">
|
|
|
|
|
|
<div class="process-line-bg">
|
|
|
|
|
|
<div class="process-line" :style="{height:baseInfo.currentSoc+'%'}"></div>
|
|
|
|
|
|
</div>
|
2026-02-16 13:41:41 +08:00
|
|
|
|
<div
|
|
|
|
|
|
class="process pointer"
|
|
|
|
|
|
:class="{ 'field-disabled': !hasFieldPointId(baseInfo, 'currentSoc') }"
|
|
|
|
|
|
@click="handleFieldClick(baseInfo, 'currentSoc', '当前SOC')"
|
|
|
|
|
|
>当前SOC :
|
2025-12-12 17:38:26 +08:00
|
|
|
|
{{ baseInfo.currentSoc }}%
|
2025-06-22 21:01:34 +08:00
|
|
|
|
</div>
|
2025-06-21 23:59:01 +08:00
|
|
|
|
</div>
|
2025-12-12 17:38:26 +08:00
|
|
|
|
</div>
|
2025-06-28 14:52:49 +08:00
|
|
|
|
<el-table
|
2025-12-12 17:38:26 +08:00
|
|
|
|
class="common-table"
|
|
|
|
|
|
:data="baseInfo.batteryDataList"
|
|
|
|
|
|
stripe
|
|
|
|
|
|
style="width: 100%;margin-top:25px;">
|
2025-06-28 14:52:49 +08:00
|
|
|
|
<el-table-column
|
2025-12-12 17:38:26 +08:00
|
|
|
|
prop="dataName"
|
|
|
|
|
|
label="名称">
|
2025-06-28 14:52:49 +08:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<span v-html="scope.row.dataName+'('+unitObj[scope.row.dataName]+')'"></span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column
|
2025-12-12 17:38:26 +08:00
|
|
|
|
prop="avgData"
|
|
|
|
|
|
label="单体平均值"
|
2025-06-28 14:52:49 +08:00
|
|
|
|
>
|
2025-09-13 20:36:46 +08:00
|
|
|
|
<template slot-scope="scope">
|
2025-12-12 17:38:26 +08:00
|
|
|
|
<span class="pointer"
|
2026-02-16 13:41:41 +08:00
|
|
|
|
:class="{ 'field-disabled': !hasTableFieldPointId(baseInfo, scope.row.dataName, scope.column.label) }"
|
|
|
|
|
|
@click="handleTableFieldClick(baseInfo, scope.row.dataName, scope.column.label)">{{
|
2026-01-12 14:15:21 +08:00
|
|
|
|
scope.row.avgData
|
|
|
|
|
|
}}</span>
|
2025-09-13 20:36:46 +08:00
|
|
|
|
</template>
|
2025-06-28 14:52:49 +08:00
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column
|
2025-12-12 17:38:26 +08:00
|
|
|
|
prop="minData"
|
|
|
|
|
|
label="单体最小值">
|
2025-09-13 20:36:46 +08:00
|
|
|
|
<template slot-scope="scope">
|
2025-12-12 17:38:26 +08:00
|
|
|
|
<span class="pointer"
|
2026-02-16 13:41:41 +08:00
|
|
|
|
:class="{ 'field-disabled': !hasTableFieldPointId(baseInfo, scope.row.dataName, scope.column.label) }"
|
|
|
|
|
|
@click="handleTableFieldClick(baseInfo, scope.row.dataName, scope.column.label)">{{
|
2026-01-12 14:15:21 +08:00
|
|
|
|
scope.row.minData
|
|
|
|
|
|
}}</span>
|
2025-09-13 20:36:46 +08:00
|
|
|
|
</template>
|
2025-06-28 14:52:49 +08:00
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column
|
2025-12-12 17:38:26 +08:00
|
|
|
|
prop="minDataID"
|
|
|
|
|
|
label="单体最小值ID">
|
2025-06-28 14:52:49 +08:00
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column
|
2025-12-12 17:38:26 +08:00
|
|
|
|
prop="maxData"
|
|
|
|
|
|
label="单体最大值">
|
2025-09-13 20:36:46 +08:00
|
|
|
|
<template slot-scope="scope">
|
2025-12-12 17:38:26 +08:00
|
|
|
|
<span class="pointer "
|
2026-02-16 13:41:41 +08:00
|
|
|
|
:class="{ 'field-disabled': !hasTableFieldPointId(baseInfo, scope.row.dataName, scope.column.label) }"
|
|
|
|
|
|
@click="handleTableFieldClick(baseInfo, scope.row.dataName, scope.column.label)">{{
|
2026-01-12 14:15:21 +08:00
|
|
|
|
scope.row.maxData
|
|
|
|
|
|
}}</span>
|
2025-09-13 20:36:46 +08:00
|
|
|
|
</template>
|
2025-06-28 14:52:49 +08:00
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column
|
2025-12-12 17:38:26 +08:00
|
|
|
|
prop="maxDataID"
|
|
|
|
|
|
label="单体最大值ID">
|
2025-06-28 14:52:49 +08:00
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
</div>
|
2025-11-25 17:56:12 +08:00
|
|
|
|
<point-table ref="pointTable"/>
|
2026-02-16 13:41:41 +08:00
|
|
|
|
<el-dialog
|
|
|
|
|
|
:visible.sync="curveDialogVisible"
|
|
|
|
|
|
:title="curveDialogTitle"
|
|
|
|
|
|
width="1000px"
|
|
|
|
|
|
append-to-body
|
|
|
|
|
|
class="ems-dialog"
|
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
|
destroy-on-close
|
|
|
|
|
|
@opened="handleCurveDialogOpened"
|
|
|
|
|
|
@closed="handleCurveDialogClosed"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div class="curve-tools">
|
|
|
|
|
|
<el-date-picker
|
|
|
|
|
|
v-model="curveCustomRange"
|
|
|
|
|
|
type="datetimerange"
|
|
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
|
range-separator="至"
|
|
|
|
|
|
start-placeholder="开始时间"
|
|
|
|
|
|
end-placeholder="结束时间"
|
|
|
|
|
|
style="width: 440px"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<el-button type="primary" size="mini" :loading="curveLoading" @click="loadCurveData">查询</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div v-loading="curveLoading" ref="curveChartRef" style="height: 380px;"></div>
|
|
|
|
|
|
</el-dialog>
|
2025-06-21 23:59:01 +08:00
|
|
|
|
</div>
|
2025-06-28 14:52:49 +08:00
|
|
|
|
|
2025-06-21 23:59:01 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2026-02-16 13:41:41 +08:00
|
|
|
|
import * as echarts from "echarts";
|
2025-11-25 17:56:12 +08:00
|
|
|
|
import PointTable from "@/views/ems/site/sblb/PointTable.vue";
|
2026-02-15 16:24:29 +08:00
|
|
|
|
import {getProjectDisplayData, getStackNameList, getClusterNameList} from '@/api/ems/dzjk'
|
2025-06-28 14:52:49 +08:00
|
|
|
|
import getQuerySiteId from "@/mixins/ems/getQuerySiteId";
|
2025-09-10 09:54:29 +08:00
|
|
|
|
import intervalUpdate from "@/mixins/ems/intervalUpdate";
|
2026-01-23 22:32:12 +08:00
|
|
|
|
import {mapState} from "vuex";
|
2026-04-12 15:18:00 +08:00
|
|
|
|
import {getPointConfigCurve, getSingleMonitorWorkStatusEnumMappings} from "@/api/ems/site";
|
2025-12-12 17:38:26 +08:00
|
|
|
|
|
2025-06-21 23:59:01 +08:00
|
|
|
|
export default {
|
2025-12-12 17:38:26 +08:00
|
|
|
|
name: 'DzjkSbjkBmsdcc',
|
|
|
|
|
|
mixins: [getQuerySiteId, intervalUpdate],
|
2026-02-16 13:41:41 +08:00
|
|
|
|
components: {PointTable},
|
2026-01-23 22:32:12 +08:00
|
|
|
|
computed: {
|
|
|
|
|
|
...mapState({
|
2026-01-25 16:30:43 +08:00
|
|
|
|
CLUSTERWorkStatusOptions: state => state?.ems?.CLUSTERWorkStatusOptions || {},
|
2026-02-15 16:24:29 +08:00
|
|
|
|
}),
|
2026-04-12 15:18:00 +08:00
|
|
|
|
clusterWorkStatusOptions() {
|
|
|
|
|
|
return this.getEnumOptions("CLUSTER", "workStatus", this.CLUSTERWorkStatusOptions || {});
|
|
|
|
|
|
},
|
|
|
|
|
|
clusterPcsCommunicationStatusOptions() {
|
|
|
|
|
|
return this.getEnumOptions("CLUSTER", "pcsCommunicationStatus", (this.$store.state.ems && this.$store.state.ems.communicationStatusOptions) || {});
|
|
|
|
|
|
},
|
|
|
|
|
|
clusterEmsCommunicationStatusOptions() {
|
|
|
|
|
|
return this.getEnumOptions("CLUSTER", "emsCommunicationStatus", (this.$store.state.ems && this.$store.state.ems.communicationStatusOptions) || {});
|
|
|
|
|
|
},
|
2026-02-15 16:24:29 +08:00
|
|
|
|
filteredBaseInfoList() {
|
|
|
|
|
|
if (!this.selectedClusterId) {
|
|
|
|
|
|
return this.baseInfoList || [];
|
|
|
|
|
|
}
|
|
|
|
|
|
return (this.baseInfoList || []).filter(item => item.deviceId === this.selectedClusterId);
|
|
|
|
|
|
},
|
2026-01-23 22:32:12 +08:00
|
|
|
|
},
|
2025-06-21 23:59:01 +08:00
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
2025-12-12 17:38:26 +08:00
|
|
|
|
loading: false,
|
2026-02-15 16:24:29 +08:00
|
|
|
|
displayData: [],
|
|
|
|
|
|
clusterDeviceList: [],
|
2026-04-12 15:18:00 +08:00
|
|
|
|
siteEnumOptionMap: {},
|
2026-02-15 16:24:29 +08:00
|
|
|
|
selectedClusterId: "",
|
2026-02-16 13:41:41 +08:00
|
|
|
|
curveDialogVisible: false,
|
|
|
|
|
|
curveDialogTitle: "点位曲线",
|
|
|
|
|
|
curveChart: null,
|
|
|
|
|
|
curveLoading: false,
|
|
|
|
|
|
curveCustomRange: [],
|
|
|
|
|
|
curveQuery: {
|
|
|
|
|
|
siteId: "",
|
|
|
|
|
|
pointId: "",
|
|
|
|
|
|
pointType: "data",
|
|
|
|
|
|
rangeType: "custom",
|
|
|
|
|
|
startTime: "",
|
|
|
|
|
|
endTime: "",
|
|
|
|
|
|
},
|
2025-12-12 17:38:26 +08:00
|
|
|
|
unitObj: {
|
|
|
|
|
|
'电压': 'V',
|
|
|
|
|
|
'温度': '℃',
|
|
|
|
|
|
'SOC': '%'
|
2025-06-28 14:52:49 +08:00
|
|
|
|
},
|
2025-12-12 17:38:26 +08:00
|
|
|
|
tablePointNameMap: {
|
|
|
|
|
|
'电压单体最小值': '最低单体电压',
|
|
|
|
|
|
'电压单体平均值': '电压平均值',
|
|
|
|
|
|
'电压单体最大值': '最高单体电压',
|
|
|
|
|
|
'温度单体最小值': '最低单体温度',
|
|
|
|
|
|
'温度单体平均值': '平均单体温度',
|
|
|
|
|
|
'温度单体最大值': '最高单体温度',
|
|
|
|
|
|
'SOC单体最小值': '最低单体SOC',
|
|
|
|
|
|
'SOC单体平均值': '当前SOC',
|
|
|
|
|
|
'SOC单体最大值': '最高单体SOC',
|
2025-09-13 20:36:46 +08:00
|
|
|
|
},
|
2026-02-15 16:24:29 +08:00
|
|
|
|
baseInfoList: [{
|
|
|
|
|
|
siteId: "",
|
|
|
|
|
|
deviceId: "",
|
|
|
|
|
|
parentDeviceName: "",
|
|
|
|
|
|
deviceName: "BMS电池簇",
|
|
|
|
|
|
dataUpdateTime: "-",
|
|
|
|
|
|
alarmNum: 0,
|
|
|
|
|
|
batteryDataList: [],
|
|
|
|
|
|
}],
|
2025-12-12 17:38:26 +08:00
|
|
|
|
infoData: [
|
|
|
|
|
|
{label: '簇电压', attr: 'clusterVoltage', unit: 'V', pointName: '簇电压'},
|
|
|
|
|
|
{label: '可充电量', attr: 'chargeableCapacity', unit: 'kWh', pointName: '可充电量'},
|
|
|
|
|
|
{label: '累计充电量', attr: 'totalChargedCapacity', unit: 'kWh', pointName: '累计充电量'},
|
|
|
|
|
|
{label: '簇电流', attr: 'clusterCurrent', unit: 'A', pointName: '簇电流'},
|
|
|
|
|
|
{label: '可放电量', attr: 'dischargeableCapacity', unit: 'kWh', pointName: '可放电量'},
|
|
|
|
|
|
{label: '累计放电量', attr: 'totalDischargedCapacity', unit: 'kWh', pointName: '累计放电量'},
|
|
|
|
|
|
{label: 'SOH', attr: 'soh', unit: '%', pointName: 'SOH'},
|
|
|
|
|
|
{label: '平均温度', attr: 'averageTemperature', unit: '℃', pointName: '平均温度'},
|
|
|
|
|
|
{label: '绝缘电阻', attr: 'insulationResistance', unit: 'Ω', pointName: '绝缘电阻'},
|
2025-06-21 23:59:01 +08:00
|
|
|
|
],
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2025-12-12 17:38:26 +08:00
|
|
|
|
methods: {
|
2026-02-15 16:24:29 +08:00
|
|
|
|
displayValue(value) {
|
|
|
|
|
|
return value === undefined || value === null || value === "" ? "-" : value;
|
|
|
|
|
|
},
|
|
|
|
|
|
isPointLoading(value) {
|
|
|
|
|
|
return this.loading && (value === undefined || value === null || value === "" || value === "-");
|
|
|
|
|
|
},
|
2026-04-12 15:18:00 +08:00
|
|
|
|
normalizeDictKey(value) {
|
|
|
|
|
|
const raw = String(value == null ? "" : value).trim();
|
|
|
|
|
|
if (!raw) return "";
|
|
|
|
|
|
if (/^-?\d+(\.0+)?$/.test(raw)) {
|
|
|
|
|
|
return String(parseInt(raw, 10));
|
|
|
|
|
|
}
|
|
|
|
|
|
return raw;
|
|
|
|
|
|
},
|
|
|
|
|
|
formatDictValue(options, value) {
|
|
|
|
|
|
const dict = (options && typeof options === "object") ? options : {};
|
|
|
|
|
|
const key = this.normalizeDictKey(value);
|
|
|
|
|
|
if (!key) return "-";
|
|
|
|
|
|
return dict[key] || key;
|
|
|
|
|
|
},
|
|
|
|
|
|
buildEnumScopeKey(deviceCategory, matchField) {
|
|
|
|
|
|
return `${String(deviceCategory || "").trim()}|${String(matchField || "").trim()}`;
|
|
|
|
|
|
},
|
|
|
|
|
|
buildSiteEnumOptionMap(mappings = []) {
|
|
|
|
|
|
return (mappings || []).reduce((acc, item) => {
|
|
|
|
|
|
const scopeKey = this.buildEnumScopeKey(item?.deviceCategory, item?.matchField);
|
|
|
|
|
|
const dataEnumCode = this.normalizeDictKey(item?.dataEnumCode);
|
|
|
|
|
|
const enumCode = this.normalizeDictKey(item?.enumCode);
|
|
|
|
|
|
const enumName = String(item?.enumName || "").trim();
|
|
|
|
|
|
const optionKey = dataEnumCode || enumCode;
|
|
|
|
|
|
if (!scopeKey || !optionKey || !enumName) {
|
|
|
|
|
|
return acc;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!acc[scopeKey]) {
|
|
|
|
|
|
acc[scopeKey] = {};
|
|
|
|
|
|
}
|
|
|
|
|
|
acc[scopeKey][optionKey] = enumName;
|
|
|
|
|
|
return acc;
|
|
|
|
|
|
}, {});
|
|
|
|
|
|
},
|
|
|
|
|
|
loadSiteEnumOptions() {
|
|
|
|
|
|
if (!this.siteId) {
|
|
|
|
|
|
this.siteEnumOptionMap = {};
|
|
|
|
|
|
return Promise.resolve({});
|
|
|
|
|
|
}
|
|
|
|
|
|
return getSingleMonitorWorkStatusEnumMappings(this.siteId).then(response => {
|
|
|
|
|
|
const optionMap = this.buildSiteEnumOptionMap(response?.data || []);
|
|
|
|
|
|
this.siteEnumOptionMap = optionMap;
|
|
|
|
|
|
return optionMap;
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
this.siteEnumOptionMap = {};
|
|
|
|
|
|
return {};
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
getEnumOptions(deviceCategory, matchField, fallback = {}) {
|
|
|
|
|
|
const scopeKey = this.buildEnumScopeKey(deviceCategory, matchField);
|
|
|
|
|
|
const siteOptions = this.siteEnumOptionMap[scopeKey];
|
|
|
|
|
|
if (siteOptions && Object.keys(siteOptions).length > 0) {
|
|
|
|
|
|
return siteOptions;
|
|
|
|
|
|
}
|
|
|
|
|
|
return fallback || {};
|
|
|
|
|
|
},
|
2026-01-23 22:32:12 +08:00
|
|
|
|
handleCardClass(item) {
|
2026-04-12 15:18:00 +08:00
|
|
|
|
const workStatus = this.normalizeDictKey((item && item.workStatus) || "");
|
|
|
|
|
|
const statusOptions = (this.clusterWorkStatusOptions && typeof this.clusterWorkStatusOptions === "object")
|
|
|
|
|
|
? this.clusterWorkStatusOptions
|
|
|
|
|
|
: {};
|
|
|
|
|
|
const hasStatus = Object.prototype.hasOwnProperty.call(statusOptions, workStatus);
|
|
|
|
|
|
return !hasStatus ? "timing-card-container" : workStatus === '9' ? 'warning-card-container' : 'running-card-container';
|
2026-01-23 22:32:12 +08:00
|
|
|
|
},
|
2025-11-25 17:56:12 +08:00
|
|
|
|
// 查看设备电位表格
|
2025-12-12 17:38:26 +08:00
|
|
|
|
pointDetail(row, dataType) {
|
|
|
|
|
|
const {siteId, deviceId} = row
|
|
|
|
|
|
this.$refs.pointTable.showTable({siteId, deviceId, deviceCategory: 'CLUSTER'}, dataType)
|
2025-11-25 17:56:12 +08:00
|
|
|
|
},
|
2026-02-16 13:41:41 +08:00
|
|
|
|
hasFieldPointId(baseInfo, fieldName) {
|
|
|
|
|
|
const row = this.getFieldRow(baseInfo, fieldName);
|
|
|
|
|
|
return !!String(row?.dataPoint || "").trim();
|
|
|
|
|
|
},
|
|
|
|
|
|
hasTableFieldPointId(baseInfo, dataName, columnLabel) {
|
|
|
|
|
|
const pointName = this.tablePointNameMap[String(dataName || "") + String(columnLabel || "")];
|
|
|
|
|
|
if (!pointName) {
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
return this.hasFieldPointId(baseInfo, pointName);
|
|
|
|
|
|
},
|
|
|
|
|
|
getFieldRow(baseInfo, fieldName) {
|
|
|
|
|
|
const key = String(fieldName || "").trim();
|
|
|
|
|
|
const map = baseInfo?._fieldRowMap || {};
|
|
|
|
|
|
return map[key] || null;
|
|
|
|
|
|
},
|
|
|
|
|
|
handleFieldClick(baseInfo, fieldName, title) {
|
|
|
|
|
|
const row = this.getFieldRow(baseInfo, fieldName);
|
|
|
|
|
|
const pointId = String(row?.dataPoint || "").trim();
|
|
|
|
|
|
this.openCurveDialogByPointId(pointId, title || fieldName);
|
|
|
|
|
|
},
|
|
|
|
|
|
handleTableFieldClick(baseInfo, dataName, columnLabel) {
|
|
|
|
|
|
const pointName = this.tablePointNameMap[String(dataName || "") + String(columnLabel || "")];
|
|
|
|
|
|
if (!pointName) {
|
|
|
|
|
|
this.$message.warning("该字段未配置点位,无法查询曲线");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
this.handleFieldClick(baseInfo, pointName, pointName);
|
|
|
|
|
|
},
|
|
|
|
|
|
openCurveDialogByPointId(pointId, title) {
|
|
|
|
|
|
const normalizedPointId = String(pointId || "").trim();
|
|
|
|
|
|
if (!normalizedPointId) {
|
|
|
|
|
|
this.$message.warning("该字段未配置点位,无法查询曲线");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
const range = this.getDefaultCurveRange();
|
|
|
|
|
|
this.curveCustomRange = range;
|
|
|
|
|
|
this.curveDialogTitle = `点位曲线 - ${title || normalizedPointId}`;
|
|
|
|
|
|
this.curveQuery = {
|
|
|
|
|
|
siteId: this.siteId,
|
|
|
|
|
|
pointId: normalizedPointId,
|
|
|
|
|
|
pointType: "data",
|
|
|
|
|
|
rangeType: "custom",
|
|
|
|
|
|
startTime: range[0],
|
|
|
|
|
|
endTime: range[1],
|
|
|
|
|
|
};
|
|
|
|
|
|
this.curveDialogVisible = true;
|
|
|
|
|
|
},
|
|
|
|
|
|
handleCurveDialogOpened() {
|
|
|
|
|
|
if (!this.curveChart && this.$refs.curveChartRef) {
|
|
|
|
|
|
this.curveChart = echarts.init(this.$refs.curveChartRef);
|
|
|
|
|
|
}
|
|
|
|
|
|
this.loadCurveData();
|
|
|
|
|
|
},
|
|
|
|
|
|
handleCurveDialogClosed() {
|
|
|
|
|
|
if (this.curveChart) {
|
|
|
|
|
|
this.curveChart.dispose();
|
|
|
|
|
|
this.curveChart = null;
|
|
|
|
|
|
}
|
|
|
|
|
|
this.curveLoading = false;
|
|
|
|
|
|
},
|
|
|
|
|
|
getDefaultCurveRange() {
|
|
|
|
|
|
const end = new Date();
|
|
|
|
|
|
const start = new Date(end.getTime() - 24 * 60 * 60 * 1000);
|
|
|
|
|
|
return [this.formatDateTime(start), this.formatDateTime(end)];
|
|
|
|
|
|
},
|
|
|
|
|
|
formatDateTime(date) {
|
|
|
|
|
|
const d = new Date(date);
|
|
|
|
|
|
const p = (n) => String(n).padStart(2, "0");
|
|
|
|
|
|
return `${d.getFullYear()}-${p(d.getMonth() + 1)}-${p(d.getDate())} ${p(d.getHours())}:${p(d.getMinutes())}:${p(d.getSeconds())}`;
|
|
|
|
|
|
},
|
|
|
|
|
|
formatCurveTime(value) {
|
|
|
|
|
|
if (value === undefined || value === null || value === "") {
|
|
|
|
|
|
return "";
|
|
|
|
|
|
}
|
|
|
|
|
|
const raw = String(value).trim();
|
|
|
|
|
|
const normalized = raw
|
|
|
|
|
|
.replace("T", " ")
|
|
|
|
|
|
.replace(/\.\d+/, "")
|
|
|
|
|
|
.replace(/Z$/, "")
|
|
|
|
|
|
.replace(/([+-]\d{2}:?\d{2})$/, "")
|
|
|
|
|
|
.trim();
|
|
|
|
|
|
const matched = normalized.match(/^(\d{4}-\d{2}-\d{2})\s+(\d{2}:\d{2})/);
|
|
|
|
|
|
if (matched) {
|
|
|
|
|
|
return `${matched[1]} ${matched[2]}`;
|
|
|
|
|
|
}
|
|
|
|
|
|
return normalized.slice(0, 16);
|
|
|
|
|
|
},
|
|
|
|
|
|
loadCurveData() {
|
|
|
|
|
|
if (!this.curveQuery.siteId || !this.curveQuery.pointId) {
|
|
|
|
|
|
this.$message.warning("点位信息不完整,无法查询曲线");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!this.curveCustomRange || this.curveCustomRange.length !== 2) {
|
|
|
|
|
|
this.$message.warning("请选择查询时间范围");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
this.curveQuery.startTime = this.curveCustomRange[0];
|
|
|
|
|
|
this.curveQuery.endTime = this.curveCustomRange[1];
|
|
|
|
|
|
const query = {
|
|
|
|
|
|
siteId: this.curveQuery.siteId,
|
|
|
|
|
|
pointId: this.curveQuery.pointId,
|
|
|
|
|
|
pointType: "data",
|
|
|
|
|
|
rangeType: "custom",
|
|
|
|
|
|
startTime: this.curveQuery.startTime,
|
|
|
|
|
|
endTime: this.curveQuery.endTime,
|
|
|
|
|
|
};
|
|
|
|
|
|
this.curveLoading = true;
|
|
|
|
|
|
getPointConfigCurve(query).then((response) => {
|
|
|
|
|
|
const rows = response?.data || [];
|
|
|
|
|
|
this.renderCurveChart(rows);
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
this.renderCurveChart([]);
|
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
|
this.curveLoading = false;
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
renderCurveChart(rows = []) {
|
|
|
|
|
|
if (!this.curveChart) return;
|
|
|
|
|
|
const xData = rows.map(item => this.formatCurveTime(item.dataTime));
|
|
|
|
|
|
const yData = rows.map(item => item.pointValue);
|
|
|
|
|
|
this.curveChart.clear();
|
|
|
|
|
|
this.curveChart.setOption({
|
|
|
|
|
|
legend: {},
|
|
|
|
|
|
grid: {
|
|
|
|
|
|
containLabel: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
tooltip: {
|
|
|
|
|
|
trigger: "axis",
|
|
|
|
|
|
axisPointer: {
|
|
|
|
|
|
type: "cross",
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
textStyle: {
|
|
|
|
|
|
color: "#333333",
|
|
|
|
|
|
},
|
|
|
|
|
|
xAxis: {
|
|
|
|
|
|
type: "category",
|
|
|
|
|
|
data: xData,
|
|
|
|
|
|
},
|
|
|
|
|
|
yAxis: {
|
|
|
|
|
|
type: "value",
|
|
|
|
|
|
},
|
|
|
|
|
|
dataZoom: [
|
|
|
|
|
|
{
|
|
|
|
|
|
type: "inside",
|
|
|
|
|
|
start: 0,
|
|
|
|
|
|
end: 100,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
start: 0,
|
|
|
|
|
|
end: 100,
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
series: [
|
|
|
|
|
|
{
|
|
|
|
|
|
name: this.curveDialogTitle,
|
|
|
|
|
|
type: "line",
|
|
|
|
|
|
data: yData,
|
|
|
|
|
|
connectNulls: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
});
|
|
|
|
|
|
if (!rows.length) {
|
|
|
|
|
|
this.$message.warning("当前时间范围暂无曲线数据");
|
|
|
|
|
|
}
|
2025-09-13 20:36:46 +08:00
|
|
|
|
},
|
2026-02-15 16:24:29 +08:00
|
|
|
|
handleTagClick(deviceId) {
|
|
|
|
|
|
this.selectedClusterId = deviceId || "";
|
|
|
|
|
|
},
|
|
|
|
|
|
init() {
|
|
|
|
|
|
this.updateData()
|
|
|
|
|
|
this.updateInterval(this.updateData)
|
|
|
|
|
|
},
|
|
|
|
|
|
getModuleRows(menuCode, sectionName) {
|
|
|
|
|
|
return (this.displayData || []).filter(item => item.menuCode === menuCode && item.sectionName === sectionName);
|
|
|
|
|
|
},
|
|
|
|
|
|
getFieldName(fieldCode) {
|
|
|
|
|
|
const raw = String(fieldCode || "").trim();
|
|
|
|
|
|
if (!raw) return "";
|
|
|
|
|
|
const index = raw.lastIndexOf("__");
|
|
|
|
|
|
return index >= 0 ? raw.slice(index + 2) : raw;
|
|
|
|
|
|
},
|
|
|
|
|
|
getFieldMap(rows = [], deviceId = "") {
|
2026-02-16 13:41:41 +08:00
|
|
|
|
const rowMap = this.getFieldRowMap(rows, deviceId);
|
|
|
|
|
|
return Object.keys(rowMap).reduce((acc, fieldName) => {
|
|
|
|
|
|
const row = rowMap[fieldName];
|
|
|
|
|
|
if (acc[fieldName] === undefined) {
|
|
|
|
|
|
acc[fieldName] = row?.fieldValue;
|
|
|
|
|
|
}
|
|
|
|
|
|
return acc;
|
|
|
|
|
|
}, {});
|
|
|
|
|
|
},
|
|
|
|
|
|
getFieldRowMap(rows = [], deviceId = "") {
|
2026-02-15 16:24:29 +08:00
|
|
|
|
const map = {};
|
|
|
|
|
|
const targetDeviceId = String(deviceId || "");
|
|
|
|
|
|
rows.forEach(item => {
|
|
|
|
|
|
if (!item || !item.fieldCode) return;
|
|
|
|
|
|
const itemDeviceId = String(item.deviceId || "");
|
|
|
|
|
|
if (itemDeviceId !== targetDeviceId) return;
|
2026-02-16 13:41:41 +08:00
|
|
|
|
const fieldName = this.getFieldName(item.fieldCode);
|
|
|
|
|
|
map[fieldName] = item;
|
|
|
|
|
|
const displayName = String(item.fieldName || "").trim();
|
|
|
|
|
|
if (displayName && !map[displayName]) {
|
|
|
|
|
|
map[displayName] = item;
|
|
|
|
|
|
}
|
2026-02-15 16:24:29 +08:00
|
|
|
|
});
|
|
|
|
|
|
rows.forEach(item => {
|
|
|
|
|
|
if (!item || !item.fieldCode) return;
|
|
|
|
|
|
const itemDeviceId = String(item.deviceId || "");
|
|
|
|
|
|
if (itemDeviceId !== "") return;
|
|
|
|
|
|
const fieldName = this.getFieldName(item.fieldCode);
|
|
|
|
|
|
if (map[fieldName] === undefined || map[fieldName] === null || map[fieldName] === "") {
|
2026-02-16 13:41:41 +08:00
|
|
|
|
map[fieldName] = item;
|
|
|
|
|
|
}
|
|
|
|
|
|
const displayName = String(item.fieldName || "").trim();
|
|
|
|
|
|
if (displayName && !map[displayName]) {
|
|
|
|
|
|
map[displayName] = item;
|
2026-02-15 16:24:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
return map;
|
|
|
|
|
|
},
|
|
|
|
|
|
getLatestTime(menuCode) {
|
|
|
|
|
|
const times = (this.displayData || [])
|
|
|
|
|
|
.filter(item => item.menuCode === menuCode && item.valueTime)
|
|
|
|
|
|
.map(item => new Date(item.valueTime).getTime())
|
|
|
|
|
|
.filter(ts => !isNaN(ts));
|
|
|
|
|
|
if (times.length === 0) {
|
|
|
|
|
|
return '-';
|
|
|
|
|
|
}
|
|
|
|
|
|
const date = new Date(Math.max(...times));
|
|
|
|
|
|
const p = (n) => String(n).padStart(2, '0');
|
|
|
|
|
|
return `${date.getFullYear()}-${p(date.getMonth() + 1)}-${p(date.getDate())} ${p(date.getHours())}:${p(date.getMinutes())}:${p(date.getSeconds())}`;
|
|
|
|
|
|
},
|
|
|
|
|
|
getClusterDeviceList() {
|
|
|
|
|
|
return getStackNameList(this.siteId)
|
|
|
|
|
|
.then(response => {
|
|
|
|
|
|
const stackList = response?.data || [];
|
|
|
|
|
|
if (!stackList.length) {
|
|
|
|
|
|
this.clusterDeviceList = [];
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
const requests = stackList.map(stack => {
|
|
|
|
|
|
const stackDeviceId = stack.deviceId || stack.id || '';
|
|
|
|
|
|
return getClusterNameList({stackDeviceId, siteId: this.siteId})
|
|
|
|
|
|
.then(clusterResponse => {
|
|
|
|
|
|
const clusterList = clusterResponse?.data || [];
|
|
|
|
|
|
return clusterList.map(cluster => ({
|
|
|
|
|
|
...cluster,
|
|
|
|
|
|
parentDeviceName: stack.deviceName || stack.name || stackDeviceId || '',
|
|
|
|
|
|
}));
|
|
|
|
|
|
})
|
|
|
|
|
|
.catch(() => []);
|
|
|
|
|
|
});
|
|
|
|
|
|
return Promise.all(requests).then(results => {
|
|
|
|
|
|
this.clusterDeviceList = results.flat();
|
|
|
|
|
|
});
|
|
|
|
|
|
})
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
this.clusterDeviceList = [];
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
buildBaseInfoList() {
|
|
|
|
|
|
const devices = (this.clusterDeviceList && this.clusterDeviceList.length > 0)
|
|
|
|
|
|
? this.clusterDeviceList
|
|
|
|
|
|
: [{deviceId: this.siteId, deviceName: 'BMS电池簇', parentDeviceName: ''}];
|
|
|
|
|
|
this.baseInfoList = devices.map(device => ({
|
|
|
|
|
|
...(() => {
|
|
|
|
|
|
const id = device.deviceId || device.id || this.siteId;
|
|
|
|
|
|
const infoMap = this.getFieldMap(this.getModuleRows('SBJK_BMSDCC', '簇信息'), id);
|
|
|
|
|
|
const statusMap = this.getFieldMap(this.getModuleRows('SBJK_BMSDCC', '状态'), id);
|
|
|
|
|
|
const currentSoc = Number(infoMap.currentSoc);
|
|
|
|
|
|
return {
|
|
|
|
|
|
...infoMap,
|
|
|
|
|
|
workStatus: statusMap.workStatus,
|
|
|
|
|
|
pcsCommunicationStatus: statusMap.pcsCommunicationStatus,
|
|
|
|
|
|
emsCommunicationStatus: statusMap.emsCommunicationStatus,
|
|
|
|
|
|
currentSoc: isNaN(currentSoc) ? 0 : currentSoc,
|
2026-02-16 13:41:41 +08:00
|
|
|
|
_fieldRowMap: {
|
|
|
|
|
|
...this.getFieldRowMap(this.getModuleRows('SBJK_BMSDCC', '簇信息'), id),
|
|
|
|
|
|
...this.getFieldRowMap(this.getModuleRows('SBJK_BMSDCC', '状态'), id),
|
|
|
|
|
|
...this.getFieldRowMap(this.getModuleRows('SBJK_BMSDCC', '单体数据'), id),
|
|
|
|
|
|
},
|
2026-02-15 16:24:29 +08:00
|
|
|
|
};
|
|
|
|
|
|
})(),
|
|
|
|
|
|
siteId: this.siteId,
|
|
|
|
|
|
deviceId: device.deviceId || device.id || this.siteId,
|
|
|
|
|
|
parentDeviceName: device.parentDeviceName || '',
|
|
|
|
|
|
deviceName: device.deviceName || device.name || device.deviceId || device.id || 'BMS电池簇',
|
|
|
|
|
|
dataUpdateTime: this.getLatestTime('SBJK_BMSDCC'),
|
|
|
|
|
|
alarmNum: 0,
|
|
|
|
|
|
batteryDataList: [],
|
|
|
|
|
|
}));
|
|
|
|
|
|
},
|
2025-12-12 17:38:26 +08:00
|
|
|
|
updateData() {
|
2025-06-28 14:52:49 +08:00
|
|
|
|
this.loading = true
|
2026-02-15 16:24:29 +08:00
|
|
|
|
// 先渲染卡片框架,字段值走单点位 loading
|
|
|
|
|
|
this.buildBaseInfoList();
|
|
|
|
|
|
Promise.all([
|
|
|
|
|
|
getProjectDisplayData(this.siteId),
|
|
|
|
|
|
this.getClusterDeviceList(),
|
2026-04-12 15:18:00 +08:00
|
|
|
|
this.loadSiteEnumOptions(),
|
2026-02-15 16:24:29 +08:00
|
|
|
|
]).then(([response]) => {
|
|
|
|
|
|
this.displayData = response?.data || [];
|
|
|
|
|
|
this.buildBaseInfoList();
|
2025-12-12 17:38:26 +08:00
|
|
|
|
}).finally(() => {
|
|
|
|
|
|
this.loading = false
|
|
|
|
|
|
})
|
2025-06-28 14:52:49 +08:00
|
|
|
|
}
|
2026-02-16 13:41:41 +08:00
|
|
|
|
},
|
|
|
|
|
|
beforeDestroy() {
|
|
|
|
|
|
if (this.curveChart) {
|
|
|
|
|
|
this.curveChart.dispose();
|
|
|
|
|
|
this.curveChart = null;
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2025-06-21 23:59:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2026-02-15 16:24:29 +08:00
|
|
|
|
.pcs-tags {
|
|
|
|
|
|
margin: 0 0 12px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.pcs-tag-item {
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-22 21:01:34 +08:00
|
|
|
|
::v-deep {
|
|
|
|
|
|
//描述列表样式
|
2025-12-12 17:38:26 +08:00
|
|
|
|
.descriptions-main {
|
|
|
|
|
|
padding: 24px 300px 24px 24px;
|
2025-06-22 21:01:34 +08:00
|
|
|
|
}
|
2025-12-12 17:38:26 +08:00
|
|
|
|
|
|
|
|
|
|
.descriptions-main-bottom {
|
|
|
|
|
|
padding: 14px 300px 14px 24px;
|
2025-06-21 23:59:01 +08:00
|
|
|
|
}
|
2025-06-22 21:01:34 +08:00
|
|
|
|
}
|
2025-12-12 17:38:26 +08:00
|
|
|
|
|
2025-06-21 23:59:01 +08:00
|
|
|
|
// 进度条样式
|
2025-12-12 17:38:26 +08:00
|
|
|
|
.process-container {
|
|
|
|
|
|
width: 100px;
|
2025-06-22 21:01:34 +08:00
|
|
|
|
position: absolute;
|
2025-12-12 17:38:26 +08:00
|
|
|
|
right: 70px;
|
|
|
|
|
|
top: 50%;
|
2025-06-22 21:01:34 +08:00
|
|
|
|
transform: translateY(-50%);
|
2025-12-12 17:38:26 +08:00
|
|
|
|
|
|
|
|
|
|
.process-line-bg {
|
2025-06-22 21:01:34 +08:00
|
|
|
|
position: relative;
|
2025-12-12 17:38:26 +08:00
|
|
|
|
width: 100%;
|
2025-06-22 21:01:34 +08:00
|
|
|
|
height: 110px;
|
2025-12-12 17:38:26 +08:00
|
|
|
|
background-color: #fff2cb;
|
2025-06-22 21:01:34 +08:00
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
box-shadow: 0 0 10px #fff2cb, 0 0 0 rgba(255, 242, 203, 0.5);
|
2025-12-12 17:38:26 +08:00
|
|
|
|
|
|
|
|
|
|
.process-line {
|
2025-06-22 21:01:34 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 25%;
|
|
|
|
|
|
background-color: #ffbf14;
|
|
|
|
|
|
border-radius: 0 0 6px 6px;
|
|
|
|
|
|
box-shadow: 0 0 10px #ffbf14, 0 0 0 rgba(255, 191, 20, 0.5);
|
2025-06-21 23:59:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-12-12 17:38:26 +08:00
|
|
|
|
|
|
|
|
|
|
.process {
|
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
|
color: #666666;
|
2025-06-22 21:01:34 +08:00
|
|
|
|
}
|
2025-06-21 23:59:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-15 16:24:29 +08:00
|
|
|
|
.point-loading-icon {
|
|
|
|
|
|
color: #409eff;
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
transform-origin: center;
|
|
|
|
|
|
animation: pointLoadingSpinPulse 1.1s linear infinite;
|
|
|
|
|
|
}
|
|
|
|
|
|
@keyframes pointLoadingSpinPulse {
|
|
|
|
|
|
0% { opacity: 0.45; transform: rotate(0deg) scale(0.9); }
|
|
|
|
|
|
50% { opacity: 1; transform: rotate(180deg) scale(1.08); }
|
|
|
|
|
|
100% { opacity: 0.45; transform: rotate(360deg) scale(0.9); }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-21 23:59:01 +08:00
|
|
|
|
</style>
|