Bladeren bron

修改迁移项目

全业务考评 1 jaar geleden
bovenliggende
commit
947046acea

+ 3 - 2
src/api/config.js

@@ -1,6 +1,7 @@
 const config = {
-    baseURL: 'http://120.46.148.180:9002',
-    socketURL: 'ws://120.46.148.180:9002'
+    // baseURL: 'http://10.81.3.155:9002',
+    baseURL: 'http://localhost:9002',
+    socketURL: 'ws://10.81.3.155:9002'
 }
 
 export default config;

+ 3 - 1
src/pages/dataAnalysis/agcAnalysis/components/search.vue

@@ -47,7 +47,9 @@ const funSubmit = async () => {
 	emits('submit', query)
 }
 /**created */
-funGetStation()
+onMounted(() => {
+	funGetStation()
+});
 </script>
 <template>
 	<div class="pl-[20px] flex items-center h-[80px] relative">

+ 1 - 1
src/pages/dataFilter/lightPrepare/components/search.vue

@@ -16,7 +16,7 @@ const funGetStation = async () => {
 	const res = await request.get("/base/gfstation")
 	stationList.value = res.data
 	if (stationList.value.length) {
-		queryForm.station = 'HZJ_GDC'
+		queryForm.station = res.data[0].nemCode
 		funGetWind(queryForm.station)
 	}
 }

+ 5 - 5
src/pages/dataFilter/lightPrepare/index.vue

