Browse Source

'查询页面开发'

蒋珅 2 years ago
parent
commit
715264e922

+ 2 - 1
src/api/axios.js

@@ -1,3 +1,4 @@
+
 import axios from 'axios';
 import { ElMessage, ElMessageBox, ElLoading } from 'element-plus';
 import { nextTick } from "vue";
@@ -7,7 +8,7 @@ import JSONBIG from 'json-bigint';
 var loading = null;
 const service = axios.create({
     baseURL: baseURL,
-    timeout: 2000000,
+    timeout: 20000,
     withCredentials: false,
     headers: { 'Content-Type': 'application/json' },
     transformResponse: [

+ 11 - 2
src/api/config.js

@@ -1,7 +1,16 @@
+
+// const config = {
+//     baseURL: 'http://192.168.10.18:6041',
+//     socketURL: 'ws://192.168.10.18:6041'
+// }
 const config = {
-    baseURL: 'http://192.168.10.18:6041',
-    socketURL: 'ws://192.168.10.18:6041'
+    baseURL: 'http://192.168.10.13:6041',
+    socketURL: 'ws://192.168.10.13:6041'
 }
+// const config = {
+//     baseURL: 'http://192.168.10.9:5087',
+//     socketURL: 'ws://192.168.10.9:5087'
+// }
 
 export default config;
 export const baseURL = config.baseURL

File diff suppressed because it is too large
+ 8 - 3
src/components/Sidebar.vue


+ 95 - 93
src/components/tree.vue

@@ -16,14 +16,15 @@
 						<RefreshRight />
 					</el-icon>
 				</p>
+
 				<el-dropdown ref="dropdown1" v-else size="small" trigger="contextmenu" @command="funCommand"
 					style="margin-right: 30px">
 					<span class="el-dropdown-link text-[12px] flex items-center">
+						{{ node.label }}
 						<el-icon class="mr-[4px] !text-[#E6A23C]">
 							<Folder v-if="!node.expanded || (node.isLeaf && !node.isCurrent)" />
 							<FolderOpened v-else />
 						</el-icon>
-						{{ node.label }}
 					</span>
 					<template #dropdown>
 						<el-dropdown-menu>
@@ -80,6 +81,7 @@ const props = withDefaults(
 	}
 );
 
+
 const treeRef = ref();
 const filterText = ref("");
 /**输入框过滤 */
@@ -108,100 +110,100 @@ const funCheckChange = (
 	});
 };
 //右键时, command菜单
-const funCommand = async ({ type, data, node }) => {
-	switch (type) {
-		case 'save': 
-			/**该保存功能目前暂用于风电场, combine页 */
-			if(props.type !== 'wind'){
-				return false
-			}
-			ElMessageBox.confirm("确认保存当前节点的拟合功率?", "保存", {
-				confirmButtonText: "确认",
-				cancelButtonText: "取消",
-				type: "warning",
-			}).then(async () => {
-				let saveArr = [];
-				const repeatArr = (arr, saveArr) => {
-					for (const unit of arr) {
-						if (unit.childs?.length) {
-							saveArr.push(...unit.childs.map((o) => o.id));
-						} else if (unit.children?.length) {
-							repeatArr(unit.children, saveArr);
-						}
-					}
-				};
-				if (data.childs?.length) {
-					saveArr = data.childs.map((o) => o.id);
-				} else if (data.children?.length) {
-					repeatArr(data.children, saveArr);
-				}
-				let res = {code: 500}
-				res = await request.get("/power/fitting/curve/save", {
-					params: { ids: saveArr.join(",") },
-				}); //删除当前节点
+// const funCommand = async ({ type, data, node }) => {
+// 	switch (type) {
+// 		case 'save': 
+// 			/**该保存功能目前暂用于风电场, combine页 */
+// 			if(props.type !== 'wind'){
+// 				return false
+// 			}
+// 			ElMessageBox.confirm("确认保存当前节点的拟合功率?", "保存", {
+// 				confirmButtonText: "确认",
+// 				cancelButtonText: "取消",
+// 				type: "warning",
+// 			}).then(async () => {
+// 				let saveArr = [];
+// 				const repeatArr = (arr, saveArr) => {
+// 					for (const unit of arr) {
+// 						if (unit.childs?.length) {
+// 							saveArr.push(...unit.childs.map((o) => o.id));
+// 						} else if (unit.children?.length) {
+// 							repeatArr(unit.children, saveArr);
+// 						}
+// 					}
+// 				};
+// 				if (data.childs?.length) {
+// 					saveArr = data.childs.map((o) => o.id);
+// 				} else if (data.children?.length) {
+// 					repeatArr(data.children, saveArr);
+// 				}
+// 				let res = {code: 500}
+// 				res = await request.get("/power/fitting/curve/save", {
+// 					params: { ids: saveArr.join(",") },
+// 				}); //删除当前节点
 				
-				if (res.code === 200) {
-					ElMessage.success(res.msg);
-				}
-			});
-			break;
-		case "export":
-			ElMessageBox.confirm("确认导出当前节点的所有数据?", "导出", {
-				confirmButtonText: "确认",
-				cancelButtonText: "取消",
-				type: "warning",
-			}).then(() => {
-				const a = document.createElement("a");
-				let childs = []
-				childs = props.type==='wind'? data.childs.map((o) => o.id): data.childs.map((o) => o.path)
-				const url = props.type==='wind'? '/data/option/download?ids=': '/export/files?filename='
-				a.href =
-					config.baseURL + url + childs.join(",");
-				a.download = "";
-				a.target='_blank'
-				a.click();
-			});
-			break;
-		case "delete":
-			ElMessageBox.confirm("确认删除当前节点的所有数据?", "删除", {
-				confirmButtonText: "确认",
-				cancelButtonText: "取消",
-				type: "warning",
-			}).then(async () => {
-				let deleteArr = [];
-				const repeatArr = (arr, deleteArr) => {
-					for (const unit of arr) {
-						if (unit.childs?.length) {
-							deleteArr.push(...unit.childs.map((o) => props.type==='wind'? o.id : o.path));
-						} else if (unit.children?.length) {
-							repeatArr(unit.children, deleteArr);
-						}
-					}
-				};
-				if (data.childs?.length) {
-					deleteArr = data.childs.map((o) => props.type==='wind'? o.id : o.path);
-				} else if (data.children?.length) {
-					repeatArr(data.children, deleteArr);
-				}
-				let res = {code: 500}
-				if(props.type==='wind'){
-					res = await request.get("/data/option/delete", {
-						params: { ids: deleteArr.join(",") },
-					}); //删除当前节点
-				}else{
-					res = await request.delete("/delete/files", {
-						data: { filename: deleteArr.join(",") },
-					}); //删除当前节点
-				}
-				if (res.code === 200) {
-					ElMessage.success(res.msg);
-					emits("refresh");
-				}
-			});
+// 				if (res.code === 200) {
+// 					ElMessage.success(res.msg);
+// 				}
+// 			});
+// 			break;
+// 		case "export":
+// 			ElMessageBox.confirm("确认导出当前节点的所有数据?", "导出", {
+// 				confirmButtonText: "确认",
+// 				cancelButtonText: "取消",
+// 				type: "warning",
+// 			}).then(() => {
+// 				const a = document.createElement("a");
+// 				let childs = []
+// 				childs = props.type==='wind'? data.childs.map((o) => o.id): data.childs.map((o) => o.path)
+// 				const url = props.type==='wind'? '/data/option/download?ids=': '/export/files?filename='
+// 				a.href =
+// 					config.baseURL + url + childs.join(",");
+// 				a.download = "";
+// 				a.target='_blank'
+// 				a.click();
+// 			});
+// 			break;
+// 		case "delete":
+// 			ElMessageBox.confirm("确认删除当前节点的所有数据?", "删除", {
+// 				confirmButtonText: "确认",
+// 				cancelButtonText: "取消",
+// 				type: "warning",
+// 			}).then(async () => {
+// 				let deleteArr = [];
+// 				const repeatArr = (arr, deleteArr) => {
+// 					for (const unit of arr) {
+// 						if (unit.childs?.length) {
+// 							deleteArr.push(...unit.childs.map((o) => props.type==='wind'? o.id : o.path));
+// 						} else if (unit.children?.length) {
+// 							repeatArr(unit.children, deleteArr);
+// 						}
+// 					}
+// 				};
+// 				if (data.childs?.length) {
+// 					deleteArr = data.childs.map((o) => props.type==='wind'? o.id : o.path);
+// 				} else if (data.children?.length) {
+// 					repeatArr(data.children, deleteArr);
+// 				}
+// 				let res = {code: 500}
+// 				if(props.type==='wind'){
+// 					res = await request.get("/data/option/delete", {
+// 						params: { ids: deleteArr.join(",") },
+// 					}); //删除当前节点
+// 				}else{
+// 					res = await request.delete("/delete/files", {
+// 						data: { filename: deleteArr.join(",") },
+// 					}); //删除当前节点
+// 				}
+// 				if (res.code === 200) {
+// 					ElMessage.success(res.msg);
+// 					emits("refresh");
+// 				}
+// 			});
 
-			break;
-	}
-};
+// 			break;
+// 	}
+// };
 
 const getCheckedNodes = () => {
 	// // console.log(treeRef.value!.getCheckedNodes(false, false));

+ 2 - 0
src/pages/buildTable/create/index.vue

@@ -53,6 +53,8 @@ const funRepeatMap = (arr) => {
 		}
 	})
 }
