Explorar o código

修改迁移时前端问题以及参数修改;增加故障与报警页面;

全业务考评 hai 1 ano
pai
achega
f1c9aa7553

+ 70 - 37
src/pages/dataAnalysis/angleAnalysis/index.vue

@@ -102,43 +102,76 @@ const funSubmit = async (params) => {
 	if(res.code !== 200){
 		return false
 	}
-	const tsArr = res.data.time
-	let yp1 = [], yp2 = [], yp3 = []
-	res.data.angle.forEach(val => {
-		yp1 = val.yp1
-		yp2 = val.yp2
-		yp3 = val.yp3
-	});
-	xAxisData.value = tsArr
-	seriesData.value = [
-		{
-			name: "叶片一",
-			type: "line",
-			symbol: "line", //设定为实心点
-			symbolSize: 0, //设定实心点的大小
-			smooth: false, //这个是把线变成曲线
-			data: yp1,
-			xAxisIndex: 0,
-		},
-		{
-			name: "叶片二",
-			type: "line",
-			symbol: "line", //设定为实心点
-			symbolSize: 0, //设定实心点的大小
-			smooth: false, //这个是把线变成曲线
-			data: yp2,
-			xAxisIndex: 0,
-		},
-		{
-			name: "叶片三",
-			type: "line",
-			symbol: "line", //设定为实心点
-			symbolSize: 0, //设定实心点的大小
-			smooth: false, //这个是把线变成曲线
-			data: yp3,
-			xAxisIndex: 0,
-		},
-	]
+
+	let exTime = []
+	let yp1 = [], yp2 = []
+	res.data.bw.forEach(it =>{
+		exTime.push(it.time)
+		yp1.push(it.value)
+	})
+	res.data.tj.forEach(it =>{
+		yp2.push(it.value)
+	})
+	xAxisData.value = exTime
+
+
+	//const tsArr = res.data.time
+	//let yp1 = [], yp2 = [], yp3 = []
+	//res.data.angle.forEach(val => {
+	//	yp1 = val.yp1
+	//	yp2 = val.yp2
+	//	yp3 = val.yp3
+	//});
+	//xAxisData.value = tsArr
+//            seriesData.value = [
+//            {
+//                name: "叶片一",
+//                        type: "line",
+//                    symbol: "line", //设定为实心点
+//                    symbolSize: 0, //设定实心点的大小
+//                    smooth: false, //这个是把线变成曲线
+//                    data: yp1,
+//                    xAxisIndex: 0,
+//            },
+//            {
+//                name: "叶片二",
+//                        type: "line",
+//                    symbol: "line", //设定为实心点
+//                    symbolSize: 0, //设定实心点的大小
+//                    smooth: false, //这个是把线变成曲线
+//                    data: yp2,
+//                    xAxisIndex: 0,
+//            },
+//            {
+//                name: "叶片三",
+//                        type: "line",
+//                    symbol: "line", //设定为实心点
+//                    symbolSize: 0, //设定实心点的大小
+//                    smooth: false, //这个是把线变成曲线
+//                    data: yp3,
+//                    xAxisIndex: 0,
+//            },
+//	]
+		seriesData.value = [
+			{
+				name: "并网",
+				type: "line",
+				symbol: "line", //设定为实心点
+				symbolSize: 0, //设定实心点的大小
+				smooth: false, //这个是把线变成曲线
+				data: yp1,
+				xAxisIndex: 0,
+			},
+			{
+				name: "停机",
+				type: "line",
+				symbol: "line", //设定为实心点
+				symbolSize: 0, //设定实心点的大小
+				smooth: false, //这个是把线变成曲线
+				data: yp2,
+				xAxisIndex: 0,
+			}
+		]
 }
 /**created */
 // funGetTree()

+ 60 - 6
src/pages/dataAnalysis/combine/index.vue

@@ -331,7 +331,7 @@ const funChartSelect = async (batch) => {
 					yDataArr.push(dataSetObj[1].source[scatterIndex].k)
 				}
 			}
-			const wtRes = await request.get('/power/fitting/filter', { params: { yk: yDataArr.join(','), wk: wDataArr.join(',') } })
+			const wtRes = await request.get('/power/fitting/filter', { params: { yk: yDataArr.join(','), wk: wDataArr.join(','), only: dataRadom.value } })
 			if (wtRes.code === 200) {
 				let id = 1
 				const tempArr = [] //用于以风机id 聚合dataArr
@@ -464,10 +464,43 @@ const funChartArea = () => {
 		}
 	}
 }
+const handleClick = (val) =>{
+    wtTab.value = val.props.name
+    if (wtTab.value === 'problem') {
+        faultDataFn()
+    } else if (wtTab.value === 'warning') {
+        warnDataFn()
+    }
+}
+
+//故障数据
+const faultDataFn = async() =>{
+    let params = {
+        only: dataRadom.value,
+        table: 'alarmWt'
+    }
+    const faultRes = await request.get('/power/fitting/alarms', { params: params })
+    faultData.value = faultRes.data
+}
+//预警数据
+const warnDataFn = async() =>{
+    let params = {
+        only: dataRadom.value,
+        table: 'alarmCt'
+    }
+    const warnRes = await request.get('/power/fitting/alarms', { params: params })
+    warnData.value = warnRes.data
+}
+
+
 /**dialog 数据 */
 const wtDialog = ref(false)
 const wtData = ref([])
