|
@@ -0,0 +1,257 @@
|
|
|
+<template>
|
|
|
+ <div class="container-wrapper">
|
|
|
+ <search-cop @submit="funSubmit" />
|
|
|
+ <div class="power-data-wrapper card-shadow wrapper">
|
|
|
+ <div class="card-title">数据展示</div>
|
|
|
+ <div class="data-wrapper">
|
|
|
+ <div class="data-left-wrapper">
|
|
|
+ <tree-cop
|
|
|
+ class="tree-height"
|
|
|
+ :data="treeData"
|
|
|
+ @checkChange="funTreeCheckChange"
|
|
|
+ :show-checkbox="true"
|
|
|
+ @currentChange="funCurrentChange"
|
|
|
+ @refresh="funGetTree"
|
|
|
+ ></tree-cop>
|
|
|
+ <tree-cop
|
|
|
+ class="tree-height"
|
|
|
+ :data="processTreeData"
|
|
|
+ @currentChange="funProcessCurrentChange"
|
|
|
+ @refresh="funGetProcessTree"
|
|
|
+ ></tree-cop>
|
|
|
+ </div>
|
|
|
+ <excel-cop
|
|
|
+ :checkIds="excelCheckIds"
|
|
|
+ :currentIds="currentId"
|
|
|
+ :showCheckbox="excelCheckboxShow"
|
|
|
+ :data="excelList"
|
|
|
+ @excelChange="funExcelChange"
|
|
|
+ @checkChange="funExcelCheckChange"
|
|
|
+ />
|
|
|
+ <table-cop
|
|
|
+ class=""
|
|
|
+ :data="tableData"
|
|
|
+ :loading="tableLoading"
|
|
|
+ :column="tableColumn"
|
|
|
+ :tableId="tableShowId"
|
|
|
+ :tableName="tableName"
|
|
|
+ @export="funExport"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup name="process">
|
|
|
+import searchCop from "./components/search.vue";
|
|
|
+import excelCop from "@/components/excel.vue";
|
|
|
+import treeCop from "@/components/tree.vue";
|
|
|
+import tableCop from "@/views/powerGenerating/dataFilter/components/table.vue";
|
|
|
+import { ref, onActivated, onMounted } from "vue";
|
|
|
+import request from "@/api/axios.js";
|
|
|
+import { ElMessage } from "element-plus";
|
|
|
+import {
|
|
|
+ getProcessTree,
|
|
|
+ getPrepareTree,
|
|
|
+ getPrepareExcelShow,
|
|
|
+ getProcessExcelShow,
|
|
|
+ getProcessData,
|
|
|
+} from "@/api/powerGenerating/index.js";
|
|
|
+const baseURL = process.env.VUE_APP_TEST;
|
|
|
+/**excel 开始 */
|
|
|
+const excelCheckboxShow = ref(false);
|
|
|
+const excelCheckIds = ref([]);
|
|
|
+const currentId = ref("");
|
|
|
+const excelList = ref([]);
|
|
|
+const funExcelChange = async (obj) => {
|
|
|
+ //点击excel项时
|
|
|
+ tableShowId.value = obj.id;
|
|
|
+ currentId.value = obj.id;
|
|
|
+ tableName.value = obj.name;
|
|
|
+ let res = null;
|
|
|
+ tableLoading.value = true;
|
|
|
+ if (obj.type === "prepare") {
|
|
|
+ res = await getPrepareExcelShow({ id: obj.id });
|
|
|
+ } else if (obj.type === "process") {
|
|
|
+ res = await getProcessExcelShow({ 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 funExcelCheckChange = ({ checkArr, data }) => {
|
|
|
+ //bug
|
|
|
+ excelCheckIds.value = checkArr;
|
|
|
+};
|
|
|
+/**prepare tree 开始 */
|
|
|
+const treeData = ref([]);
|
|
|
+const funRepeatMap = (arr, type = "prepare") => {
|
|
|
+ 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, type) : [],
|
|
|
+ };
|
|
|
+ });
|
|
|
+};
|
|
|
+const funGetTree = async () => {
|
|
|
+ const res = await getPrepareTree();
|
|
|
+ treeData.value = funRepeatMap(res.data);
|
|
|
+ excelList.value = [];
|
|
|
+};
|
|
|
+const funCurrentChange = ({ current, currentNode }) => {
|
|
|
+ excelCheckboxShow.value = true;
|
|
|
+ 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 = [];
|
|
|
+ }
|
|
|
+};
|
|
|
+const funTreeCheckChange = ({
|
|
|
+ current,
|
|
|
+ checkedNodes,
|
|
|
+ checkedKeys,
|
|
|
+ halfCheckedNodes,
|
|
|
+ halfCheckedKeys,
|
|
|
+}) => {
|
|
|
+ //tree change -> excel change
|
|
|
+ funCurrentChange({ current, currentNode: "" });
|
|
|
+ const checkIds = [];
|
|
|
+ if (checkedNodes.length) {
|
|
|
+ for (const node of checkedNodes) {
|
|
|
+ if (node.childs && node.childs.length) {
|
|
|
+ for (const child of node.childs) {
|
|
|
+ checkIds.push(child.id);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ excelCheckIds.value = checkIds;
|
|
|
+};
|
|
|
+
|
|
|
+/**process tree 开始 */
|
|
|
+const processTreeData = ref([]);
|
|
|
+const actTreeNode = ref(null);
|
|
|
+const funGetProcessTree = async () => {
|
|
|
+ actTreeNode.value = null;
|
|
|
+ const res = await getProcessTree();
|
|
|
+ processTreeData.value = funRepeatMap(res.data, "fitting");
|
|
|
+ excelList.value = [];
|
|
|
+ if (actTreeNode.value) {
|
|
|
+ funProcessCurrentChange({ 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 funProcessCurrentChange = ({ current, currentNode }) => {
|
|
|
+ excelCheckboxShow.value = false;
|
|
|
+ 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 tableColumn = ref([]);
|
|
|
+const tableLoading = ref(false);
|
|
|
+const tableName = ref("");
|
|
|
+const tableData = ref([]);
|
|
|
+const funExport = async () => {
|
|
|
+ const a = document.createElement("a");
|
|
|
+ a.href = baseURL + "/power/process/download?id=" + tableShowId.value;
|
|
|
+ a.download = "";
|
|
|
+ a.click();
|
|
|
+};
|
|
|
+/**table 结束 */
|
|
|
+/**search 开始 */
|
|
|
+const funSubmit = async (query) => {
|
|
|
+ if (!excelCheckIds.value.length) {
|
|
|
+ ElMessage.error("请勾选要预处理的项");
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ const params = {
|
|
|
+ ...query,
|
|
|
+ ids: excelCheckIds.value.join(","),
|
|
|
+ };
|
|
|
+ const res = await getProcessData(params);
|
|
|
+ if (res.code === 200) {
|
|
|
+ ElMessage.success(res.msg);
|
|
|
+ funGetProcessTree();
|
|
|
+ }
|
|
|
+};
|
|
|
+/**created */
|
|
|
+funGetTree().then(() => {
|
|
|
+ funGetProcessTree();
|
|
|
+});
|
|
|
+
|
|
|
+/**mounted */
|
|
|
+
|
|
|
+/**activated */
|
|
|
+onActivated(async () => {
|
|
|
+ await funGetTree();
|
|
|
+ funGetProcessTree();
|
|
|
+});
|
|
|
+</script>
|