|
@@ -0,0 +1,357 @@
|
|
|
+<!--
|
|
|
+ * @Author: your name
|
|
|
+ * @Date: 2025-01-21 10:02:36
|
|
|
+ * @LastEditTime: 2025-01-21 11:15:26
|
|
|
+ * @LastEditors: bogon
|
|
|
+ * @Description: In User Settings Edit
|
|
|
+ * @FilePath: /performance-test/src/views/overview/components/temperature_large_components_undriven/index.vue
|
|
|
+-->
|
|
|
+
|
|
|
+<template>
|
|
|
+ <div class="type-variable">
|
|
|
+ <!-- 发电机-非驱动端轴承温度分析 -->
|
|
|
+ <div class="left">
|
|
|
+ <FilterChart
|
|
|
+ :windList="windEngineGroupList"
|
|
|
+ @getEnfineList="getEnfineList"
|
|
|
+ @handlePrevious="handlePrevious"
|
|
|
+ @handleNext="handleNext"
|
|
|
+ ></FilterChart>
|
|
|
+ <el-alert type="info" :closable="false">
|
|
|
+ <template v-slot:title>
|
|
|
+ <div style="display: flex; align-items: center">
|
|
|
+ <i
|
|
|
+ class="el-icon-info"
|
|
|
+ style="font-size: 20px; margin-right: 5px"
|
|
|
+ ></i>
|
|
|
+ <h3>分析说明:</h3>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <div style="font-size: 12px; margin-top: 10px">
|
|
|
+ 大部件温度分析在风电机组的运维和性能管理中扮演着极为关键的角色。以下是温度分析的几个重要作用:
|
|
|
+ </div>
|
|
|
+ <div style="font-size: 12px; margin-top: 10px">
|
|
|
+ 1.
|
|
|
+ 温度是预示机械和电气故障的早期指标之一。通过监测关键部件如齿轮箱、发电机、轴承的温度,可以及时发现异常状况。这种早期检测允许采取预防性措施,从而避免成本高昂的维修和长时间的停机。
|
|
|
+ </div>
|
|
|
+ <div style="font-size: 12px; margin-top: 10px">
|
|
|
+ 2.
|
|
|
+ 长期在高温或低温条件下运行可能会加速部件的磨损和老化。通过监控温度并据此调整运行,可以延长风电机组部件的使用寿命。
|
|
|
+ </div>
|
|
|
+ <div style="font-size: 12px; margin-top: 10px">
|
|
|
+ 3.
|
|
|
+ 温度分析是实现预测性维护的关键。通过持续监测温度变化和趋势,可以预测何时部件可能会出现问题,从而在故障发生前进行维修或更换,减少意外停机。
|
|
|
+ </div>
|
|
|
+ </el-alert>
|
|
|
+
|
|
|
+ <div
|
|
|
+ class="titleCharts"
|
|
|
+ v-if="generalFilesDatas && generalFilesDatas.length > 0"
|
|
|
+ >
|
|
|
+ 分析总图 :
|
|
|
+ </div>
|
|
|
+ <el-empty description="暂无总图分析记录" v-else></el-empty>
|
|
|
+ <div v-for="(item, index) in generalFilesDatas">
|
|
|
+ <lineAndChildLine
|
|
|
+ :key="item.batchCode + index"
|
|
|
+ :index="index"
|
|
|
+ :ref="item.batchCode"
|
|
|
+ :fileAddr="item.fileAddr"
|
|
|
+ >
|
|
|
+ </lineAndChildLine>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div
|
|
|
+ class="titleCharts"
|
|
|
+ v-if="diagramRelationsDatas && diagramRelationsDatas.length > 0"
|
|
|
+ >
|
|
|
+ 分析分图 :
|
|
|
+ </div>
|
|
|
+ <el-empty description="暂无分图分析记录" v-else></el-empty>
|
|
|
+ <div v-for="(item, index) in diagramRelationsDatas">
|
|
|
+ <lineChartsFen
|
|
|
+ :key="item.fieldEngineCode + index"
|
|
|
+ :index="index"
|
|
|
+ :ref="item.fieldEngineCode"
|
|
|
+ :fieldEngineCode="item.fieldEngineCode"
|
|
|
+ :fileAddr="item.fileAddr"
|
|
|
+ >
|
|
|
+ </lineChartsFen>
|
|
|
+ </div>
|
|
|
+ <el-tabs value="first">
|
|
|
+ <el-tab-pane label="意见描述" name="first">
|
|
|
+ <TinymceEditor
|
|
|
+ ref="editor"
|
|
|
+ v-model="comment"
|
|
|
+ @input="handleEditorInput($event)"
|
|
|
+ @onClick="onClick"
|
|
|
+ >
|
|
|
+ </TinymceEditor>
|
|
|
+ </el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+ <el-row type="flex" class="row-bg" justify="end">
|
|
|
+ <el-col :span="2" style="margin: 20px">
|
|
|
+ <el-button type="primary" size="small" @click="handleComment"
|
|
|
+ >提交评论</el-button
|
|
|
+ >
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </div>
|
|
|
+ <div class="right">
|
|
|
+ <DicCard
|
|
|
+ :batchCode="initBatchCode"
|
|
|
+ :analysisTypeCode="analysisTypeCode"
|
|
|
+ :commentDescriptionVos="commentDescriptionVos"
|
|
|
+ >
|
|
|
+ </DicCard>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script>
|
|
|
+import DicCard from "@/views/overview/components/dicCard/index.vue";
|
|
|
+import FilterChart from "@/views/overview/components/filterChart/index.vue";
|
|
|
+import lineAndChildLine from "@/views/performance/components/chartsCom/lineAndChildLine.vue";
|
|
|
+import lineChartsFen from "@/views/performance/components/chartsCom/lineChartsFen.vue";
|
|
|
+import TinymceEditor from "@/components/Tinymce.vue";
|
|
|
+import { analysisDetail, queryAnalysisedEngine } from "@/api/performance";
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "temperature_large_components_undriven",
|
|
|
+ components: {
|
|
|
+ DicCard,
|
|
|
+ FilterChart,
|
|
|
+ lineAndChildLine,
|
|
|
+ lineChartsFen,
|
|
|
+ TinymceEditor,
|
|
|
+ },
|
|
|
+ props: {
|
|
|
+ initBatchCode: {
|
|
|
+ default: "",
|
|
|
+ type: String,
|
|
|
+ },
|
|
|
+ analysisTypeCode: {
|
|
|
+ default: "",
|
|
|
+ type: String,
|
|
|
+ },
|
|
|
+ batchCodeList: {
|
|
|
+ default: "",
|
|
|
+ type: Array,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ form: {
|
|
|
+ value2: "",
|
|
|
+ },
|
|
|
+ comment: "",
|
|
|
+ options: [],
|
|
|
+ windEngineGroupList: [], //批次风机列表
|
|
|
+ fieldEngineCodes: [], //选中风机
|
|
|
+ generalFilesDatas: [], //总图
|
|
|
+ diagramRelationsDatas: [], //分图
|
|
|
+ commentDescriptionVos: [], //评论列表
|
|
|
+ editableTabs: [],
|
|
|
+ };
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ initBatchCode(newVal) {
|
|
|
+ if (newVal) {
|
|
|
+ this.fetchData(); // 调用合并后的函数
|
|
|
+ }
|
|
|
+ },
|
|
|
+ analysisTypeCode(newVal) {
|
|
|
+ if (newVal) {
|
|
|
+ this.fetchData(); // 调用合并后的函数
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ if (this.initBatchCode && this.analysisTypeCode) {
|
|
|
+ this.fetchData(); // 调用合并后的函数
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ async handleComment() {
|
|
|
+ try {
|
|
|
+ await analysisCommentEdit({
|
|
|
+ batchCode: this.initBatchCode,
|
|
|
+ analysisTypeCode: "temperature_large_components",
|
|
|
+ commentList: this.editableTabs.map((item) => {
|
|
|
+ return {
|
|
|
+ commentTypeCode: item.commentTypeCode,
|
|
|
+ comment: item.commentTypeName === "分析评论" ? this.comment : "",
|
|
|
+ };
|
|
|
+ }),
|
|
|
+ });
|
|
|
+ this.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "保存成功",
|
|
|
+ });
|
|
|
+ this.comment = "";
|
|
|
+ this.getAnalysisDetail();
|
|
|
+ } catch (e) {
|
|
|
+ console.error(e);
|
|
|
+ this.loading = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onSubmit() {
|
|
|
+ console.log("submit!");
|
|
|
+ },
|
|
|
+ // 合并后的函数,处理数据请求
|
|
|
+ async fetchData() {
|
|
|
+ try {
|
|
|
+ // 获取分析详情
|
|
|
+ await this.getAnalysisDetail();
|
|
|
+ // 获取风机列表
|
|
|
+ await this.getWindEnfineList(
|
|
|
+ this.initBatchCode,
|
|
|
+ "temperature_large_components"
|
|
|
+ );
|
|
|
+ } catch (err) {
|
|
|
+ console.error("Failed to fetch data:", err);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 获取分析详情接口
|
|
|
+ async getAnalysisDetail() {
|
|
|
+ try {
|
|
|
+ const result = await analysisDetail({
|
|
|
+ batchCode: this.initBatchCode,
|
|
|
+ analysisTypeCode: "temperature_large_components",
|
|
|
+ fieldEngineCodes:
|
|
|
+ this.fieldEngineCodes.length === 0
|
|
|
+ ? undefined
|
|
|
+ : this.fieldEngineCodes.join(","),
|
|
|
+ });
|
|
|
+ if (
|
|
|
+ result.data &&
|
|
|
+ result.data[0] &&
|
|
|
+ result.data[0].commentTypeRelations
|
|
|
+ ) {
|
|
|
+ this.editableTabs = result.data[0].commentTypeRelations;
|
|
|
+ }
|
|
|
+ //当前评论展示获取
|
|
|
+ if (
|
|
|
+ result.data &&
|
|
|
+ result.data[0] &&
|
|
|
+ result.data[0].commentDescriptionVos
|
|
|
+ ) {
|
|
|
+ this.commentDescriptionVos = result.data[0].commentDescriptionVos;
|
|
|
+ }
|
|
|
+ this.generalFilesDatas =
|
|
|
+ result.data &&
|
|
|
+ result.data[0] &&
|
|
|
+ result.data[0].generalFiles &&
|
|
|
+ result.data[0].generalFiles
|
|
|
+ .filter((item) => item.fileAddr.endsWith(".json"))
|
|
|
+ .filter((item) =>
|
|
|
+ item.fileAddr.includes(
|
|
|
+ "generatornon_drive_end_bearing_temperature"
|
|
|
+ )
|
|
|
+ ); //总图数据
|
|
|
+ this.diagramRelationsDatas =
|
|
|
+ result.data &&
|
|
|
+ result.data[0] &&
|
|
|
+ result.data[0].diagramRelations
|
|
|
+ .filter((item) => item.fileAddr.endsWith(".json"))
|
|
|
+ .filter((item) =>
|
|
|
+ item.fileAddr.includes(
|
|
|
+ "generatornon_drive_end_bearing_temperature"
|
|
|
+ )
|
|
|
+ );
|
|
|
+ } catch (err) {
|
|
|
+ console.error("Failed to fetch analysis details:", err);
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ // 请求风机列表
|
|
|
+ async getWindEnfineList(batchCode, analysisTypeCode) {
|
|
|
+ // console.log("请求风机列表 分钟级");
|
|
|
+ const resEngineList = await queryAnalysisedEngine({
|
|
|
+ batchCode: batchCode,
|
|
|
+ analysisTypeCode,
|
|
|
+ });
|
|
|
+ this.windEngineGroupList = resEngineList.data;
|
|
|
+ },
|
|
|
+ handleEditorInput(index, newVal) {
|
|
|
+ // 更新对应的 comment 值
|
|
|
+ // 如果该功能没有实现,可以删除这个方法
|
|
|
+ },
|
|
|
+ //获取选中风机list
|
|
|
+ getEnfineList(data) {
|
|
|
+ this.fieldEngineCodes = data;
|
|
|
+ this.getAnalysisDetail();
|
|
|
+ },
|
|
|
+ //下一条
|
|
|
+ handleNext() {
|
|
|
+ const index = this.batchCodeList.findIndex(
|
|
|
+ (item) => item === this.initBatchCode
|
|
|
+ );
|
|
|
+ if (index === this.batchCodeList.length - 1) {
|
|
|
+ this.$message.warning("已经是最后一个分析结果了");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ this.$emit("setInitBathCode", this.batchCodeList[index + 1]);
|
|
|
+ },
|
|
|
+ //上一条
|
|
|
+ handlePrevious() {
|
|
|
+ const index = this.batchCodeList.findIndex(
|
|
|
+ (item) => item === this.initBatchCode
|
|
|
+ );
|
|
|
+ if (index === 0) {
|
|
|
+ this.$message.warning("没有上一条了");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ this.$emit("setInitBathCode", this.batchCodeList[index - 1]);
|
|
|
+ },
|
|
|
+ onClick() {},
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|
|
|
+<style scoped lang="scss">
|
|
|
+.type-variable {
|
|
|
+ display: flex;
|
|
|
+ height: 90%;
|
|
|
+ overflow: hidden;
|
|
|
+
|
|
|
+ .left {
|
|
|
+ width: 30%;
|
|
|
+ height: 100%;
|
|
|
+ overflow: auto;
|
|
|
+ padding: 20px;
|
|
|
+ flex: 1;
|
|
|
+ /* 滚动条整体样式 */
|
|
|
+ &::-webkit-scrollbar {
|
|
|
+ width: 6px; /* 滚动条宽度 */
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 滚动条轨道 */
|
|
|
+ &::-webkit-scrollbar-track {
|
|
|
+ background: #f5f7fa;
|
|
|
+ border-radius: 3px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 滚动条滑块 */
|
|
|
+ &::-webkit-scrollbar-thumb {
|
|
|
+ background: #c0c4cc;
|
|
|
+ border-radius: 3px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 滚动条滑块悬停时 */
|
|
|
+ &::-webkit-scrollbar-thumb:hover {
|
|
|
+ background: #909399;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .right {
|
|
|
+ width: 250px;
|
|
|
+ height: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.titleCharts {
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 500;
|
|
|
+ margin-top: 20px;
|
|
|
+}
|
|
|
+</style>
|