+
+// 点表管理的内容
 const funGetTree = async () => {
 	actTreeNode.value = null
 	const res = await request.get("/power/prepare/tree")

+ 156 - 0
src/pages/look/create/index.vue

@@ -0,0 +1,156 @@
+<template>
+  <div
+    class="p-[20px] flex h-[270px] relative mb-[20px] shadow rounded-[6px] shadow-blue-500"
+  >
+    <el-form class="" :inline="true" :model="queryForm">
+      <el-form-item label="子表名">
+        <el-input class="" v-model="queryForm.tableName" placeholder="标签名" />
+      </el-form-item>
+      <el-form-item label="时间">
+        <el-date-picker
+          v-model="timedata"
+          type="datetimerange"
+          start-placeholder="开始"
+          end-placeholder="结束"
+          format="YYYY-MM-DD HH:mm:ss"
+        />
+      </el-form-item>
+      <div class="nb">
+        <div>
+          <el-checkbox v-model="queryForm.checked1"></el-checkbox>
+          <span>一段时间内的存储值</span>
+        </div>
+        <div>
+          <el-checkbox v-model="checked2"></el-checkbox>
+          <span>一段时间的等间隔插值(数量) 数量:</span>
+          <el-input class="w-20 m-2" size="small" />
+        </div>
+        <div>
+          <el-checkbox v-model="checked2"></el-checkbox>
+          <span>一段时间的等间隔插值(时间) 时间间隔:</span>
+          <el-input class="w-20 m-2" size="small" />
+          <el-select
+            v-model="value"
+            class="w-20 m-2"
+            placeholder="Select"
+            size="small"
+          >
+            <el-option
+              v-for="item in options"
+              :key="item.value"
+              :label="item.label"
+              :value="item.value"
+            />
+          </el-select>
+        </div>
+        <div>
+          <el-checkbox v-model="checked2"></el-checkbox>
+          <span>某个时刻的历史 取值方式:</span>
+          <el-radio-group v-model="radio">
+            <el-radio :label="3">上一个</el-radio>
+            <el-radio :label="6">下一个</el-radio>
+            <el-radio :label="9">准确</el-radio>
+            <el-radio :label="9">插值</el-radio>
+          </el-radio-group>
+        </div>
+        <div>
+          <el-checkbox v-model="checked2"></el-checkbox>
+          <span>一段时间的等间隔插值(数量) 数量:</span>
+          <el-input class="w-20 m-2" size="small" />
+        </div>
+        <div>
+          <el-checkbox v-model="checked2"></el-checkbox>
+          <span>一段时间的统计值</span>
+        </div>
+      </div>
+      <el-form-item>
+        <el-button type="primary" @click="looksubmit">查询</el-button>
+        <el-button type="primary" @click="onSubmit">导出</el-button>
+      </el-form-item>
+    </el-form>
+  </div>
+
+  <div
+    class="relative shadow rounded-[6px] shadow-blue-500 px-[10px] pt-[20px] pb-[10px]">
+    <el-table :data="tableData" border style="width: 100%">
+      <el-table-column type="index" label="#" width="100" align="center" />
+      <el-table-column prop="ts" label="时间" width="200" align="center" />
+      <el-table-column prop="val" label="值" align="center" />
+    </el-table>
+  </div>
+</template>
+
+<script setup name="look">
+import { onMounted, ref, reactive } from "vue";
+import request from "@/api/axios.js";
+import { useRoute } from "vue-router";
+import { ElMessage } from "element-plus";
+import { baseURL, socketURL } from "@/api/axios.js";
+
+//表单数据
+const queryForm = reactive({
+  tableName: "",
+  databaseName: "",
+  checked1: "",
+});
+
+// 日期数据
+const timedata = ref([]);
+
+//  表格数据
+const tableData = ref([]);
+const looksubmit = async (point) => {
+  if (timedata.value == "") {
+    ElMessage.error("时间不能为空");
+  } else {
+    const res = await request.post(
+      "/rest/sql",
+      `select * from ${queryForm.databaseName}.${
+        queryForm.tableName
+      } where ts between ${new Date(
+        timedata.value[0]
+      ).getTime()} and ${new Date(timedata.value[1]).getTime()}`
+    );
+
+    //映射数组中的数据,做数据处理相对应的结果
+    let newdata = [];
+    const map = {
+      0: "ts",
+      1: "val",
+    };
+    res.data.forEach((ele) => {
+      let dateItem = {};
+      for (let key in ele) {
+        dateItem[map[key]] = ele[key];
+      }
+      newdata.push(dateItem);
+    });
+
+    // console.log(6666,newdata);
+    tableData.value = newdata;
+    console.log(88, tableData.value);
+    ElMessage.success("查询成功");
+  }
+};
+
+const route = useRoute();
+onMounted(() => {
+  //路由传过来的数据
+  queryForm.databaseName = route.query.databaseName;
+  queryForm.tableName = route.query.tableName;
+});
+</script>
+
+<style scoped>
+.nb {
+  width: 600px;
+  height: 220px;
+  position: absolute;
+  top: 50px;
+  font-size: 15px;
+  padding-left: 10px;
+}
+.nb span {
+  margin: 10px 10px;
+}
+</style>

+ 65 - 130
src/pages/redis/create/index.vue

@@ -1,5 +1,4 @@
 <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'
@@ -12,129 +11,38 @@ const treeHeight = ref(window.innerHeight - 260 + 'px') //tree高度
 const excelHeight = ref(window.innerHeight - 260 + 'px') //excel高度
 const tableHeight = ref(window.innerHeight - 260 + 'px')
 /**excel 开始 */
-const excelList = ref([])
-const funExcelChange = async (obj) => { //点击excel项时
-	tableShowId.value = obj.id
-	tableName.value = obj.name
-	tableLoading.value = true
-	const res = await request.get('/power/prepare/show', { params: { id: obj.id } })
-	if(res.code === 200){
-		tableColumn.value = res.data.title.map(o => {
-			return {
-				prop: o.key,
-				label: o.des,
-				width: o.des==='时间'? 100: 80,
-			}
-		})
-		tableData.value = res.data.data
-		tableLoading.value = false
-	}else{
-		tableLoading.value = false
-	}
-}
+
 /**tree 开始 */
-const treeData = ref([])
-const actTreeNode = ref(null) //当前激活的treeNode
-const funRepeatMap = (arr) => {
-	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){ //判断当且仅有process获取tree时 赋值
-					actTreeNode.value = o
-				}
-			}
-		}
-		return {
-			...o,
-			children: o.children?.length ? funRepeatMap(o.children) : []
-		}
-	})
-}
-const funGetTree = async () => {
-	actTreeNode.value = null
-	const res = await request.get("/power/prepare/tree")
-	treeData.value = funRepeatMap(res.data)
-	excelList.value = []
-	if(actTreeNode.value){
-		funCurrentChange({current: actTreeNode.value, currentNode: null})
-		const child = actTreeNode.value.childs[0]
-		const obj = {
-			id: child.id,
-			interval: child.interval,
-			path: child.path,
-			prepareid: child.prepareid,
-			station: child.station,
-			time: child.time,
-			type: child.type,
-			windturbine: child.windturbine,
-			name: child.path.substring(child.path.indexOf(child.station + '_') + (child.station + '_').length)
-		}
-		funExcelChange(obj)
-	}
-}
-const funCurrentChange = ({ current, currentNode }) => {
-	if (current.childs) {
-		excelList.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 {
-		excelList.value = []
-	}
-}
-/**table 开始 */
-const tableShowId = ref('')
-const tableName = ref('')
-const tableColumn = ref([])
-const tableLoading = ref(false)
-const tableData = ref([])
-const funExport = async () => {
-	const a = document.createElement('a')
-	a.href = baseURL + '/power/prepare/download?id=' + tableShowId.value
-	a.download = ''
-	a.click()
-}
-/**submit */
-const progress = ref(0)
-const funWebSocket = () => {
-	const webSocket = new WebSocket(`${socketURL}/ws/powerfitting/admin`)
-	webSocket.onerror = () => setTimeout(() => { funWebSocket() }, 2000)
+// const disable =ref()
+// const sjulist=async()=>{
+// 	const res = await request.get("/taos/create/database")
+// 	// console.log(res);
+// 		webSocket.onerror = () => setTimeout(() => { funWebSocket() }, 2000)
+//          ElMessage.success('响应完成')
+
+// }
+//  const cjblist=async()=>{
+// 	 const res = await request.get("/taos/create/supertable")
+	
+// 	webSocket.onerror = () => setTimeout(() => { funWebSocket() }, 2000)
+//          ElMessage.success('响应完成')
+//  }
+
+// const redislist=async()=>{
+// 	 const res = await request.get("/taos/create/table")
+// 	console.log(res);
+// 	webSocket.onerror = () => setTimeout(() => { funWebSocket() }, 2000)
+//          ElMessage.success('响应完成')
+//  }
+
+//  const funlist=async()=>{
+// 		const res=await request.get("/taos/2redis/status")
+// 	    console.log('zh',res);
+
+// 	}
+
 
-	webSocket.onmessage = (event) => {
-		const message = JSON.parse(event.data)
-		if (message.code === 200) {
-			progress.value = Number(message.data) * 100
-			if (progress.value === 100) {
-				ElMessage.success('数据加载完成')
-				funGetTree()
-				progress.value = 0
-			}
-		}
-	}
-}
-const funSubmit = async (params) => {
-	const res = await request.get('/power/prepare/data', { params: params })
-	if (res.code === 200) {
-		ElMessage.success(res.msg)
 
-	}
-}
-/**created */
-// funGetTree()
-funWebSocket()
-/**mounted */
 onMounted(() => {
 	tableHeight.value = window.innerHeight - 260 + 'px'
 	excelHeight.value = window.innerHeight - 260 + 'px'
@@ -144,31 +52,58 @@ onMounted(() => {
 		excelHeight.value = window.innerHeight - 260 + 'px'
 		treeHeight.value = window.innerHeight - 260 + 'px'
 	})
+	console.log(123);
+	funlist()
+		
 })
-/**activated */
+
+    
+
+
 onActivated(() => {
-	funGetTree()
+	// funGetTree()
 })
 </script>
 <template>
 	<div class="bg-white py-[10px] px-[10px] relative">
-		<search-cop class="mb-[20px] shadow rounded-[6px] shadow-blue-500" @submit="funSubmit">
-		</search-cop>
+	<div class="pl-[20px] flex items-center h-[80px] relative">
+		<div class="absolute top-[-7px] left-[20px] text-[#838383] text-[14px]">操作面板</div>
+	
+			<el-form-item class="!mb-0 ml-5">
+				<el-button @click="sjklist" type="primary" :disabled="disable">建数据库</el-button>
+			</el-form-item>
+			<el-form-item class="!mb-0 ml-5">
+				<el-button @click="cjblist" type="primary">建超级表</el-button>
+			</el-form-item>
+			<el-form-item class="!mb-0 ml-5">
+				<el-button @click="redislist" type="primary">按采集Redis建点</el-button>
+			</el-form-item>
+			<el-form-item class="!mb-0 ml-5">
+				<el-button @click="funSubmit" type="primary">启动读redis写taos</el-button>
+			</el-form-item>
+			<el-form-item class="!mb-0 ml-5">
+				<el-button @click="funSubmit" type="primary">redis新增建点</el-button>
+			</el-form-item>
+			<el-form-item class="!mb-0 ml-5">
+				<el-button @click="funSubmit" type="primary">停止读redis写taos</el-button>
+			</el-form-item>
+		
+	</div>
 		<div class="relative shadow rounded-[6px] shadow-blue-500 px-[10px] pt-[20px] pb-[10px]">
 			<div class="text-[14px] absolute top-[-7px] text-[#838383] left-[20px]">数据展示</div>
 			<el-row :gutter="10">
 				<el-col :span="5">
-					<tree-cop :data="treeData" :height="treeHeight" @currentChange="funCurrentChange" @refresh="funGetTree">
-					</tree-cop>
+					<!-- <tree-cop :data="treeData" :height="treeHeight" @currentChange="funCurrentChange" @refresh="funGetTree">
+					</tree-cop> -->
 				</el-col>
 				<el-col :span="3">
-					<excel-cop :data="excelList" :height="excelHeight" @excelChange="funExcelChange"></excel-cop>
+					<!-- <excel-cop :data="excelList" :height="excelHeight" @excelChange="funExcelChange"></excel-cop> -->
 				</el-col>
 				<el-col :span="16">
-					<div>
+					<!-- <div>
 						<table-cop class="" :data="tableData" :column="tableColumn" :loading="tableLoading"
 							:height="tableHeight" :tableId="tableShowId" :tableName="tableName" @export="funExport"></table-cop>
-					</div>
+					</div> -->
 				</el-col>
 			</el-row>
 		</div>

+ 17 - 23
src/pages/search/create/components/search.vue

@@ -5,10 +5,10 @@ import SubmitBtn from '@com/SubmitBtn.vue'
 
 const queryForm = reactive({
 	station: '',
-	wtIds: [],
-	st: Date.now() - 30 * 24 * 60 * 60 * 1000,
-	et: Date.now(),
-	interval: 3
+	point:"",
+	description:'',
+	uniformcode:"",
+	
 })
 /**场站 */
 const stationList = ref([])
@@ -36,6 +36,7 @@ const funGetWind = async (stationId) => {
 	queryForm.wtIds = res.data.map(o => o.id)
 	checkAll.value = true
 }
+
 const funCheckAll = () => {
 	checkAll.value = !checkAll.value
 	if(checkAll.value){
@@ -44,6 +45,9 @@ const funCheckAll = () => {
 		queryForm.wtIds = []
 	}
 }
+
+const nb=ref([])
+console.log(6666666666,nb.value);
 /**导出 */
 const emits = defineEmits(['submit'])
 const funSubmit = async () => {
@@ -74,35 +78,25 @@ funGetStation()
 </script>
 <template>
 	<div class="pl-[20px] flex items-center h-[80px] relative">
-		<div class="absolute top-[-7px] left-[20px] text-[#838383] text-[14px]">操作面板</div>
+		
 		<el-form class="" :inline="true" :model="queryForm">
 			<el-form-item label="场站" class="!mb-0">
 				<el-select v-model="queryForm.station" class="w-[150px]" @change="funStationChange">
 					<el-option v-for="item in stationList" :key="item.id" :label="item.name" :value="item.id"></el-option>
 				</el-select>
 			</el-form-item>
-			<el-form-item label="风机" class="!mb-0">
-				<el-select multiple class="w-[150px]" v-model="queryForm.wtIds" @clear="checkAll = false" collapse-tags>
-					<el-option label="全选" :class="{'selected': checkAll}" @click="funCheckAll"></el-option>
-					<el-option v-for="item in windList" :key="item.id" :label="item.name" :value="item.id"></el-option>
-				</el-select>
-			</el-form-item>
-			<el-form-item label="开始时间" class="!mb-0">
-				<el-date-picker type="date" class="!w-[150px]" v-model="queryForm.st"></el-date-picker>
+			<el-form-item label="测点" class="!mb-0">
+					<el-input v-model="queryForm.point" />
 			</el-form-item>
-			<el-form-item label="结束时间" class="!mb-0">
-				<el-date-picker type="date" class="!w-[150px]" v-model="queryForm.et"></el-date-picker>
+			<el-form-item label="描述" class="!mb-0">
+					<el-input v-model="queryForm.description" />
 			</el-form-item>
-			<el-form-item label="等间隔" class="!mb-0">
-				<el-radio-group v-model="queryForm.interval">
-					<el-radio :label="1">一秒钟</el-radio>
-					<el-radio :label="2">一分钟</el-radio>
-					<el-radio :label="3">十分钟</el-radio>
-					<el-radio :label="4">十五分钟</el-radio>
-				</el-radio-group>
+			<el-form-item label="统一识别码" class="!mb-0">
+					<el-input v-model="queryForm.uniformcode" />
 			</el-form-item>
 			<el-form-item class="!mb-0">
-				<submit-btn v-prevdbclick:5000="funSubmit" desc="执行"></submit-btn>
+				<submit-btn v-prevdbclick:5000="funSubmit" desc="查询"></submit-btn>
+                <submit-btn v-prevdbclick:5000="funSubmit" desc="导出"></submit-btn>
 			</el-form-item>
 		</el-form>
 	</div>

+ 267 - 193
src/pages/search/create/index.vue

@@ -1,211 +1,285 @@
 <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 { ElMessage } from 'element-plus';
-import { onMounted, ref, onActivated } from 'vue'
-import request from '@/api/axios.js'
-import {baseURL, socketURL} from '@/api/axios.js'
+import searchCop from "./components/search.vue";
+import excelCop from "@/components/excel.vue";
+import treeCop from "@/components/tree.vue";
+import { useRouter } from "vue-router";
+import { ElMessage } from "element-plus";
+import { onMounted, ref, onActivated, nextTick } from "vue";
+import request from "@/api/axios.js";
+import { baseURL, socketURL } from "@/api/axios.js";
 /**配置参数 */
-const treeHeight = ref(window.innerHeight - 260 + 'px') //tree高度
-const excelHeight = ref(window.innerHeight - 260 + 'px') //excel高度
-const tableHeight = ref(window.innerHeight - 260 + 'px')
-/**excel 开始 */
-const excelList = ref([])
-const funExcelChange = async (obj) => { //点击excel项时
-	tableShowId.value = obj.id
-	tableName.value = obj.name
-	tableLoading.value = true
-	const res = await request.get('/power/prepare/show', { params: { id: obj.id } })
-	if(res.code === 200){
-		tableColumn.value = res.data.title.map(o => {
-			return {
-				prop: o.key,
-				label: o.des,
-				width: o.des==='时间'? 100: 80,
-			}
-		})
-		tableData.value = res.data.data
-		tableLoading.value = false
-	}else{
-		tableLoading.value = false
-	}
-}
+const treeHeight = ref(window.innerHeight - 260 + "px"); //tree高度
+const excelHeight = ref(window.innerHeight - 260 + "px"); //excel高度
+const tableHeight = ref(window.innerHeight - 260 + "px");
+
 /**tree 开始 */
-const treeData = ref([])
-const actTreeNode = ref(null) //当前激活的treeNode
+const treeData = ref([]);
+const actTreeNode = ref(null); //当前激活的treeNode
 const funRepeatMap = (arr) => {
-	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){ //判断当且仅有process获取tree时 赋值
-					actTreeNode.value = o
-				}
-			}
-		}
-		return {
-			...o,
-			children: o.children?.length ? funRepeatMap(o.children) : []
-		}
-	})
-}
+  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) {
+          //判断当且仅有process获取tree时 赋值
+          actTreeNode.value = o;
+        }
+      }
+    }
+    return {
+      ...o,
+      children: o.children?.length ? funRepeatMap(o.children) : [],
+    };
+  });
+};
 
 const funStationGet = async (point) => {
-	const res = await request.post("/rest/sql", `SELECT DISTINCT station FROM ${treeData.value[0].id}.${point};`)
-	console.log(res)
-}
+  const res = await request.post(
+    "/rest/sql",
+    `SELECT DISTINCT station FROM ${treeData.value[0].id}.${point};`
+  );
+  // console.log("nb", res);
+};
 
 const funGetTree = async () => {
-	actTreeNode.value = null
-	const res = await request.post("/rest/sql", 'show databases;')
-	// treeData.value = funRepeatMap(res.data)
-	treeData.value = res.data[3].map(o => {
-		return {
-			id: o,
-			label: o,
-			children: []
-		}
-	})
-	excelList.value = []
-	if(treeData.value.length){
-		const tableRes = await request.post("/rest/sql", `show ${treeData.value[0].label}.stables;`)
-		console.log(tableRes)
-		let countTotal = 0
-		for(const o of tableRes.data){
-			const countRes = await request.post("/rest/sql", `select count(*) from INFORMATION_SCHEMA.INS_TABLES where stable_name='${o[0]}';`)
-			console.log(countRes)
-			if(treeData.value[0].children.length === 0){
-				funStationGet(o[0])
-			}
-			treeData.value[0].children.push({
-				id: o[0],
-				label: `${o[0]}(${countRes.data[0][0]})`,
-				children: []
-			})
-			countTotal += countRes.data[0][0]
-		}
-		treeData.value[0].label = `${treeData.value[0].label}(${countTotal})`
-	}
-	// if(actTreeNode.value){
-	// 	funCurrentChange({current: actTreeNode.value, currentNode: null})
-	// 	const child = actTreeNode.value.childs[0]
-	// 	const obj = {
-	// 		id: child.id, 
-	// 		interval: child.interval,
-	// 		path: child.path,
-	// 		prepareid: child.prepareid,
-	// 		station: child.station,
-	// 		time: child.time,
-	// 		type: child.type,
-	// 		windturbine: child.windturbine,
-	// 		name: child.path.substring(child.path.indexOf(child.station + '_') + (child.station + '_').length)
-	// 	}
-	// 	funExcelChange(obj)
-	// }
-}
-const funCurrentChange = ({ current, currentNode }) => {
-	if (current.childs) {
-		excelList.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 {
-		excelList.value = []
-	}
-}
+  actTreeNode.value = null;
+  treeData.value = [];
+  const res = await request.post("/rest/sql", "show databases;");
+  const databaseNameArray = res.data || [];
+  const blackList = ["information_schema", "performance_schema", "'mydbinfo'"];
+
+  let resultDatabaesArray = [];
+
+  databaseNameArray.forEach((pEle) => {
+    pEle.forEach((cEle) => {
+      const someRes = blackList.some((someEle) => {
+        return someEle === cEle;
+      });
+      if (!someRes) {
+        resultDatabaesArray.push(cEle);
+      }
+    });
+  });
+
+  let tempTreeData = [];
+
+  resultDatabaesArray.forEach(async (ele) => {
+    const { data } = await request.post("/rest/sql", `show ${ele}.stables;`);
+    //处理树状结构数据
+    if (data?.length) {
+      let treeItem = {
+        id: ele,
+        label: ele,
+        value: ele,
+        children: [],
+      };
+      data.forEach((pEle) => {
+        pEle.forEach((cEle) => {
+          treeItem.children.push({
+            id: cEle,
+            label: cEle,
+            value: cEle,
+            children: [],
+          });
+        });
+      });
+      tempTreeData.push(treeItem);
+    }
+  });
+
+  setTimeout(() => {
+
+    treeData.value = tempTreeData;
+
+  }, 1000);
+
+  // nextTick(()=>{
+  //    treeData.value=tempTreeData;
+  // })
+
+};
+
+const funCurrentChange = async ({ current, currentNode }) => {
+  const tableName = current.value;
+  let databaseName = "";
+  for (let i = 0; i < treeData.value.length; i++) {
+    const pEle = treeData.value[i];
+    for (let j = 0; j < pEle.children.length; j++) {
+      const cEle = pEle.children[j];
+      if (cEle.value === tableName) {
+        databaseName = pEle.value;
+        break;
+      }
+    }
+  }
+
+  //拿取表格数据
+  const res = await request.post(
+    "/rest/sql",
+    `SELECT tbname as point,description,ts,val,station,category,facility,uniformcode,rate,remark FROM ${databaseName}.${tableName} limit 99;`
+  );
+  //映射数组里的数据
+  let newdata = [];
+  const map = {
+    0: "point",
+    1: "description",
+    2: "ts",
+    3: "val",
+    4: "station",
+    5: "category",
+    6: "equipment",
+    7: "uniformcode",
+    8: "rate",
+    9: "remark",
+  };
+  res.data.forEach((ele) => {
+    let dateItem = {};
+    for (let key in ele) {
+      dateItem[map[key]] = ele[key];
+    }
+    dateItem.databaseName = databaseName;
+    dateItem.tableName = tableName;
+    newdata.push(dateItem);
+  });
+  // console.log(999999,newdata);
+  tableData.value = newdata;
+  // console.log('66b',tableData.value);
+};
+
+// 传递数据
+const router = useRouter();
+const dbclick = (a) => {
+  // console.log(11111, a);
+  const dbName = a.databaseName;
+  const tbName = a.point;
+  router.push({
+    path: "/look/create",
+    query: {
+      databaseName: dbName,
+      tableName: tbName,
+    },
+  });
+};
+
+
 /**table 开始 */
