瀏覽代碼

2022-12-03 update-2

1. 同步白色版12-03代码
moccus 2 年之前
父節點
當前提交
82a9bc8100

+ 1 - 1
src/router/index.js

@@ -53,7 +53,7 @@ const routes = [
                 component: () => import('@/views/dataAnalysis/rateAnalysis/index'),
                 name: 'dataFilterRateAnalysis',
                 meta: {
-                    title: '风资源分析',
+                    title: '对风偏差分析',
                     icon: ''
                 },
             },

+ 4 - 3
src/utils/request.js

@@ -7,8 +7,8 @@ import { getTimeStamp } from './auth'
 const TimeOut = 3600 // 定义时间戳单位秒3600
 // 2.创建axios实例
 // const baseURL = 'http://192.168.10.4:9002'
-const baseURL = 'http://192.168.10.4:9002'
-const socketURL = 'ws://192.168.10.4:9002'
+const baseURL = 'http://127.0.0.1:9002'
+const socketURL = 'ws://127.0.0.1:9002'
 const outerURL = 'http://124.70.75.91:6060'
 const service = axios.create({
     // baseURL: process.env.VUE_APP_BASE_API,
@@ -39,9 +39,10 @@ service.interceptors.response.use(response => { // 配置成功和失败的处
     const { status, statusText, data } = response
     // // 根据success的成功与否决定下面的操作
     // // 判断校验的成功失败
-    if (data) {
+    if (data.code===0) {
         return data.data
     } else {
+        return data
         // Message.error(data.msg) // 提示错误信息
         // return Promise.reject(new Error(message)) // 返回错误对象
     }

+ 14 - 14
src/views/dataAnalysis/chartTheme.json

@@ -13,10 +13,10 @@
 	"textStyle": {},
 	"title": {
 			"textStyle": {
-					"color": "#333333"
+					"color": "#b3b3b3"
 			},
 			"subtextStyle": {
-					"color": "#aaaaaa"
+					"color": "#b3b3b3"
 			}
 	},
 	"line": {
@@ -168,24 +168,24 @@
 			"axisLine": {
 					"show": true,
 					"lineStyle": {
-							"color": "#333"
+							"color": "#b3b3b3"
 					}
 			},
 			"axisTick": {
 					"show": true,
 					"lineStyle": {
-							"color": "#333"
+							"color": "#b3b3b3"
 					}
 			},
 			"axisLabel": {
 					"show": true,
-					"color": "#333"
+					"color": "#b3b3b3"
 			},
 			"splitLine": {
 					"show": false,
 					"lineStyle": {
 							"color": [
-									"#ccc"
+									"#b3b3b3"
 							]
 					}
 			},
@@ -203,24 +203,24 @@
 			"axisLine": {
 					"show": true,
 					"lineStyle": {
-							"color": "#B3B3B3"
+							"color": "#b3b3b3"
 					}
 			},
 			"axisTick": {
 					"show": true,
 					"lineStyle": {
-							"color": "#B3B3B3"
+							"color": "#b3b3b3"
 					}
 			},
 			"axisLabel": {
 					"show": true,
-					"color": "#B3B3B3"
+					"color": "#b3b3b3"
 			},
 			"splitLine": {
 					"show": true,
 					"lineStyle": {
 							"color": [
-									"#ccc"
+									"#b3b3b3"
 							]
 					}
 			},
@@ -273,24 +273,24 @@
 			"axisLine": {
 					"show": true,
 					"lineStyle": {
-							"color": "#333"
+							"color": "#b3b3b3"
 					}
 			},
 			"axisTick": {
 					"show": true,
 					"lineStyle": {
-							"color": "#333"
+							"color": "#b3b3b3"
 					}
 			},
 			"axisLabel": {
 					"show": true,
-					"color": "#333"
+					"color": "#b3b3b3"
 			},
 			"splitLine": {
 					"show": true,
 					"lineStyle": {
 							"color": [
-									"#ccc"
+									"#b3b3b3"
 							]
 					}
 			},

+ 10 - 0
src/views/dataAnalysis/combine/components/current-scatter-chart.vue

@@ -120,6 +120,16 @@ export default {
             },
           },
         },
+        color: [
+            "#3D54BE",
+            "rgb(255,0,0)",
+            "#d3d3d3",
+            "#0098d9",
+            "#FF8700",
+            "#005eaa",
+            "#cda819",
+            "#32a487"
+        ],
         tooltip: {
           trigger: "item",
           axisPointer: {

+ 4 - 2
src/views/dataAnalysis/combine/index.vue

@@ -70,6 +70,7 @@ const funExcelChange = async (obj) => { //点击excel项时
 
 	if (chartResponse && chartResponse.code === 200) {
 		chartRes = chartResponse.data
+		avgObj.title = chartRes.obj.path.substring(chartRes.obj.path.indexOf(chartRes.obj.station + '_') + (chartRes.obj.station + '_').length).split('_')[0];
 		avgObj.cpavg = chartRes.obj.cpavg?.toFixed(2)
 		avgObj.frequency = chartRes.obj.frequency?.toFixed(2)
 		avgObj.pcratio = chartRes.obj.pcratio?.toFixed(2)
@@ -272,6 +273,7 @@ const funSubmit = async (query) => {
 }
 /**chart Data */
 const avgObj = reactive({ //平均cpz等
+	title: '',
 	cpavg: '',
 	frequency: '',
 	pcratio: ''
@@ -478,7 +480,7 @@ onActivated(() => {
 	<div class="py-[10px] px-[10px]">
 		<search-cop class="mb-[20px] bg-[rgba(0,0,0,0.3)] shadow rounded-[6px] shadow-blue-500" @submit="funSubmit">
 		</search-cop>
-		<el-dialog v-model="wtDialog" title="风机功率点位">
+		<el-dialog v-model="wtDialog" draggable title="风机功率点位">
 			<el-tabs v-model="wtTab">
 				<el-tab-pane label="数据" name="table">
 					<el-table :data="wtData" row-key="id" :max-height="550">
@@ -526,7 +528,7 @@ onActivated(() => {
 							<div v-show="activeTab === '2'"
 								:style="{ height: typeof tableHeight === 'string' ? tableHeight : tableHeight + 'px' }"
 								class="p-[10px]">
-								<CurrentScatterChart ref="chartRef" width="100%" height="calc( 100% - 20px )" :chartTitle="'平均Cp:'+avgObj.cpavg+'; 静风频率:'+avgObj.frequency+'; 曲线偏差率:'+avgObj.pcratio+'%'"
+								<CurrentScatterChart ref="chartRef" width="100%" height="calc( 100% - 20px )" :chartTitle="avgObj.title+ '&nbsp;&nbsp;' +'平均Cp:'+avgObj.cpavg+'; 静风频率:'+avgObj.frequency+'%; 曲线偏差率:'+avgObj.pcratio+'%'"
 									:xAxisData="xAxisData" :yAxisData="{ splitLine: { show: false } }" :seriesData="seriesData"
 									:showLegend="true" :brushSelected="!isChartArea" :dataSet="dataSet" @getSelected="funChartSelect" />
 							</div>

+ 396 - 0
src/views/dataAnalysis/lineAnalysis/components/chartTheme.json

@@ -0,0 +1,396 @@
+
+{
+	"color": [
+			"#db60c8",
+			"#c12e34",
+			"#e6b600d9",
+			"#0098d9",
+			"#465a83",
+			"#005eaa",
+			"#cda819",
+			"#32a487"
+	],
+	"backgroundColor": "rgba(0,0,0,0)",
+	"textStyle": {},
+	"title": {
+			"textStyle": {
+					"color": "#333333"
+			},
+			"subtextStyle": {
+					"color": "#aaaaaa"
+			}
+	},
+	"line": {
+			"itemStyle": {
+					"borderWidth": 1
+			},
+			"lineStyle": {
+					"width": 2
+			},
+			"symbolSize": 4,
+			"symbol": "emptyCircle",
+			"smooth": false
+	},
+	"radar": {
+			"itemStyle": {
+					"borderWidth": 1
+			},
+			"lineStyle": {
+					"width": 2
+			},
+			"symbolSize": 4,
+			"symbol": "emptyCircle",
+			"smooth": false
+	},
+	"bar": {
+			"itemStyle": {
+					"barBorderWidth": 0,
+					"barBorderColor": "#ccc"
+			}
+	},
+	"pie": {
+			"itemStyle": {
+					"borderWidth": 0,
+					"borderColor": "#ccc"
+			}
+	},
+	"scatter": {
+			"itemStyle": {
+					"borderWidth": 0,
+					"borderColor": "#ccc"
+			}
+	},
+	"boxplot": {
+			"itemStyle": {
+					"borderWidth": 0,
+					"borderColor": "#ccc"
+			}
+	},
+	"parallel": {
+			"itemStyle": {
+					"borderWidth": 0,
+					"borderColor": "#ccc"
+			}
+	},
+	"sankey": {
+			"itemStyle": {
+					"borderWidth": 0,
+					"borderColor": "#ccc"
+			}
+	},
+	"funnel": {
+			"itemStyle": {
+					"borderWidth": 0,
+					"borderColor": "#ccc"
+			}
+	},
+	"gauge": {
+			"itemStyle": {
+					"borderWidth": 0,
+					"borderColor": "#ccc"
+			}
+	},
+	"candlestick": {
+			"itemStyle": {
+					"color": "#c12e34",
+					"color0": "#2b821d",
+					"borderColor": "#c12e34",
+					"borderColor0": "#2b821d",
+					"borderWidth": 1
+			}
+	},
+	"graph": {
+			"itemStyle": {
+					"borderWidth": 0,
+					"borderColor": "#ccc"
+			},
+			"lineStyle": {
+					"width": 1,
+					"color": "#aaaaaa"
+			},
+			"symbolSize": 4,
+			"symbol": "emptyCircle",
+			"smooth": false,
+			"color": [
+					"#c12e34",
+					"#e6b600",
+					"#0098d9",
+					"#50ec39",
+					"#005eaa",
+					"#339ca8",
+					"#cda819",
+					"#32a487"
+			],
+			"label": {
+					"color": "#eeeeee"
+			}
+	},
+	"map": {
+			"itemStyle": {
+					"areaColor": "#ddd",
+					"borderColor": "#eee",
+					"borderWidth": 0.5
+			},
+			"label": {
+					"color": "#c12e34"
+			},
+			"emphasis": {
+					"itemStyle": {
+							"areaColor": "#e6b600",
+							"borderColor": "#ddd",
+							"borderWidth": 1
+					},
+					"label": {
+							"color": "#c12e34"
+					}
+			}
+	},
+	"geo": {
+			"itemStyle": {
+					"areaColor": "#ddd",
+					"borderColor": "#eee",
+					"borderWidth": 0.5
+			},
+			"label": {
+					"color": "#c12e34"
+			},
+			"emphasis": {
+					"itemStyle": {
+							"areaColor": "#e6b600",
+							"borderColor": "#ddd",
+							"borderWidth": 1
+					},
+					"label": {
+							"color": "#c12e34"
+					}
+			}
+	},
+	"categoryAxis": {
+			"axisLine": {
+					"show": true,
+					"lineStyle": {
+							"color": "#333"
+					}
+			},
+			"axisTick": {
+					"show": true,
+					"lineStyle": {
+							"color": "#333"
+					}
+			},
+			"axisLabel": {
+					"show": true,
+					"color": "#333"
+			},
+			"splitLine": {
+					"show": false,
+					"lineStyle": {
+							"color": [
+									"#ccc"
+							]
+					}
+			},
+			"splitArea": {
+					"show": false,
+					"areaStyle": {
+							"color": [
+									"rgba(250,250,250,0.3)",
+									"rgba(200,200,200,0.3)"
+							]
+					}
+			}
+	},
+	"valueAxis": {
+			"axisLine": {
+					"show": true,
+					"lineStyle": {
+							"color": "#333"
+					}
+			},
+			"axisTick": {
+					"show": true,
+					"lineStyle": {
+							"color": "#333"
+					}
+			},
+			"axisLabel": {
+					"show": true,
+					"color": "#333"
+			},
+			"splitLine": {
+					"show": true,
+					"lineStyle": {
+							"color": [
+									"#ccc"
+							]
+					}
+			},
+			"splitArea": {
+					"show": false,
+					"areaStyle": {
+							"color": [
+									"rgba(250,250,250,0.3)",
+									"rgba(200,200,200,0.3)"
+							]
+					}
+			}
+	},
+	"logAxis": {
+			"axisLine": {
+					"show": true,
+					"lineStyle": {
+							"color": "#333"
+					}
+			},
+			"axisTick": {
+					"show": true,
+					"lineStyle": {
+							"color": "#333"
+					}
+			},
+			"axisLabel": {
+					"show": true,
+					"color": "#333"
+			},
+			"splitLine": {
+					"show": true,
+					"lineStyle": {
+							"color": [
+									"#ccc"
+							]
+					}
+			},
+			"splitArea": {
+					"show": false,
+					"areaStyle": {
+							"color": [
+									"rgba(250,250,250,0.3)",
+									"rgba(200,200,200,0.3)"
+							]
+					}
+			}
+	},
+	"timeAxis": {
+			"axisLine": {
+					"show": true,
+					"lineStyle": {
+							"color": "#333"
+					}
+			},
+			"axisTick": {
+					"show": true,
+					"lineStyle": {
+							"color": "#333"
+					}
+			},
+			"axisLabel": {
+					"show": true,
+					"color": "#333"
+			},
+			"splitLine": {
+					"show": true,
+					"lineStyle": {
+							"color": [
+									"#ccc"
+							]
+					}
+			},
+			"splitArea": {
+					"show": false,
+					"areaStyle": {
+							"color": [
+									"rgba(250,250,250,0.3)",
+									"rgba(200,200,200,0.3)"
+							]
+					}
+			}
+	},
+	"toolbox": {
+			"iconStyle": {
+					"borderColor": "#06467c"
+			},
+			"emphasis": {
+					"iconStyle": {
+							"borderColor": "#4187c2"
+					}
+			}
+	},
+	"legend": {
+			"textStyle": {
+					"color": "#333333"
+			}
+	},
+	"tooltip": {
+			"axisPointer": {
+					"lineStyle": {
+							"color": "#cccccc",
+							"width": 1
+					},
+					"crossStyle": {
+							"color": "#cccccc",
+							"width": 1
+					}
+			}
+	},
+	"timeline": {
+			"lineStyle": {
+					"color": "#005eaa",
+					"width": 1
+			},
+			"itemStyle": {
+					"color": "#005eaa",
+					"borderWidth": 1
+			},
+			"controlStyle": {
+					"color": "#005eaa",
+					"borderColor": "#005eaa",
+					"borderWidth": 0.5
+			},
+			"checkpointStyle": {
+					"color": "#005eaa",
+					"borderColor": "#316bc2"
+			},
+			"label": {
+					"color": "#005eaa"
+			},
+			"emphasis": {
+					"itemStyle": {
+							"color": "#005eaa"
+					},
+					"controlStyle": {
+							"color": "#005eaa",
+							"borderColor": "#005eaa",
+							"borderWidth": 0.5
+					},
+					"label": {
+							"color": "#005eaa"
+					}
+			}
+	},
+	"visualMap": {
+			"color": [
+					"#1790cf",
+					"#a2d4e6"
+			]
+	},
+	"dataZoom": {
+			"backgroundColor": "rgba(47,69,84,0)",
+			"dataBackgroundColor": "rgba(47,69,84,0.3)",
+			"fillerColor": "rgba(167,183,204,0.4)",
+			"handleColor": "#a7b7cc",
+			"handleSize": "100%",
+			"textStyle": {
+					"color": "#333333"
+			}
+	},
+	"markPoint": {
+			"label": {
+					"color": "#eeeeee"
+			},
+			"emphasis": {
+					"label": {
+							"color": "#eeeeee"
+					}
+			}
+	}
+}

+ 72 - 57
src/views/dataAnalysis/lineAnalysis/components/current-scatter-chart.vue

@@ -101,41 +101,51 @@ export default {
         //     ? "rgba(0,0,0,0.4)"
         //     : "rgba(255,255,255,0.5)",
         //工具箱
+        color: [
+            "rgb(255,0,0)",
+            "#FF8700",
+            "#e6b600d9",
+            "#0098d9",
+            "#3D54BE",
+            "#005eaa",
+            "#cda819",
+            "#32a487"
+        ],
         toolbox: {
-          show: true,
+          show: false,
           x: "right",
           position: [10, 10],
           // backgroundColor:'rgba(0,0,0,0.4)',
           borderColor: partten.getColor("gray"),
           textStyle: {
             fontSize: util.vh(16),
-            color: "#fff",
+            color: partten.getColor("gray")
           },
           iconStyle: {
-            borderColor:"#fff",
+            borderColor:partten.getColor("gray")
           },
           emphasis: {
             iconStyle: {
-              borderColor: "#fff",
+              borderColor:partten.getColor("gray")
             },
           },
         },
         tooltip: {
-          trigger: "item",
+          trigger: "axis",
           axisPointer: {
             type: "cross",
           },
-          backgroundColor: "rgba(0,0,0,0.4)",
-          borderColor: partten.getColor("gray"),
-          textStyle: {
-            fontSize: util.vh(16),
-            color: "#fff",
-          },
-          formatter(params) {
-            return params.value?.x
-              ? `${params.seriesName}<br />风速:${params.value.x}m/s<br />功率:${params.value.y}kW`
-              : `${params.name}`;
-          },
+          // backgroundColor: "rgba(0,0,0,0.4)",
+          // borderColor: partten.getColor("gray"),
+          // textStyle: {
+          //   fontSize: util.vh(16),
+          //   color: partten.getColor("gray"),
+          // },
+          // formatter(params) {
+          //   return params.value?.x
+          //     ? `${params.seriesName}<br />风速:${params.value.x}m/s<br />功率:${params.value.y}kW`
+          //     : `${params.name}`;
+          // },
         },
         brush: {
           seriesIndex: [2,3],
@@ -174,8 +184,9 @@ export default {
         //图例-每一条数据的名字
         legend: {
           show: that.showLegend,
-          data: [ "拟合功率", "保证功率","无用点", "有用点", "Cp值"],
+          // data: [ "拟合功率", "保证功率","无用点", "有用点", "Cp值"],
           right: "120",
+          type: 'scroll',
           top: "5",
           // icon: "circle",
           itemWidth: 6,
@@ -193,7 +204,7 @@ export default {
           
         },
         grid: {
-          top: 48,
+          top: 58,
           left: 40,
           right: 40,
           bottom: 24,
@@ -201,6 +212,10 @@ export default {
         //x轴
         xAxis: [
           {
+            name: 'm/s',
+            nameTextStyle: {
+              color: '#B3B3B3'
+            },
             type: "value",
             boundaryGap: false,
             data: that.xAxisData || [],
@@ -213,6 +228,7 @@ export default {
             splitLine: {
               show: false,
             },
+            smooth: true,
             textStyle: {
               color:
                 that.theme === "dark"
@@ -226,10 +242,10 @@ export default {
           splitLine: { show: false },
           position: 'left',
           min: 0,
-        }, {
-          splitLine: { show: false },
-          position: 'right',
-          min: 0,
+          name: 'kW',
+          nameTextStyle: {
+            color: '#B3B3B3'
+          }
         }],
         animation: true,
         dataset: that.dataSet.length? JSON.parse(that.dataSet) : [],
@@ -244,47 +260,46 @@ export default {
       window.addEventListener("resize", that.resize);
 
       myChart.setOption(option);
-      if (that.brushSelected) {
-        myChart.dispatchAction({
-          type: "takeGlobalCursor",
-          // 如果想变为“可刷选状态”,必须设置。不设置则会关闭“可刷选状态”。
-          key: "brush",
-          brushOption: {
-            seriesIndex: [2,3],
-            yAxisIndex: 0,
-            transformable: true,
-            throttleType: "debounce",
-            throttleDelay: 1000,
-            removeOnClick: true,
-            brushType: "polygon",
-            brushMode: "multiple",
-            brushStyle: {
-              borderWidth: 1,
-              color: "rgba(255,36,36,0.2)",
-              borderColor: "#ff2424",
-            },
-          },
-        });
-      }
+      // if (that.brushSelected) {
+      //   myChart.dispatchAction({
+      //     type: "takeGlobalCursor",
+      //     // 如果想变为“可刷选状态”,必须设置。不设置则会关闭“可刷选状态”。
+      //     key: "brush",
+      //     brushOption: {
+      //       seriesIndex: [2,3],
+      //       yAxisIndex: 0,
+      //       transformable: true,
+      //       throttleType: "debounce",
+      //       throttleDelay: 1000,
+      //       removeOnClick: true,
+      //       brushType: "polygon",
+      //       brushMode: "multiple",
+      //       brushStyle: {
+      //         borderWidth: 1,
+      //         color: "rgba(255,36,36,0.2)",
+      //         borderColor: "#ff2424",
+      //       },
+      //     },
+      //   });
+      // }
       myChart.off("brushSelected");
       myChart.on("brushSelected", (params) => {
         that.$emit("getSelected", params.batch || []);
       });
       myChart.off('click')
       myChart.on('click', params => {
-          console.log(params)
-          if(params.componentType === 'markArea'){
-            myChart.dispatchAction({
-              type: 'brush',
-              areas: [
-                {
-                  xAxisIndex: 0,
-                  brushType: 'lineX',
-                  coordRange: [params.data.coord[0][0], params.data.coord[1][0]]
-                },
-              ]
-            });
-          }
+          // if(params.componentType === 'markArea'){
+          //   myChart.dispatchAction({
+          //     type: 'brush',
+          //     areas: [
+          //       {
+          //         xAxisIndex: 0,
+          //         brushType: 'lineX',
+          //         coordRange: [params.data.coord[0][0], params.data.coord[1][0]]
+          //       },
+          //     ]
+          //   });
+          // }
         })
     },
   },

+ 170 - 266
src/views/dataAnalysis/lineAnalysis/index.vue

@@ -1,11 +1,9 @@
 <script setup name="prepare">
-import searchCop from './components/search.vue'
 import excelCop from '@/components/excel.vue'
 import treeCop from '@/components/tree.vue'
-import tableCop from './components/table.vue'
-import submitBtn from '@/components/submitBtn'
+import SubmitBtn from '@/components/submitBtn.vue'
 import { ref, nextTick, onActivated, onMounted, reactive } from 'vue'
-import request from '@/utils/request'
+import request from '@/utils/request.js'
 import { ElMessage } from 'element-plus'
 import util from "@tools/util";
 import CurrentScatterChart from './components/current-scatter-chart.vue'
@@ -13,167 +11,43 @@ import CurrentScatterChart from './components/current-scatter-chart.vue'
 // import tableRes from '@/data/table.json'
 // import areaDataRes from '@/data/areaData.json'
 /**配置参数 */
-const treeHeight = ref((window.innerHeight - 210) / 2 + 'px') //tree高度
-const excelHeight = ref((window.innerHeight - 210) / 2 + 'px') //excel高度
-const tableHeight = ref(window.innerHeight - 254 + 'px')
+const treeHeight = ref(window.innerHeight - 120 + 'px') //tree高度
+const excelHeight = ref(window.innerHeight - 120 + 'px') //excel高度
+const tableHeight = ref(window.innerHeight - 120 + 'px')
 /**excel 开始 */
 const excelCheckboxShow = ref(false)
-const excelType = ref('')
 const excelCheckIds = ref([])
 const excelList = ref([])
 const funExcelChange = async (obj) => { //点击excel项时
-	activeTab.value = '1'
-	isChartArea.value = false
-	tableShowId.value = obj.id
-	tableName.value = obj.name
-	excelType.value = obj.type // 接收excel的type 用于控制右侧tab展示
-
-	let res = null
-	let chartRes = {
-		scatterhs: [[]],
-		scatterls: [[]],
-		sjgl: [[]],
-		llgl: [[]],
-		cpz: [[]]
-	}
-	let poiRes = null
-	let chartResponse = null
-	tableLoading.value = true
-	if (obj.type === 'process') {
-		res = await request.get('/power/process/show', { params: { id: obj.id } })
-	} else if (obj.type === 'fitting') {
-		activeTab.value = '2'
-		res = await request.get('/power/fitting/show', { params: { id: obj.id } })
-		// res = tableRes
-		// chartResponse = dotRes
-		chartResponse = await request.get('/power/fitting/curve', { params: { id: obj.id, p: 1 } })
-		poiRes = await request.get('/power/fitting/curve/ratio', {params: {id: obj.id}})
-		// poiRes = areaDataRes
-	}
-	tableColumn.value = res.data.title.map(o => {
-		return {
-			prop: o.key,
-			width: o.des==='时间'? 100: 80,
-			label: o.des,
-		}
-	})
-	tableData.value = res.data.data
-	tableLoading.value = false
-
-	// markDot 
-	if(poiRes && poiRes.code=== 200){
-		markDot.pcl5 = poiRes.data.pcl5
-		markDot.pcl10 = poiRes.data.pcl10
-		markDot.pcl12 = poiRes.data.pcl12
-		markDot.pcl25 = poiRes.data.pcl25
-	}
-
-	if (chartResponse && chartResponse.code === 200) {
-		chartRes = chartResponse.data
-		avgObj.cpavg = chartRes.obj.cpavg?.toFixed(2)
-		avgObj.frequency = chartRes.obj.frequency?.toFixed(2)
-		avgObj.pcratio = chartRes.obj.pcratio?.toFixed(2)
-		dataSet.value = JSON.stringify([
-			{
-				source: chartRes.wyd
-			},
-			{
-				source: chartRes.yyd
-			}
-		])
-		const color = ["#1C99FF", "#FF8700", "#3D54BE", "#fa8c16", "#1DA0D7", "#DD5044"]
-		seriesData.value = [
-			{
-				name: "拟合功率",
-				type: "line",
-				symbol: "line", //设定为实心点
-				symbolSize: 0, //设定实心点的大小
-				smooth: true, //这个是把线变成曲线
-				data: chartRes.sjgl,
-				xAxisIndex: 0,
-			},
-			{
-				name: "保证功率",
-				type: "line",
-				symbol: "line", //设定为实心点
-				symbolSize: 0, //设定实心点的大小
-				smooth: true, //这个是把线变成曲线
-				data: chartRes.llgl,
-				xAxisIndex: 0,
-			},
-			{
-				type: 'effectScatter',
-				showEffectOn: "emphasis",
-				rippleEffect: {
-					scale: 1
-				},
-				name: '无用点',
-				symbolSize: (data) => {
-					return data.s ? data.s > 10 ? 10 : data.s : 4
-				},
-				datasetIndex: 0,
-				encode: {
-					x: 'x',
-					y: 'y'
-				},
-				xAxisIndex: 0,
-				yAxisIndex: 0,
-			},
-			{
-				type: 'effectScatter',
-				showEffectOn: "emphasis",
-				rippleEffect: {
-					scale: 1
-				},
-				name: '有用点',
-				symbolSize: (data) => {
-					return data.s ? data.s > 10 ? 10 : data.s : 4
-				},
-				datasetIndex: 1,
-				encode: {
-					x: 'x',
-					y: 'y'
-				},
-				xAxisIndex: 0,
-				yAxisIndex: 0,
-			},
-			{
-				name: "Cp值",
-				type: "line",
-				symbol: "line", //设定为实心点
-				symbolSize: 0, //设定实心点的大小
-				smooth: true, //这个是把线变成曲线
-				data: chartRes.cpz,
-				xAxisIndex: 0,
-				yAxisIndex: 1,
-			},
-		]
-	}
+	return false
 }
 const funExcelCheckChange = ({ checkArr, data }) => {   //bug 
 	excelCheckIds.value = checkArr
+	funSubmit()
 }
-/**excel fitData */
-const excelFitList = ref([])
 /**prepare tree 开始 */
 const treeData = ref([])
-const funRepeatMap = (arr) => {
+const actTreeNode = ref(null) //当前激活的treeNode
+const funRepeatMap = (arr, type='fitting') => {
 	return arr.map(o => {
 		if (o.children) {
 			const findIndex = o.children.findIndex(p => !!p.type)
 			if (findIndex !== -1) {
 				o.childs = o.children
 				o.children = []
+				if(!actTreeNode.value && type === 'fitting'){ //判断当且仅有process获取tree时 赋值
+					actTreeNode.value = o
+				}
 			}
 		}
 		return {
 			...o,
-			children: o.children ? funRepeatMap(o.children) : []
+			children: o.children ? funRepeatMap(o.children, type) : []
 		}
 	})
 }
 const funGetTree = async () => {
-	const res = await request.get("/power/process/tree")
+	const res = await request.get("/power/fitting/tree")
 	treeData.value = funRepeatMap(res.data)
 	excelList.value = []
 }
@@ -210,63 +84,49 @@ const funTreeCheckChange = ({ current, checkedNodes, checkedKeys, halfCheckedNod
 		}
 	}
 	excelCheckIds.value = checkIds
+	funSubmit()
 }
 
-/**process tree 开始 */
-const processTreeData = ref([])
-const funGetProcessTree = async () => {
-	const res = await request.get("/power/fitting/tree")
-	processTreeData.value = funRepeatMap(res.data)
-}
-const funProcessCurrentChange = ({ current, currentNode }) => {
-	if (current.childs) {
-		excelFitList.value = current.childs.map(o => {
-			return {
-				id: o.id,
-				interval: o.interval,
-				path: o.path,
-				prepareid: o.prepareid,
-				station: o.station,
-				time: o.time,
-				type: o.type,
-				windturbine: o.windturbine,
-				name: o.path.substring(o.path.indexOf(o.station + '_') + (o.station + '_').length)
-			}
-		})
-	} else {
-		excelFitList.value = []
-	}
-}
-
-/**table 开始 */
-const tableShowId = ref('')
-const tableColumn = ref([])
-const tableLoading = ref(false)
-const tableName = ref('')
-const tableData = ref([])
-/**table 结束 */
 /**search 开始 */
-const funSubmit = async (query) => {
+const funSubmit = async () => {
 	if (!excelCheckIds.value.length) {
 		ElMessage.error('请勾选要预处理的项')
 		return false
 	}
 	const params = {
-		...query,
 		ids: excelCheckIds.value.join(',')
 	}
-	const res = await request.get('/power/fitting/data', { params: params })
+	const res = await request.get('/power/fitting/line', { params: params })
 	if (res.code === 200) {
-		ElMessage.success(res.msg)
-		funGetProcessTree()
-		const excelInfo = res.data
-
-		/**拟合完成后 显示右侧图表及数据 */
-		funExcelChange({
-			id: excelInfo.id,
-			name: excelInfo.path.substring(excelInfo.path.indexOf(excelInfo.station + '_') + (excelInfo.station + '_').length),
-			type: 'fitting'
-		})
+		seriesData.value = []
+		if(res.data.bzgl){
+			seriesData.value.push(
+				{
+					name: "保证功率",
+					type: "line",
+					symbol: "line", //设定为实心点
+					symbolSize: 0, //设定实心点的大小
+					smooth: true, //这个是把线变成曲线
+					data: res.data.bzgl || [],
+					xAxisIndex: 0,
+				},
+			)
+		}
+		if(res.data.sjgl?.length){
+			for(const wtObj of res.data.sjgl){
+				seriesData.value.push(
+					{
+						name: wtObj.wtId + "\n实际功率",
+						type: "line",
+						symbol: "line", //设定为实心点
+						symbolSize: 0, //设定实心点的大小
+						smooth: true, //这个是把线变成曲线
+						data: wtObj.sjgl || [],
+						xAxisIndex: 0,
+					},
+				)
+			}
+		}
 	}
 }
 /**chart Data */
@@ -276,10 +136,10 @@ const avgObj = reactive({ //平均cpz等
 	pcratio: ''
 })
 const markDot = reactive({ //3-5 point点等
-	pcl5: null,
-	pcl10: null,
-	pcl12: null,
-	pcl25: null
+	pcl5: 0,
+	pcl10: 0,
+	pcl12: 0,
+	pcl25: 0
 })
 const xAxisData = ref([])
 const chartRef = ref() //chart 的ref
@@ -343,6 +203,9 @@ const funChartSelect = async (batch) => {
 }
 const funChartArea = () => {
 	if (seriesData.value?.length) {
+		// 获取数据后 展示dialog table 数据
+		wtDialog.value = true
+		wtData.value = []
 		if (!isChartArea.value) {
 			// 请求一下
 			seriesData.value[0] = {
@@ -393,7 +256,7 @@ const funChartArea = () => {
 						data: [
 							[
 								{
-									name: `3~5m 偏差率: ${markDot.pcl5}`,
+									name: `3~5m 偏差率: ${markDot.pcl5}%`,
 									xAxis: 3,
 								},
 								{
@@ -402,7 +265,7 @@ const funChartArea = () => {
 							],
 							[
 								{
-									name: `5~10m 偏差率: ${markDot.pcl10}`,
+									name: `5~10m 偏差率: ${markDot.pcl10}%`,
 									xAxis: 5,
 								},
 								{
@@ -411,7 +274,7 @@ const funChartArea = () => {
 							],
 							[
 								{
-									name: `10~12m 偏差率: ${markDot.pcl12}`,
+									name: `10~12m 偏差率: ${markDot.pcl12}%`,
 									xAxis: 10,
 								},
 								{
@@ -420,7 +283,7 @@ const funChartArea = () => {
 							],
 							[
 								{
-									name: `12~25m 偏差率: ${markDot.pcl25}`,
+									name: `12~25m 偏差率: ${markDot.pcl25}%`,
 									xAxis: 12,
 								},
 								{
@@ -445,22 +308,19 @@ const funChartArea = () => {
 const wtDialog = ref(false)
 const wtData = ref([])
 const wtTab = ref('table')
-/**tab  */
-const activeTab = ref('1')
 /**created */
 funGetTree()
-funGetProcessTree()
 /**mounted */
 onMounted(() => {
-	tableHeight.value = window.innerHeight - 254 + 'px'
-	excelHeight.value =(window.innerHeight - 210) / 2 + 'px'
-	treeHeight.value = (window.innerHeight - 210) / 2 + 'px'
+	tableHeight.value = window.innerHeight - 120 + 'px'
+	excelHeight.value = window.innerHeight - 120 + 'px'
+	treeHeight.value = window.innerHeight - 120 + 'px'
 	window.addEventListener('resize', () => {
-		tableHeight.value = window.innerHeight - 254 + 'px'
-		excelHeight.value = (window.innerHeight - 210) / 2 + 'px'
-		treeHeight.value = (window.innerHeight - 210) / 2  + 'px'
+		tableHeight.value = window.innerHeight - 120 + 'px'
+		excelHeight.value = window.innerHeight - 120 + 'px'
+		treeHeight.value = window.innerHeight - 120 + 'px'
 	})
-	// /**test */
+	/**test */
 	// funExcelChange({
 	// 	id: 1,
 	// 	name: 'excel',
@@ -470,69 +330,113 @@ onMounted(() => {
 /**activated */
 onActivated(() => {
 	funGetTree()
-	funGetProcessTree()
 })
 </script>
 <template>
-	<div class="py-[10px] px-[10px]">
-		<search-cop class="mb-[20px] bg-[rgba(0,0,0,0.3)] shadow rounded-[6px] shadow-blue-500" @submit="funSubmit">
-		</search-cop>
-		<el-dialog v-model="wtDialog" title="风机功率点位">
-			<el-tabs v-model="wtTab">
-				<el-tab-pane label="数据" name="table">
-					<el-table :data="wtData" row-key="id" :max-height="550">
-						<el-table-column property="wtId" align="center" label="风机" />
-						<el-table-column property="time" sortable :width="160" align="center" label="时间" />
-						<el-table-column property="speed" sortable align="center" label="风速(m/s)" />
-						<el-table-column property="power" sortable align="center" label="功率(kw)" />
-						<el-table-column property="rr" sortable align="center" label="转速" />
-						<el-table-column property="filter" sortable align="center" label="是否有用点" />
-					</el-table>
-				</el-tab-pane>
-				<el-tab-pane label="故障" name="problem" disabled>
-
-				</el-tab-pane>
-				<el-tab-pane label="预警" name="warning" disabled>
-
-				</el-tab-pane>
-			</el-tabs>
-		</el-dialog>
-		<div class="relative shadow rounded-[6px] shadow-blue-500 px-[10px] pt-[20px] pb-[10px]">
-			<div class="text-[14px] absolute top-[-7px] text-[#B3B3B3] left-[20px]">数据展示</div>
-			<el-row :gutter="10">
-				<el-col :span="5">
-					<tree-cop :data="treeData" @checkChange="funTreeCheckChange" :show-checkbox="true" :height="treeHeight"
-						@currentChange="funCurrentChange" @refresh="funGetTree"></tree-cop>
-					<tree-cop class="mt-[10px]" :data="processTreeData" :height="treeHeight"
-						@currentChange="funProcessCurrentChange" @refresh="funGetProcessTree"></tree-cop>
-				</el-col>
-				<el-col :span="3">
-					<excel-cop :checkIds="excelCheckIds" :showCheckbox="excelCheckboxShow" :data="excelList" :height="excelHeight"
-						@excelChange="funExcelChange" @checkChange="funExcelCheckChange"></excel-cop>
-					<excel-cop class="mt-[10px]" :data="excelFitList" :height="excelHeight" @excelChange="funExcelChange">
-					</excel-cop>
-				</el-col>
-				<el-col :span="16">
-					<div class="px-[10px] shadow rounded-[6px] shadow-blue-500 bg-[rgba(0,0,0,0.3)]">
-						<submitBtn class="absolute right-[16px] top-[6px] z-10" desc="区域划分" v-if="activeTab === '2' && excelType === 'fitting'" @click="funChartArea"></submitBtn>
-						<el-tabs v-model="activeTab">
-							<el-tab-pane label="表格数据" name="1">
-							</el-tab-pane>
-							<el-tab-pane label="图表展示" name="2" v-if="excelType === 'fitting'">
-							</el-tab-pane>
-							<table-cop v-show="activeTab === '1'" :data="tableData" :loading="tableLoading" :column="tableColumn"
-								:height="tableHeight" :tableId="tableShowId" :tableName="tableName"></table-cop>
-							<div v-show="activeTab === '2'"
-								:style="{ height: typeof tableHeight === 'string' ? tableHeight : tableHeight + 'px' }"
-								class="p-[10px]">
-								<CurrentScatterChart ref="chartRef" width="100%" height="calc( 100% - 20px )" :chartTitle="'平均Cp:'+avgObj.cpavg+'; 静风频率:'+avgObj.frequency+'; 曲线偏差率:'+avgObj.pcratio+'%'"
-									:xAxisData="xAxisData" :yAxisData="{ splitLine: { show: false } }" :seriesData="seriesData"
-									:showLegend="true" :brushSelected="!isChartArea" :dataSet="dataSet" @getSelected="funChartSelect" />
-							</div>
-						</el-tabs>
-					</div>
-				</el-col>
-			</el-row>
-		</div>
-	</div>
+  <div class="py-[10px] px-[10px]">
+    <el-dialog draggable v-model="wtDialog" title="曲线偏差率">
+			<el-table :data="wtData" row-key="id" :max-height="550">
+				<el-table-column property="wtId" align="center" label="风机" />
+				<el-table-column
+					property="speed"
+					sortable
+					align="center"
+					label="3~5m"
+				/>
+				<el-table-column
+					property="power"
+					sortable
+					align="center"
+					label="5~10m"
+				/>
+				<el-table-column
+					property="rr"
+					sortable
+					align="center"
+					label="10~12m"
+				/>
+				<el-table-column
+					property="filter"
+					sortable
+					align="center"
+					label="12~25m"
+				/>
+				<el-table-column
+					property="filter"
+					sortable
+					align="center"
+					label="3~25m"
+				/>
+			</el-table>
+    </el-dialog>
+    <div
+      class="
+        relative
+        shadow
+        rounded-[6px]
+        shadow-blue-500
+        px-[10px]
+        pt-[20px]
+        pb-[10px]
+      "
+    >
+      <div class="text-[14px] absolute top-[-7px] text-[#B3B3B3] left-[20px]">
+        数据展示
+      </div>
+      <el-row :gutter="10">
+        <el-col :span="5">
+          <tree-cop
+            :data="treeData"
+            @checkChange="funTreeCheckChange"
+            :show-checkbox="true"
+            :height="treeHeight"
+            @currentChange="funCurrentChange"
+            @refresh="funGetTree"
+          ></tree-cop>
+        </el-col>
+        <el-col :span="3">
+          <excel-cop
+            :checkIds="excelCheckIds"
+            :showCheckbox="excelCheckboxShow"
+            :data="excelList"
+            :height="excelHeight"
+            @excelChange="funExcelChange"
+            @checkChange="funExcelCheckChange"
+          ></excel-cop>
+        </el-col>
+        <el-col :span="16">
+          <div class="px-[10px] shadow rounded-[6px] shadow-blue-500">
+            <SubmitBtn
+              class="absolute right-[16px] top-[6px] z-10"
+              desc="区域划分"
+              @click="funChartArea"
+            ></SubmitBtn>
+            <div
+              :style="{
+                height:
+                  typeof tableHeight === 'string'
+                    ? tableHeight
+                    : tableHeight + 'px',
+              }"
+              class="p-[10px]"
+            >
+              <CurrentScatterChart
+                ref="chartRef"
+                width="100%"
+                height="calc( 100% - 20px )"
+                chartTitle=""
+                :xAxisData="xAxisData"
+                :yAxisData="{ splitLine: { show: false } }"
+                :seriesData="seriesData"
+                :showLegend="true"
+                :brushSelected="!isChartArea"
+                :dataSet="dataSet"
+                @getSelected="funChartSelect"
+              />
+            </div>
+          </div>
+        </el-col>
+      </el-row>
+    </div>
+  </div>
 </template>

+ 5 - 1
src/views/dataAnalysis/rateAnalysis/components/chart.vue

@@ -54,7 +54,11 @@ const option = computed({
 			radiusAxis: {},
 			radar: props.isRadar?  [  //雷达图设定区域
 				{
-					indicator: props.xAxis.data || [],
+					indicator: props.xAxis.data.map(o => {
+						return {
+							name: o
+						}
+					}) || [],
 					center: ['60%','50%'],
 					radius: '70%',
 					splitLine: {

+ 55 - 2
src/views/dataAnalysis/rateAnalysis/components/lineChart.vue

@@ -5,6 +5,7 @@ import { ref, toRaw, computed, onMounted, watch, nextTick } from 'vue';
 import * as echarts from 'echarts'
 const chartId = 'chart-' + util.newGUID(); //chartId
 const chartIns = ref(null)  //chart 实例
+const emits = defineEmits(['getSelected'])
 const props = defineProps({
 	xAxis: {
 		type: Object,
@@ -42,6 +43,11 @@ const props = defineProps({
 		type: String,
 		required: false
 	},
+	brush: {
+		type: Boolean,
+		required: false,
+		default: false
+	}
 })
 
 /**定义option */
@@ -59,11 +65,28 @@ const option = computed({
 			title: {
 				text: props.title || '',
 				subtext: props.subtext || '',
-				top: 10,
+				top: 6,
 				left: 30,
 			},
 			xAxis: props.xAxis || {},
 			yAxis: props.yAxis || {},
+			brush: {
+          seriesIndex: [1],
+          yAxisIndex: 0,
+          transformable: true,
+          throttleType: "debounce",
+          throttleDelay: 1000,
+          removeOnClick: true,
+          brushType: props.brush? "polygon" : false,
+          brushMode: "multiple",
+          brushStyle: {
+            borderWidth: 1,
+            borderColor: "#ff2424",
+          },
+        },
+			toolbox:{
+				show: props.brush,
+			},
 			tooltip: {
 				confine: true,
 				axisPointer: {
@@ -78,7 +101,7 @@ const option = computed({
 				itemWidth: 6,
 			},
 			grid: {
-				top: 42,
+				top: 80,
 				left: 40,
 				right: 40,
 				bottom: 40,
@@ -110,12 +133,42 @@ watch(() => option, (newVal, oldVal) => {
 		echartIns.setOption(toRaw(newVal.value))
 	}
 }, { deep: true })
+const funBrushChange = (flag) => {
+	const echartIns = toRaw(chartIns.value)
+		console.log(echartIns)
+	echartIns.dispatchAction({
+			type: "takeGlobalCursor",
+			// 如果想变为“可刷选状态”,必须设置。不设置则会关闭“可刷选状态”。
+			key: "brush",
+			brushOption: {
+				seriesIndex: [1],
+				yAxisIndex: 0,
+				transformable: true,
+				throttleType: "debounce",
+				throttleDelay: 1000,
+				removeOnClick: true,
+				brushType: flag? "polygon" : false,
+				brushMode: "multiple",
+				brushStyle: {
+					borderWidth: 1,
+					color: "rgba(255,36,36,0.2)",
+					borderColor: "#ff2424",
+				},
+			},
+		});
+	echartIns.off("brushSelected");
+	echartIns.on("brushSelected", (params) => {
+		emits("getSelected", params.batch || []);
+	});
+}
+watch(() => props.brush, (newVal, oldVal) => funBrushChange(newVal))
 
 onMounted(() => {
 	echarts.registerTheme('chartTheme', chartTheme)
 	const echartIns =	echarts.init(document.getElementById(chartId),'chartTheme') 
 	chartIns.value = echartIns
 	echartIns.setOption(option.value)
+	funBrushChange(props.brush)
 	window.addEventListener('resize', () => {
 		echartIns.resize()
 	})

+ 17 - 2
src/views/dataAnalysis/rateAnalysis/components/scatterSingleChart.vue

@@ -31,6 +31,16 @@ const props = defineProps({
 		required: false,
 		default: '500px'
 	},
+	title: {
+		type: String,
+		required: false,
+		default: ''
+	},
+	subtext: {
+		type: String,
+		required: false,
+		default: ''
+	},
 })
 
 /**定义option */
@@ -49,9 +59,14 @@ const option = computed({
 					);
 				}
 			},
+			title: {
+				text: props.title || '',
+				subtext: props.subtext || '',
+				top: 6,
+				left: 30,
+			},
 			grid: {
-				top: 20,
-				left: 2,
+				top: 40,
 				bottom: 10,
 				right: 20,
 				containLabel: true

文件差異過大導致無法顯示
+ 355 - 75
src/views/dataAnalysis/rateAnalysis/index.vue