+const faultData = ref([])
+const warnData = ref([])
 const wtTab = ref('table')
+// 随机数
+const dataRadom = ref(null)
 /**tab  */
 const activeTab = ref('1')
 /**created */
@@ -475,6 +508,7 @@ const activeTab = ref('1')
 // funGetProcessTree()
 /**mounted */
 onMounted(() => {
+    dataRadom.value = (new Date().getTime()).toString()
 	tableHeight.value = window.innerHeight - 314 + 'px'
 	excelHeight.value =(window.innerHeight - 270) / 2 + 'px'
 	treeHeight.value = (window.innerHeight - 270) / 2 + 'px'
@@ -501,7 +535,7 @@ onActivated(() => {
 		<search-cop class="mb-[20px]  shadow rounded-[6px] shadow-blue-500" @submit="funSubmit">
 		</search-cop>
 		<el-dialog v-model="wtDialog" draggable title="风机功率点位">
-			<el-tabs v-model="wtTab">
+			<el-tabs v-model="wtTab" @tab-click="handleClick">
 				<el-tab-pane label="数据" name="table">
 					<el-table :data="wtData" row-key="id" :max-height="550">
 						<el-table-column property="wtId" align="center" label="风机" />
@@ -512,11 +546,31 @@ onActivated(() => {
 						<el-table-column property="filter" sortable align="center" label="是否有用点" />
 					</el-table>
 				</el-tab-pane>
-				<el-tab-pane label="故障" name="problem" disabled>
-
+				<el-tab-pane label="故障" name="problem">
+                    <el-table :data="faultData" row-key="id" :max-height="550">
+						<el-table-column property="deviceId" align="center" label="风机" />
+						<el-table-column property="ts" sortable :width="160" align="center" label="时间">
+                            <template v-slot="scope">
+                                {{new Date(scope.row.ts).formatDate("yyyy-MM-dd hh:mm:ss")}}
+                            </template>
+                        </el-table-column>
+						<el-table-column property="characteristic" sortable align="center" label="特性" />
+						<el-table-column property="components" sortable align="center" label="部件" />
+						<el-table-column property="description" sortable align="center" label="描述" />
+					</el-table>
 				</el-tab-pane>
-				<el-tab-pane label="预警" name="warning" disabled>
-
+				<el-tab-pane label="预警" name="warning">
+                    <el-table :data="warnData" row-key="id" :max-height="550">
+						<el-table-column property="deviceId" align="center" label="风机" />
+						<el-table-column property="ts" sortable :width="160" align="center" label="时间" >
+                            <template v-slot="scope">
+                                {{new Date(scope.row.ts).formatDate("yyyy-MM-dd hh:mm:ss")}}
+                            </template>
+                        </el-table-column>
+						<el-table-column property="characteristic" sortable align="center" label="特性" />
+						<el-table-column property="components" sortable align="center" label="部件" />
+						<el-table-column property="description" sortable align="center" label="描述" />
+					</el-table>
 				</el-tab-pane>
 			</el-tabs>
 		</el-dialog>

+ 5 - 5
src/pages/dataAnalysis/hotAnalysis/index.vue

@@ -207,8 +207,8 @@ const funSubmit = async () => {
 	if (tempRes.code === 200) {
 		if (tempRes.data?.length) {
 			for (const chart of tempRes.data) {
-				powerproduction.value = `(额定功率=${chart.power.powerproduction}kW)` 
-				powerproductionNum.value = chart.power.powerproduction
+				powerproduction.value = `(额定功率=${chart.power.powerProduction}kW)` 
+				powerproductionNum.value = chart.power.powerProduction
 				barxAxis.data = Object.keys(chart.res1)
 				barSeries[0].data = Object.values(chart.res1)
 				barSeries[0].markLine.data = [{
@@ -641,7 +641,7 @@ const funDiaSubmit = async () => {
 							isBrush: false,
 							actCop: shallowRef(barChartCop),
 							title: chart.wt,
-							subtext: `平均功率-额定功率(额定功率=${chart.power.powerproduction}kW)`,
+							subtext: `平均功率-额定功率(额定功率=${chart.power.powerProduction}kW)`,
 							xAxis: {
 								...barxAxis,
 								data: Object.keys(chart.res1)
@@ -673,7 +673,7 @@ const funDiaSubmit = async () => {
 							isBrush: false,
 							actCop: shallowRef(lineChartCop),
 							title: chart.wt,
-							subtext: `额定功率温度分析(额定功率=${chart.power.powerproduction}kW)`,
+							subtext: `额定功率温度分析(额定功率=${chart.power.powerProduction}kW)`,
 							xAxis: linexAxis,
 							yAxis: lineyAxis,
 							dataset: lineDataSet,
@@ -698,7 +698,7 @@ const funDiaSubmit = async () => {
 											color: '#F72C5B'
 										},
 										data: [{
-											yAxis: chart.power.powerproduction,
+											yAxis: chart.power.powerProduction,
 										}]
 									}
 								}

+ 1 - 1
src/pages/dataAnalysis/lineAnalysis/index.vue

@@ -128,7 +128,7 @@ const funSubmit = async () => {
 			for(const wtObj of res.data.sjgl){
 				seriesData.value.push(
 					{
-						name: wtObj.obj.windturbine + "\n实际功率",
+						name: wtObj.obj.windturbineId + "\n实际功率",
 						type: "line",
 						symbol: "line", //设定为实心点
 						symbolSize: 0, //设定实心点的大小