-const tableShowId = ref('')
-const tableName = ref('')
-const tableColumn = ref([])
-const tableLoading = ref(false)
-const tableData = ref([])
-const funExport = async () => {
-	const a = document.createElement('a')
-	a.href = baseURL + '/power/prepare/download?id=' + tableShowId.value
-	a.download = ''
-	a.click()
-}
+// const tableShowId = ref("");
+const tableName = ref("");
+const tableLoading = ref(false);
+const tableData = ref([]);
+
 /**submit */
-const progress = ref(0)
+const progress = ref(0);
 const funWebSocket = () => {
-	const webSocket = new WebSocket(`${socketURL}/ws/powerfitting/admin`)
-	webSocket.onerror = () => setTimeout(() => { funWebSocket() }, 2000)
-
-	webSocket.onmessage = (event) => {
-		const message = JSON.parse(event.data)
-		if (message.code === 200) {
-			progress.value = Number(message.data) * 100
-			if (progress.value === 100) {
-				ElMessage.success('数据加载完成')
-				funGetTree()
-				progress.value = 0
-			}
-		}
-	}
-}
+  const webSocket = new WebSocket(`${socketURL}/ws/powerfitting/admin`);
+  webSocket.onerror = () =>
+    setTimeout(() => {
+      funWebSocket();
+    }, 2000);
+
+  webSocket.onmessage = (event) => {
+    const message = JSON.parse(event.data);
+    if (message.code === 200) {
+      progress.value = Number(message.data) * 100;
+      if (progress.value === 100) {
+        ElMessage.success("数据加载完成");
+        funGetTree();
+        progress.value = 0;
+      }
+    }
+  };
+};
+
 const funSubmit = async (params) => {
-	const res = await request.get('/power/prepare/data', { params: params })
-	if (res.code === 200) {
-		ElMessage.success(res.msg)
-
-	}
-}
-/**created */
-// funGetTree()
-funWebSocket()
+  const res = await request.get("/power/prepare/data", { params: params });
+  if (res.code === 200) {
+    ElMessage.success(res.msg);
+  }
+};
+
+funWebSocket();
 /**mounted */
 onMounted(() => {
-	tableHeight.value = window.innerHeight - 260 + 'px'
-	excelHeight.value = window.innerHeight - 260 + 'px'
-	treeHeight.value = window.innerHeight - 260 + 'px'
-	window.addEventListener('resize', () => {
-		tableHeight.value = window.innerHeight - 260 + 'px'
-		excelHeight.value = window.innerHeight - 260 + 'px'
-		treeHeight.value = window.innerHeight - 260 + 'px'
-	})
-})
+  tableHeight.value = window.innerHeight - 260 + "px";
+  excelHeight.value = window.innerHeight - 260 + "px";
+  treeHeight.value = window.innerHeight - 260 + "px";
+  window.addEventListener("resize", () => {
+    tableHeight.value = window.innerHeight - 260 + "px";
+    excelHeight.value = window.innerHeight - 260 + "px";
+    treeHeight.value = window.innerHeight - 260 + "px";
+  });
+});
 /**activated */
 onActivated(() => {
-	funGetTree()
-})
+  funGetTree();
+});
 </script>
 <template>
