|
@@ -0,0 +1,250 @@
|
|
|
+<script setup name="prepare">
|
|
|
+import excelCop from "@/components/excel.vue";
|
|
|
+import treeCop from "@/components/tree.vue";
|
|
|
+import { ref, nextTick, onActivated, onMounted, reactive } from "vue";
|
|
|
+import {
|
|
|
+ getLightPowerBeam,
|
|
|
+ getLightPrepareTree,
|
|
|
+} from "@/api/powerGenerating/index.js";
|
|
|
+import { ElMessage } from "element-plus";
|
|
|
+import CurrentScatterChart from "./components/current-scatter-chart.vue";
|
|
|
+
|
|
|
+/**submit */
|
|
|
+const funSubmit = async () => {
|
|
|
+ if (!excelCheckIds.value.length) {
|
|
|
+ ElMessage.error("请勾选要执行的项");
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ // tableShowId.value = '1'
|
|
|
+ // tableName.value = obj.name
|
|
|
+
|
|
|
+ // let res = null
|
|
|
+ let chartRes = {
|
|
|
+ scatterhs: [[]],
|
|
|
+ scatterls: [[]],
|
|
|
+ sjgl: [[]],
|
|
|
+ llgl: [[]],
|
|
|
+ cpz: [[]],
|
|
|
+ };
|
|
|
+ let chartResponse = null;
|
|
|
+
|
|
|
+ chartResponse = await getLightPowerBeam({
|
|
|
+ filename: excelCheckIds.value.join(),
|
|
|
+ });
|
|
|
+ // if(res.code === 200){
|
|
|
+ // 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
|
|
|
+ // }else{
|
|
|
+ // tableLoading.value = false
|
|
|
+ // }
|
|
|
+
|
|
|
+ if (chartResponse && chartResponse.code === 200) {
|
|
|
+ // activeTab.value = '2'
|
|
|
+ nextTick(() => {
|
|
|
+ chartRes = chartResponse.data;
|
|
|
+ seriesData.value = [
|
|
|
+ {
|
|
|
+ name: "拟合功率",
|
|
|
+ type: "line",
|
|
|
+ symbol: "line", //设定为实心点
|
|
|
+ symbolSize: 0, //设定实心点的大小
|
|
|
+ smooth: true, //这个是把线变成曲线
|
|
|
+ data: chartRes.curve,
|
|
|
+ xAxisIndex: 0,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "effectScatter",
|
|
|
+ showEffectOn: "emphasis",
|
|
|
+ rippleEffect: {
|
|
|
+ scale: 1,
|
|
|
+ },
|
|
|
+ name: "数据散点",
|
|
|
+ data: chartRes.scatter,
|
|
|
+ xAxisIndex: 0,
|
|
|
+ yAxisIndex: 0,
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ });
|
|
|
+ } else if (chartResponse && chartResponse.code === 1001) {
|
|
|
+ ElMessage.error(chartResponse.msg + ",请重新选择!");
|
|
|
+ }
|
|
|
+};
|
|
|
+/**excel 开始 */
|
|
|
+const excelCheckIds = ref([]);
|
|
|
+const funExcelChange = async (obj) => {
|
|
|
+ //点击excel项时
|
|
|
+ return false;
|
|
|
+};
|
|
|
+const funExcelCheckChange = ({ checkArr, data }) => {
|
|
|
+ //bug
|
|
|
+ excelCheckIds.value = checkArr;
|
|
|
+ funSubmit();
|
|
|
+};
|
|
|
+/**excel fitData */
|
|
|
+const excelFitList = ref([]);
|
|
|
+/**prepare tree 开始 */
|
|
|
+const actTreeNode = ref(null); //当前激活的treeNode
|
|
|
+const funRepeatMap = (arr, type = "prepare") => {
|
|
|
+ return arr.map((o) => {
|
|
|
+ if (o.children) {
|
|
|
+ const findIndex = o.children.findIndex((p) => !!p.path);
|
|
|
+ if (findIndex !== -1) {
|
|
|
+ o.childs = o.children;
|
|
|
+ o.children = [];
|
|
|
+ if (!actTreeNode.value && type === "process") {
|
|
|
+ //判断当且仅有process获取tree时 赋值
|
|
|
+ actTreeNode.value = o;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return {
|
|
|
+ ...o,
|
|
|
+ children: o.children ? funRepeatMap(o.children, type) : [],
|
|
|
+ };
|
|
|
+ });
|
|
|
+};
|
|
|
+/**process tree 开始 */
|
|
|
+const processTreeData = ref([]);
|
|
|
+const funGetProcessTree = async (flag = true) => {
|
|
|
+ //flag控制是否获取tree的第一项 true为可获取
|
|
|
+ actTreeNode.value = null;
|
|
|
+ const res = await getLightPrepareTree();
|
|
|
+ excelFitList.value = [];
|
|
|
+ processTreeData.value = funRepeatMap(res.data, "process"); //flag控制对actTreeNode赋值
|
|
|
+ if (actTreeNode.value) {
|
|
|
+ funProcessCurrentChange({ current: actTreeNode.value, currentNode: null });
|
|
|
+ // const child = actTreeNode.value.childs[0]
|
|
|
+ // const obj = {
|
|
|
+ // id: child.path,
|
|
|
+ // interval: child.interval,
|
|
|
+ // path: child.path,
|
|
|
+ // station: child.station,
|
|
|
+ // time: child.time,
|
|
|
+ // type: child.type,
|
|
|
+ // windturbine: child.windturbine,
|
|
|
+ // name: child.path
|
|
|
+ // }
|
|
|
+ // funExcelChange(obj)
|
|
|
+ }
|
|
|
+};
|
|
|
+const funProcessCurrentChange = ({ current, currentNode }) => {
|
|
|
+ if (current.childs) {
|
|
|
+ excelFitList.value = current.childs.map((o) => {
|
|
|
+ return {
|
|
|
+ id: o.path,
|
|
|
+ interval: o.interval,
|
|
|
+ path: o.path,
|
|
|
+ station: o.station,
|
|
|
+ time: o.time,
|
|
|
+ type: o.type,
|
|
|
+ windturbineId: o.windturbineId,
|
|
|
+ name: o.path,
|
|
|
+ };
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ excelFitList.value = [];
|
|
|
+ }
|
|
|
+};
|
|
|
+const funTreeCheckChange = ({
|
|
|
+ current,
|
|
|
+ checkedNodes,
|
|
|
+ checkedKeys,
|
|
|
+ halfCheckedNodes,
|
|
|
+ halfCheckedKeys,
|
|
|
+}) => {
|
|
|
+ //tree change -> excel change
|
|
|
+ funProcessCurrentChange({ 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.path);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ excelCheckIds.value = checkIds;
|
|
|
+ funSubmit();
|
|
|
+};
|
|
|
+
|
|
|
+/**table 开始 */
|
|
|
+const tableShowId = ref("");
|
|
|
+const tableColumn = ref([]);
|
|
|
+const tableLoading = ref(false);
|
|
|
+const tableName = ref("");
|
|
|
+const tableData = ref([]);
|
|
|
+/**table 结束 */
|
|
|
+/**chart Data */
|
|
|
+const xAxisData = ref([]);
|
|
|
+const chartRef = ref(); //chart 的ref
|
|
|
+const seriesData = ref([]);
|
|
|
+const dataSet = ref("");
|
|
|
+/**tab */
|
|
|
+const activeTab = ref("1");
|
|
|
+/**created */
|
|
|
+// funGetTree()
|
|
|
+funGetProcessTree();
|
|
|
+/**mounted */
|
|
|
+
|
|
|
+/**activated */
|
|
|
+onActivated(() => {
|
|
|
+ funGetProcessTree();
|
|
|
+});
|
|
|
+</script>
|
|
|
+<template>
|
|
|
+ <div class="container-wrapper">
|
|
|
+ <div class="power-data-wrapper card-shadow wrapper">
|
|
|
+ <div class="card-title">数据展示</div>
|
|
|
+ <div class="data-wrapper">
|
|
|
+ <tree-cop
|
|
|
+ :data="processTreeData"
|
|
|
+ type="light"
|
|
|
+ @checkChange="funTreeCheckChange"
|
|
|
+ :show-checkbox="true"
|
|
|
+ @currentChange="funProcessCurrentChange"
|
|
|
+ @refresh="funGetProcessTree"
|
|
|
+ />
|
|
|
+ <excel-cop
|
|
|
+ :data="excelFitList"
|
|
|
+ :checkIds="excelCheckIds"
|
|
|
+ :showCheckbox="true"
|
|
|
+ @excelChange="funExcelChange"
|
|
|
+ @checkChange="funExcelCheckChange"
|
|
|
+ />
|
|
|
+ <div class="data-table-wrapper card-shadow">
|
|
|
+ <div class="data-table-chart">
|
|
|
+ <CurrentScatterChart
|
|
|
+ ref="chartRef"
|
|
|
+ width="100%"
|
|
|
+ height="100%"
|
|
|
+ :chartTitle="''"
|
|
|
+ :xAxisData="xAxisData"
|
|
|
+ :yAxisData="{ splitLine: { show: false } }"
|
|
|
+ :seriesData="seriesData"
|
|
|
+ :showLegend="true"
|
|
|
+ :brushSelected="false"
|
|
|
+ :dataSet="dataSet"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<style lang="less" scoped>
|
|
|
+.power-data-wrapper {
|
|
|
+ height: 100%;
|
|
|
+ margin-top: 0;
|
|
|
+}
|
|
|
+.data-table-wrapper {
|
|
|
+ width: calc(62% - 40px) !important;
|
|
|
+}
|
|
|
+</style>
|