@@ -17,7 +17,7 @@ const funExcelChange = async (obj) => { //点击excel项时
 	tableShowId.value = obj.id
 	tableName.value = obj.name
 	tableLoading.value = true
-	const res = await request.get('/datas', { params: { filename: obj.id } })
+	const res = await request.get('/new/photovol/datas', { params: { filename: obj.id } })
 	if(res.code === 200){
 		tableColumn.value = res.data.title.map(o => {
 			return {
@@ -55,7 +55,7 @@ const funRepeatMap = (arr) => {
 }
 const funGetTree = async () => {
 	actTreeNode.value = null
-	const res = await request.get("/allfilelist")
+	const res = await request.get("/new/photovol/allfilelist")
 	treeData.value = funRepeatMap(res.data)
 	excelList.value = []
 	if(actTreeNode.value){
@@ -68,7 +68,7 @@ const funGetTree = async () => {
 			station: child.station,
 			time: child.time,
 			type: child.type,
-			windturbine: child.windturbine,
+			windturbineId: child.windturbineId,
 			name: child.path
 		}
 		funExcelChange(obj)
@@ -84,7 +84,7 @@ const funCurrentChange = ({ current, currentNode }) => {
 				station: o.station,
 				time: o.time,
 				type: o.type,
-				windturbine: o.windturbine,
+				windturbineId: o.windturbineId,
 				name: o.path
 			}
 		})
@@ -125,7 +125,7 @@ const funWebSocket = () => {
 }
 */
 const funSubmit = async (params) => {
-	const res = await request.get('/filelist', { params: {
+	const res = await request.get('/new/photovol/filelist', { params: {
 		station: params.station,
 		inverters: params.wtIds,
 		startdate: params.st,

+ 38 - 36
src/pages/lightAnalysis/glAnalysis/index.vue

@@ -55,7 +55,7 @@ const funGetTree = async () => {
 	actTreeNode.value = null
 	excelCheckIds.value = []
 	excelCheckData.value = []
-	const res = await request.get("/allfilelist")
+	const res = await request.get("/new/photovol/allfilelist")
 	treeData.value = funRepeatMap(res.data)
 	excelList.value = []
 	if(actTreeNode.value){
@@ -74,7 +74,7 @@ const funCurrentChange = ({ current, currentNode }) => {
 				station: o.station,
 				time: o.time,
 				type: o.type,
-				windturbine: o.windturbine,
+				windturbineId: o.windturbineId,
 				name: o.path
 			}
 		})
@@ -116,7 +116,7 @@ const funSubmit = async () => {
 	tableShowId.value = '1'
 	tableName.value = params.filelist
 	tableLoading.value = true
-	const res = await request.get('/analysis/powertimefile', { params })
+	const res = await request.get('/new/photovol/analysis/powertimefile', { params })
 	if(res.code !== 200){ 
 		tableLoading.value = false
 		return false
@@ -128,44 +128,46 @@ const funSubmit = async () => {
 				width: o.des==='时间'? 100: 80,
 			}
 		})
-		const wtIds = excelCheckData.value.map(o => o.windturbine)
+		const wtIds = excelCheckData.value.map(o => o.windturbineId)
 		const xAxis = []
 		const series = []
 		if(!res.data.data || !wtIds.length){ tableLoading.value = false; return false}
-		for(const index in wtIds){
-			const llgl = []
-			const sjgl = []
-			// console.log(wtIds[index],res.data.data[wtIds[index]])
-			for(const o of res.data.data[wtIds[index]]){
-				if(index === '0'){
-					xAxis.push(o.datetime)
+		if (wtIds && wtIds.length>0) {
+			for(const index in wtIds){
+				const llgl = []
+				const sjgl = []
+				// console.log(wtIds[index],res.data.data[wtIds[index]])
+				for(const o of res.data.data[wtIds[index]]){
+					if(index === '0'){
+						xAxis.push(o.datetime)
+					}
+					tableData.value.push(o)
+					llgl.push(o.ideaP)
+					sjgl.push(o.actualP)
 				}
-				tableData.value.push(o)
-				llgl.push(o.ideaP)
-				sjgl.push(o.actualP)
+				series.push(
+					{
+						name: wtIds[index] + "\n实际功率",
+						type: "line",
+						symbol: "line", //设定为实心点
+						symbolSize: 0, //设定实心点的大小
+						smooth: false, //这个是把线变成曲线
+						data: sjgl,
+						xAxisIndex: 0,
+					}
+				)
+				series.push(
+					{
+						name: wtIds[index] + "\n理论功率",
+						type: "line",
+						symbol: "line", //设定为实心点
+						symbolSize: 0, //设定实心点的大小
+						smooth: false, //这个是把线变成曲线
+						data: llgl,
+						xAxisIndex: 0,
+					}
+				)
 			}
-			series.push(
-				{
-					name: wtIds[index] + "\n实际功率",
-					type: "line",
-					symbol: "line", //设定为实心点
-					symbolSize: 0, //设定实心点的大小
-					smooth: false, //这个是把线变成曲线
-					data: sjgl,
-					xAxisIndex: 0,
-				}
-			)
-			series.push(
-				{
-					name: wtIds[index] + "\n理论功率",
-					type: "line",
-					symbol: "line", //设定为实心点
-					symbolSize: 0, //设定实心点的大小
-					smooth: false, //这个是把线变成曲线
-					data: llgl,
-					xAxisIndex: 0,
-				}
-			)
 		}
 		xAxisData.value = xAxis
 		seriesData.value = series

+ 3 - 3
src/pages/lightAnalysis/glHotAnalysis/index.vue

@@ -31,7 +31,7 @@ const funSubmit = async () => {
 	let chartResponse = null
 	// tableLoading.value = true
 	// res = await request.get('/datas', { params: { filename: obj.id } })
-	chartResponse = await request.post('/analysis/powerbeam', { filename: excelCheckIds.value.join() })
+	chartResponse = await request.post('/new/photovol/analysis/powerbeam', { filename: excelCheckIds.value.join() })
 	// if(res.code === 200){
 	// 	tableColumn.value = res.data.title.map(o => {
 	// 		return {
@@ -110,7 +110,7 @@ const funRepeatMap = (arr, type='prepare') => {
 const processTreeData = ref([])
 const funGetProcessTree = async (flag = true) => { //flag控制是否获取tree的第一项 true为可获取
 	actTreeNode.value = null
-	const res = await request.get("/allfilelist")
+	const res = await request.get("/new/photovol/allfilelist")
 	excelFitList.value = []
 	processTreeData.value = funRepeatMap(res.data, 'process') //flag控制对actTreeNode赋值
 	if(actTreeNode.value){
@@ -139,7 +139,7 @@ const funProcessCurrentChange = ({ current, currentNode }) => {
 				station: o.station,
 				time: o.time,
 				type: o.type,
-				windturbine: o.windturbine,
+				windturbineId: o.windturbineId,
 				name: o.path
 			}
 		})

File diff suppressed because it is too large
+ 3240 - 3240
yarn.lock