-	<div class="bg-white py-[10px] px-[10px] relative">
-		<search-cop class="mb-[20px] shadow rounded-[6px] shadow-blue-500" @submit="funSubmit">
-		</search-cop>
-		<div class="relative shadow rounded-[6px] shadow-blue-500 px-[10px] pt-[20px] pb-[10px]">
-			<div class="text-[14px] absolute top-[-7px] text-[#838383] left-[20px]">数据展示</div>
-			<el-row :gutter="10">
-				<el-col :span="5">
-					<tree-cop :data="treeData" :height="treeHeight" @currentChange="funCurrentChange" @refresh="funGetTree">
-					</tree-cop>
-				</el-col>
-				<el-col :span="3">
-					<excel-cop :data="excelList" :height="excelHeight" @excelChange="funExcelChange"></excel-cop>
-				</el-col>
-				<el-col :span="16">
-					<div>
-						<table-cop class="" :data="tableData" :column="tableColumn" :loading="tableLoading"
-							:height="tableHeight" :tableId="tableShowId" :tableName="tableName" @export="funExport"></table-cop>
-					</div>
-				</el-col>
-			</el-row>
-		</div>
-
-		<el-progress :percentage="progress" v-if="progress" class="!absolute top-0 right-0 left-0" :indeterminate="false"
-			color="rgb(19,206,102)" :stroke-width="4" :show-text="false" />
-	</div>
-</template>
+  <div class="bg-white py-[10px] px-[10px] relative">
+    <search-cop
+      class="mb-[20px] shadow rounded-[6px] shadow-blue-500"
+      @submit="funSubmit"
+    >
+    </search-cop>
+    <div
+      class="relative shadow rounded-[6px] shadow-blue-500 px-[10px] pt-[20px] pb-[10px]">
+     
+      <el-row :gutter="10">
+        <el-col :span="5">
+          <tree-cop
+            :data="treeData"
+            :height="treeHeight"
+            @currentChange="funCurrentChange"
+            @refresh="funGetTree"
+            @node-click="treeNodeClick"
+          >
+          </tree-cop>
+        </el-col>
+       
+        <el-col :span="19">
+          <div>
+            <el-scrollbar max-height="650px">
+
+              <el-table
+                :data="tableData"
+                style="width: 100% ,height:800px"
+                @cell-dblclick="dbclick"
+              >
+
+                <el-table-column prop="point" label="测点" align="center" width="200"/>
+                <el-table-column
+                  prop="description"
+                  label="描述"
+                  align="center"
+                  width="200"
+                />
+                <el-table-column prop="ts" label="时间" align="center" width="200"/>
+                <el-table-column prop="val" label="值" align="center" />
+                <el-table-column prop="station" label="场站" align="center" />
+                <el-table-column prop="category " label="类别" align="center" />
+                <el-table-column
+                  prop="equipment"
+                  label="设备id"
+                  align="center"
+                />
+                <el-table-column
+                  prop="uniformcode"
+                  label="统一识别码"
+                  align="center"
+                />
+                <el-table-column prop="rate" label="倍率" align="center" />
+                <el-table-column prop="remark" label="备注" align="center" />
+              </el-table>
+            </el-scrollbar>
+            
+          </div>
+           <!-- <el-pagination layout="prev, pager, next" :total="1000" /> -->
+        </el-col>
+      </el-row>
+    </div>
+
+
+  </div>
+</template>

+ 63 - 227
src/router/index.js

@@ -2,21 +2,21 @@ import { createRouter, createWebHistory, createWebHashHistory } from 'vue-router
 import Home from '../pages/Home.vue'
 const routes = [{
     path: '/',
-    redirect: '/buildTable/create',
+    redirect: '/search/create',
 },
 {
     path: '/',
     name: 'Home',
-    redirect: '/buildTable/create',
+    redirect: '/search/create',
     component: Home,
     children: [
         {
             icon: 'iconfont iconbaojingpeizhi',
-            path: '/buildTable',
-            name: 'buildTable',
-            redirect: '/buildTable/create',
+            path: '/search',
+            name: 'search',
+            redirect: '/search/create',
             meta: {
-                title: '建库、建表',
+                title: '查询',
             },
             component: () =>
                 import(
@@ -25,18 +25,20 @@ const routes = [{
             children: [
                 {
                     icon: 'el-icon-s-home',
-                    path: '/buildTable/create',
-                    name: 'buildTableCreate',
+                    path: '/search/create',
+                    name: 'searchCreate',
                     meta: {
-                        title: '建库、建表',
+                        title: '查询',
                     },
                     component: () =>
                         import(
-                            '../pages/buildTable/create/index.vue'
+                            '../pages/search/create/index.vue'
                         ),
+                        
                 }
             ]
         },
+       
         {
             icon: 'iconfont iconbaojingpeizhi',
             path: '/redis',
@@ -64,13 +66,14 @@ const routes = [{
                 }
             ]
         },
+       
         {
             icon: 'iconfont iconbaojingpeizhi',
-            path: '/search',
-            name: 'search',
-            redirect: '/search/create',
+            path: '/buildTable',
+            name: 'buildTable',
+            redirect: '/buildTable/create',
             meta: {
-                title: '查询',
+                title: '点表管理',
             },
             component: () =>
                 import(
@@ -79,234 +82,67 @@ const routes = [{
             children: [
                 {
                     icon: 'el-icon-s-home',
-                    path: '/search/create',
-                    name: 'searchCreate',
+                    path: '/buildTable/create',
+                    name: 'buildTableCreate',
                     meta: {
-                        title: '查询',
+                        title: '点表管理',
                     },
                     component: () =>
                         import(
-                            '../pages/search/create/index.vue'
+                            '../pages/buildTable/create/index.vue'
                         ),
                 }
             ]
-        }
-        // {
-        //     icon: 'iconfont iconbaojingpeizhi',
-        //     path: '/dataFilter',
-        //     name: 'dataFilter',
-        //     redirect: '/dataFilter/prepare',
-        //     meta: {
-        //         title: '数据准备',
-        //     },
-        //     component: () =>
-        //         import(
-        //             '../pages/routerViewss.vue'
-        //         ),
-        //     children: [
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/dataFilter/prepare',
-        //             name: 'dataFilterPrepare',
-        //             meta: {
-        //                 title: '风电数据准备',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/dataFilter/prepare/index.vue'
-        //                 ),
-        //         },
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/dataFilter/process',
-        //             name: 'dataFilterProcess',
-        //             meta: {
-        //                 title: '风电数据处理',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/dataFilter/process/index.vue'
-        //                 ),
-        //         },
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/dataFilter/lightPrepare',
-        //             name: 'dataFilterLightPrepare',
-        //             meta: {
-        //                 title: '光伏数据准备',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/dataFilter/lightPrepare/index.vue'
-        //                 ),
-        //         },
-        //     ]
-        // },
-        // {
-        //     icon: 'iconfont iconbaojingpeizhi',
-        //     path: '/dataAnalysis',
-        //     name: 'dataAnalysis',
-        //     redirect: '/dataAnalysis/combine',
-        //     meta: {
-        //         title: '风电分析',
-        //     },
-        //     component: () =>
-        //         import(
-        //             '../pages/routerViewss.vue'
-        //         ),
-        //     children: [
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/dataAnalysis/combine',
-        //             name: 'dataAnalysis',
-        //             meta: {
-        //                 title: '功率曲线拟合分析',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/dataAnalysis/combine/index.vue'
-        //                 ),
-        //         },
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/dataAnalysis/rateAnalysis',
-        //             name: 'dataAnalysisRateAnalysis',
-        //             meta: {
-        //                 title: '对风偏差分析',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/dataAnalysis/rateAnalysis/index.vue'
-        //                 ),
-        //         },
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/dataAnalysis/lineAnalysis',
-        //             name: 'dataAnalysislineAnalysis',
-        //             meta: {
-        //                 title: '曲线偏差率分析',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/dataAnalysis/lineAnalysis/index.vue'
-        //                 ),
-        //         },
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/dataAnalysis/hotAnalysis',
-        //             name: 'dataAnalysisthotAnalysis',
-        //             meta: {
-        //                 title: '温度与功率分析',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/dataAnalysis/hotAnalysis/index.vue'
-        //                 ),
-        //         },
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/dataAnalysis/windAnalysis',
-        //             name: 'dataAnalysisWindAnalysis',
-        //             meta: {
-        //                 title: '损失电量分析',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/dataAnalysis/windAnalysis/index.vue'
-        //                 ),
-        //         },
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/dataAnalysis/posAnalysis',
-        //             name: 'dataAnalysisPosAnalysis',
-        //             meta: {
-        //                 title: '微观选址分析',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/dataAnalysis/posAnalysis/index.vue'
-        //                 ),
-        //         },
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/dataAnalysis/spaceAnalysis',
-        //             name: 'dataAnalysisspaceAnalysis',
-        //             meta: {
-        //                 title: '毛容量分析',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/dataAnalysis/spaceAnalysis/index.vue'
-        //                 ),
-        //         },
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/dataAnalysis/angleAnalysis',
-        //             name: 'dataAnalysisAngleAnalysis',
-        //             meta: {
-        //                 title: '浆距角分析',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/dataAnalysis/angleAnalysis/index.vue'
-        //                 ),
-        //         },
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/dataAnalysis/agcAnalysis',
-        //             name: 'dataAnalysisAgcAnalysis',
-        //             meta: {
-        //                 title: 'AGC曲线偏差分析',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/dataAnalysis/agcAnalysis/index.vue'
-        //                 ),
-        //         },
-        //     ]
-        // },
-        // {
-        //     icon: 'iconfont iconbaojingpeizhi',
-        //     path: '/lightAnalysis',
-        //     name: 'lightAnalysis',
-        //     redirect: '/lightAnalysis/glAnalysis',
+        },
+        
+        {
+            icon: 'iconfont iconbaojingpeizhi',
+            path: '/look',
+            name: 'look',
+            redirect: '/look/create',
+            meta: {
+                title: '高级查询',
+            },
+            component: () =>
+                import(
+                    '../pages/routerViewss.vue'
+                ),
+            children: [
+                {
+                    icon: 'el-icon-s-home',
+                    path: '/look/create',
+                    name: 'lookCreate',
+                    meta: {
+                        title: '高级查询',
+                    },
+                    component: () =>
+                        import(
+                            '../pages/look/create/index.vue'
+                        ),
+                }
+            ]
+        },
+
+     
+        //  {
+        //     // icon: 'el-icon-s-home',
+        //     path: '/components/Lookpat',
+        //     name: 'Lookpat',
         //     meta: {
-        //         title: '光伏分析',
+        //         title: '高级查询',
         //     },
         //     component: () =>
         //         import(
-        //             '../pages/routerViewss.vue'
+        //             '../pages/search/create/components/Lookpat.vue'
         //         ),
-        //     children: [
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/lightAnalysis/glAnalysis',
-        //             name: 'glAnalysis',
-        //             meta: {
-        //                 title: '功率曲线分析',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/lightAnalysis/glAnalysis/index.vue'
-        //                 ),
-        //         },
-        //         {
-        //             icon: 'el-icon-s-home',
-        //             path: '/lightAnalysis/glHotAnalysis',
-        //             name: 'glHotAnalysis',
-        //             meta: {
-        //                 title: '功率光照曲线分析',
-        //             },
-        //             component: () =>
-        //                 import(
-        //                     '../pages/lightAnalysis/glHotAnalysis/index.vue'
-        //                 ),
-        //         },
-        //     ]
-        // },
+        // }
     ],
+    
+       
+    
 },
 
+
 // {
 //     path: '/login',
 //     name: 'Login',