123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891 |
- <template>
- <div>
- <el-dialog
- class="dialogs"
- width="85%"
- top="8vh"
- v-model="dialogCurveVisible"
- :show-close="true"
- @close="handleClose"
- >
- <template #title>
- <div class="dialog-title">
- <img class="dialog-title-img" src="@assets/imgs/dialog-title.png" />
- <div class="title">{{ chartName }}</div>
- <!-- <i class="el-icon-full-screen" @click="c"></i>-->
- </div>
- </template>
- <div class="dialog-body" style="height: 51vh; width: 100%">
- <div style="margin-top: -20px; margin-bottom: 20px">
- <div
- style="
- height: 5vh;
- line-height: 5vh;
- flex-direction: row;
- align-items: center;
- display: flex;
- "
- >
- <div class="qushi-form">
- <div class="station">
- 开始时间
- <div
- class="search-input"
- style="margin-left: 5px; margin-right: 10px"
- >
- <el-date-picker
- v-model="starttime"
- type="datetime"
- placeholder="选择日期"
- format="YYYY-MM-DD HH:mm:ss"
- class="datetime_picker"
- popper-class="elDatePicker"
- >
- </el-date-picker>
- </div>
- </div>
- <div class="station">
- 结束时间
- <div
- class="search-input"
- style="margin-left: 5px; margin-right: 10px"
- >
- <el-date-picker
- v-model="endtime"
- type="datetime"
- placeholder="选择日期"
- format="YYYY-MM-DD HH:mm:ss"
- class="datetime_picker"
- popper-class="elDatePicker"
- >
- </el-date-picker>
- </div>
- </div>
- <div class="station">
- 时间间隔(秒)
- <div>
- <el-input-number
- size="medium"
- v-model="numgap"
- :precision="0"
- ></el-input-number>
- </div>
- </div>
- <el-button
- style="margin-left: 15px"
- round
- :disabled="timerFlag"
- size="mini"
- class="searchColor"
- @click="throttleSearch"
- >查询
- </el-button>
- </div>
- <div class="qushi-tools">
- <el-button
- class="customColor"
- round
- size="mini"
- type="primary"
- @click="showYsetDialog"
- icon="el-icon-edit"
- >自定义多坐标
- </el-button>
- <el-tooltip
- class="item"
- effect="dark"
- content="导出"
- placement="bottom"
- >
- <el-button
- class="updownTit"
- round
- size="mini"
- type="primary"
- @click="exportDatas"
- >
- <i class="svg-icon svg-icon-sm svg-icon-white">
- <SvgIcon svgid="svg-dataout"></SvgIcon
- ></i>
- </el-button>
- </el-tooltip>
- </div>
- </div>
- </div>
- <img
- class="dialog-img"
- style="bottom: -166px"
- src="@assets/imgs/dialog.png"
- />
- <windChartCom
- ref="windChartCom"
- :height="chartHeight"
- :list="chartsData"
- :interval="intervalgap"
- :units="units"
- :unitDatas="unitDatas"
- :showLegend="false"
- :showXdata="false"
- :animate="false"
- :ratio="1000"
- />
- </div>
- <div class="economicTable1 mentues met" style="margin-top: 10px">
- <el-table
- :data="detailsValue"
- class="table-fixed tables"
- ref="multipleTable"
- :cell-style="tagCellStyle"
- height="23vh"
- fit
- stripe
- >
- <el-table-column
- align="center"
- prop="name"
- label="指标名称"
- width="500"
- show-overflow-tooltip
- >
- </el-table-column>
- <el-table-column
- align="center"
- prop="tagName"
- label="描述"
- width="400"
- show-overflow-tooltip
- >
- </el-table-column>
- <el-table-column
- align="center"
- prop="dateTime"
- label="快照时间"
- width="200"
- >
- </el-table-column>
- <el-table-column align="center" prop="value" label="快照值">
- </el-table-column>
- <el-table-column align="center" prop="minvalue" label="最大值">
- </el-table-column>
- <el-table-column align="center" prop="maxvalue" label="最小值">
- </el-table-column>
- <el-table-column align="center" prop="avgvalue" label="平均值">
- </el-table-column>
- <el-table-column
- prop="showy"
- label="操作"
- align="center"
- width="110"
- style="cursor: pointer"
- >
- <template v-slot="scoped">
- <i
- style="cursor: pointer"
- class="svg-icon svg-icon-sm svg-icon-gray checkIcon"
- >
- <SvgIcon
- :svgid="scoped.row.showy ? 'svg-show' : 'svg-hide'"
- ></SvgIcon
- ></i>
- <el-switch
- v-model="scoped.row.showy"
- @change="curveSwitchData(scoped.row)"
- inactive-color="rgba(0,0,0,0)"
- active-color="rgba(0,0,0,0)"
- >
- </el-switch>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </el-dialog>
- <el-dialog
- class="ysetDialog"
- width="43%"
- v-model="ysetDialogVisible"
- :show-close="true"
- >
- <template #title>
- <div class="dialog-title">
- <img class="dialog-title-img" src="@assets/imgs/dialog-title.png" />
- <div class="title">{{ ysetName }}</div>
- </div>
- </template>
- <div class="dialog-body mentuese metse" style="height: 35vh">
- <el-table
- :data="tagDatas"
- class="table-fixed tables"
- ref="multipleTable"
- :cell-style="tagCellStyle2"
- height="100%"
- style="width: 100%"
- fit
- empty-text="暂无数据"
- stripe
- >
- <el-table-column
- prop="tagName"
- label="指标名称"
- align="center"
- fixed
- width="420"
- >
- </el-table-column>
- <el-table-column
- prop="minvalue"
- label="最小值"
- align="center"
- fixed
- width="180"
- >
- <template v-slot="scoped">
- <el-input-number
- size="small"
- v-model="scoped.row.min"
- controls-position="right"
- ></el-input-number>
- </template>
- </el-table-column>
- <el-table-column
- prop="maxvalue"
- label="最大值"
- align="center"
- fixed
- width="180"
- >
- <template v-slot="scoped">
- <el-input-number
- size="small"
- v-model="scoped.row.max"
- controls-position="right"
- ></el-input-number>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <img
- class="dialog-img"
- style="position: absolute; bottom: 50px; right: 0"
- src="@assets/imgs/dialog.png"
- />
- <el-row
- class="footerButton changeButton"
- style="text-align: center; margin-top: 20px"
- >
- <el-button
- size="medium"
- style="width: 125px"
- round
- @click="cancelMultiys()"
- >取消多坐标</el-button
- >
- <el-button type="primary" size="medium" round @click="saveEditTagInfo()"
- >确定</el-button
- >
- </el-row>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- GetWtPoints,
- GetWpPoints,
- GetPointFitting,
- GetSubPoints,
- GetProPoints,
- } from "@/api/points/index.js";
- import SvgIcon from "@com/coms/icon/svg-icon.vue";
- import dayjs from "dayjs";
- import windChartCom from "./lineCharts.vue";
- export default {
- name: "changeCheck", //趋势对比
- components: {
- windChartCom,
- SvgIcon,
- },
- props: {
- data: {
- type: String,
- required: true,
- },
- chartName: {
- type: String,
- required: true,
- },
- index: {
- type: String,
- required: true,
- },
- title: {
- type: String,
- required: true,
- },
- },
- data() {
- return {
- value: true,
- dialogVisibles: false,
- stse: [],
- sts: [],
- statiomName: [],
- leng: "",
- x: 500,
- y: 250,
- starttime: new Date(),
- endtime: "",
- stationTit: null,
- dragging: false,
- currentX: 50,
- currentY: 0,
- initialX: 0,
- initialY: 0,
- tableShow: true,
- tmp: [],
- detailsValue: [],
- numgap: 900,
- intervalgap: 7,
- tmpData: "",
- units: [],
- color: [
- "#1985de",
- "#ff8300",
- "#06a746",
- "#3eede7",
- "#eb0f7c",
- "#dfdc0a",
- "#de0feb",
- "#cca4e3",
- ],
- unitDatas: [{ flag: false, min: 0, max: 0, codex: 0 }],
- tagDatas: [],
- handleSwitch: false,
- chartsData: [],
- chartsDataAll: [],
- dialogCurveVisible: false,
- ysetDialogVisible: false,
- ysetName: "自定义多坐标",
- visibles: "",
- cilent: "",
- dialogFull: false,
- chartHeight: "43vh",
- tagNames: "",
- pointIds: "",
- searchFlag: false, //判断是否重置多坐标
- changeYset: false, //是否设置过多坐标
- ined: 1, //查询测点类型
- timerFlag: false,
- };
- },
- created() {
- this.starttime = new Date(new Date().setHours(0, 0, 0, 0));
- this.endtime = new Date();
- },
- methods: {
- // 防止按钮频繁点击
- throttleSearch() {
- this.timerFlag = true;
- setTimeout(() => {
- this.searchChartData();
- this.timerFlag = false;
- }, 2000);
- },
- // 指标样式
- tagCellStyle({ row, column, rowIndex, columnIndex }) {
- if (!row.showy) {
- return { color: "#525252", fontSize: "11px" };
- }
- if ((columnIndex == 0 || columnIndex == 1) && row.showy) {
- return { color: this.color[rowIndex], fontSize: "13px" };
- } else {
- return { padding: "6px 0px" };
- }
- },
- // 指标样式
- tagCellStyle2({ row, column, rowIndex, columnIndex }) {
- if (columnIndex == 0) {
- return { color: this.color[rowIndex] + "!important", fontSize: "13px" };
- } else {
- return { padding: "6px 0px" };
- }
- },
- // 取消多坐标
- cancelMultiys() {
- this.searchFlag = false;
- this.units = [];
- this.unitDatas = [];
- this.tagDatas.forEach((value, index) => {
- if (index == 0) {
- this.units.push(this.chartsData[0].title);
- this.unitDatas.push({ flag: false, min: 0, max: 0, codex: 0 });
- }
- });
- this.chartsData.forEach((value2, index2) => {
- value2.yAxisIndex = 0;
- });
- this.ysetDialogVisible = false;
- this.changeYset = false;
- },
- // 展示多坐标弹窗
- showYsetDialog() {
- var maxy = this.$refs.windChartCom.childMethod(0);
- this.tagDatas.forEach((value, index) => {
- if (value.showy) {
- value.max = this.$refs.windChartCom.childMethod(index);
- } else {
- value.max = maxy;
- }
- });
- this.ysetDialogVisible = true;
- this.changeYset = true;
- },
- // 保存多坐标信息
- saveEditTagInfo() {
- if (this.changeYset) {
- this.units = [];
- this.unitDatas = [];
- this.chartsData.forEach((value, index) => {
- value.yAxisIndex = 0;
- });
- this.tagDatas.forEach((value, index) => {
- if (index == 0) {
- this.units.push(this.chartsData[0].title);
- this.unitDatas.push({
- flag: true,
- min: value.min,
- max: value.max,
- codex: 0,
- });
- }
- if (index > 0) {
- this.units.push(value.tagName);
- this.unitDatas.push({
- flag: true,
- min: value.min,
- max: value.max,
- codex: index,
- });
- this.chartsData.forEach((value2, index2) => {
- if (value2.title == value.tagName) {
- value2.yAxisIndex = index;
- }
- });
- }
- });
- this.changeYset = true;
- } else {
- this.changeYset = false;
- }
- this.ysetDialogVisible = false;
- },
- exportDatas() {},
- c() {
- this.dialogFull ? (this.dialogFull = false) : (this.dialogFull = true);
- },
- curveSwitchData(e) {
- this.value = e.showy;
- var option = "{";
- this.detailsValue.forEach((value, index) => {
- option += "'" + value.tagName + "'" + ":" + value.showy + ",";
- });
- option = option.substring(0, option.length - 1);
- option += "}";
- var json = eval("(" + option + ")");
- this.$refs.windChartCom.changDateVisible(json);
- },
- // 弹窗首次加载对比曲线
- openCurvDatas(valse, ined, wtid) {
- this.ined = ined;
- this.searchFlag = false;
- this.changeYset = false;
- this.wtid = wtid;
- this.dialogCurveVisible = true;
- this.detailsValue = [];
- this.tagDatas = [];
- this.units = [];
- this.unitDatas = [];
- this.numgap = 900;
- this.intervalgap = 7;
- let tagNames = "";
- this.tmpData = valse;
- this.tmpData.forEach((value, index) => {
- tagNames += value.sts + ",";
- });
- this.tagNames = tagNames.substring(0, tagNames.length - 1);
- if (ined == 1) {
- this.getWpPoints(wtid);
- } else if (ined == 2) {
- this.getWtPoints(wtid);
- } else if (ined == 3) {
- this.getPoints(this.tagNames);
- } else if (ined == 4) {
- this.getSubPoints(wtid);
- } else if (ined == 5) {
- this.getProPoints(wtid);
- }
- },
- // 查询设备测点
- getWtPoints(wtid) {
- GetWtPoints({
- wtid,
- uniformcodes: this.tagNames,
- }).then((res) => {
- this.tmpData.forEach((item) => {
- res.data.data.forEach((i) => {
- if (item.sts == i.uniformCode) {
- item.sts = i.nemCode;
- item.statiomName = i.name;
- }
- });
- // if()
- });
- let pointIds = "";
- res.data.data.forEach((value) => {
- pointIds += value.nemCode + ",";
- });
- pointIds = pointIds.substring(0, pointIds.length - 1);
- this.getPoints(pointIds);
- });
- },
- // 查询场站测点
- getWpPoints(wpid) {
- GetWpPoints({
- wpid,
- uniformcodes: this.tagNames,
- }).then((res) => {
- let resData = res.data.data.map((item) => {
- if (item == null) {
- return {};
- } else {
- return { ...item };
- }
- });
- let pointIds = "";
- this.tmpData.forEach((item) => {
- resData.forEach((i) => {
- if (Object.keys(i).length) {
- if (item.sts == i.uniformCode) {
- item.sts = i.nemCode;
- item.statiomName = i.name;
- }
- } else {
- item.sts = "";
- item.statiomName = "";
- }
- });
- });
- resData.forEach((value) => {
- if (!value) {
- value.nemCode = "";
- }
- pointIds += value.nemCode + ",";
- });
- pointIds = pointIds.substring(0, pointIds.length - 1);
- this.getPoints(pointIds);
- });
- },
- // 查询调度场站测点
- getSubPoints(wpid) {
- GetSubPoints({
- wpid,
- uniformcodes: this.tagNames,
- }).then((res) => {
- this.tmpData.forEach((item) => {
- res.data.data.forEach((i) => {
- if (item.sts == i.uniformCode) {
- item.sts = i.nemCode;
- item.statiomName = i.name;
- }
- });
- });
- let pointIds = "";
- res.data.data.forEach((value) => {
- pointIds += value.nemCode + ",";
- });
- pointIds = pointIds.substring(0, pointIds.length - 1);
- this.getPoints(pointIds);
- });
- },
- // 查询场站期次测点
- getProPoints(wpid) {
- GetProPoints({
- wpid,
- uniformcodes: this.tagNames,
- }).then((res) => {
- this.tmpData.forEach((item) => {
- res.data.data.forEach((i) => {
- if (item.sts == i.uniformCode) {
- item.sts = i.nemCode;
- item.statiomName = i.name;
- }
- });
- });
- let pointIds = "";
- res.data.data.forEach((value) => {
- pointIds += value.nemCode + ",";
- });
- pointIds = pointIds.substring(0, pointIds.length - 1);
- this.getPoints(pointIds);
- });
- },
- // 查询测点
- getPoints(pointIds) {
- GetPointFitting({
- begin: dayjs(this.starttime).format("YYYY-MM-DD HH:mm:ss"),
- end: dayjs(this.endtime).format("YYYY-MM-DD HH:mm:ss"),
- interval: this.numgap,
- pointIds,
- }).then((res) => {
- if (res.data.data.length) {
- let powerLineChartData = [];
- let resData = res.data.data;
- resData.forEach((value, index) => {
- var option = {
- title:
- this.ined == 3
- ? this.tmpData[index].stse + this.tmpData[index].statiomName
- : this.tmpData[index].statiomName,
- tagName: this.tmpData[index].sts,
- yAxisIndex: 0,
- value: value
- ? value.map((item) => {
- return {
- dateTime: item.pointTime,
- value: item.pointValueInDouble,
- };
- })
- : [],
- noRatio: true,
- };
- powerLineChartData.push(option);
- });
- this.chartsData = powerLineChartData;
- this.chartsDataAll = JSON.parse(JSON.stringify(this.chartsData));
- this.dialogCurveVisible = true;
- let tagDatas = [];
- resData.forEach((value, index) => {
- var option = {
- tagName:
- this.ined == 3
- ? this.tmpData[index].stse + this.tmpData[index].statiomName
- : this.tmpData[index].statiomName,
- min: 0,
- max: 0,
- showy: false,
- };
- tagDatas.push(option);
- });
- tagDatas[0].showy = true;
- if (!this.searchFlag) {
- this.units = [this.chartsData[0].title];
- this.unitDatas.push({ flag: false, min: 0, max: 0, codex: 0 });
- this.tagDatas = tagDatas;
- } else {
- this.saveEditTagInfo();
- }
- resData.forEach((value, index) => {
- var option;
- if (value != null && value.length > 0) {
- let dateTime = null;
- let dateValue = null;
- let vals = [];
- for (var i = value.length - 1; i >= 0; i--) {
- if (value[i].pointValueInDouble !== "") {
- dateTime = dayjs(value[i].pointTime).format(
- "YYYY-MM-DD HH:mm:ss"
- );
- dateValue = Number(value[i].pointValueInDouble).toFixed(2);
- break;
- }
- }
- for (var j = value.length - 1; j >= 0; j--) {
- if (value[j].pointValueInDouble !== "") {
- vals.push(value[j].pointValueInDouble);
- }
- }
- let maxValue = vals.sort()[0].toFixed(2);
- let minValue = vals.sort().reverse()[0].toFixed(2);
- let totalValue = 0;
- for (var k = 0; k < vals.length; k++) {
- totalValue += vals[k];
- }
- let avgValue = (totalValue / vals.length).toFixed(2);
- option = {
- name: this.tmpData[index].sts,
- tagName:
- this.ined == 3
- ? this.tmpData[index].stse + this.tmpData[index].statiomName
- : this.tmpData[index].statiomName,
- showy: true,
- dateTime: dateTime,
- value: dateValue,
- maxvalue: maxValue,
- minvalue: minValue,
- avgvalue: avgValue,
- };
- } else {
- option = {
- name: this.tmpData[index].sts,
- tagName:
- this.ined == 3
- ? this.tmpData[index].stse + this.tmpData[index].statiomName
- : this.tmpData[index].statiomName,
- showy: true,
- dateTime: "-",
- value: "-",
- maxvalue: "-",
- minvalue: "-",
- avgvalue: "-",
- };
- }
- this.detailsValue.push(option);
- });
- }
- });
- },
- // 点击查询按钮查询对比曲线
- searchChartData() {
- this.searchFlag = true;
- this.chartsData = [];
- this.detailsValue = [];
- if (this.ined == 1) {
- this.getWpPoints(this.wtid);
- } else if (this.ined == 2) {
- this.getWtPoints(this.wtid);
- } else if (this.ined == 3) {
- this.getPoints(this.tagNames);
- } else if (this.ined == 4) {
- this.getSubPoints(this.wtid);
- } else if (this.ined == 5) {
- this.getProbPoints(this.wtid);
- }
- },
- // 关闭弹窗事件
- handleClose() {
- this.tmpData = [];
- this.tagNames = "";
- this.searchFlag = false;
- this.changeYset = false;
- this.tagDatas = [];
- this.chartsData = [];
- this.detailsValue = [];
- this.starttime = new Date(new Date().setHours(0, 0, 0, 0));
- this.endtime = new Date();
- this.numgap = 900;
- },
- },
- mounted() {},
- computed: {},
- };
- </script>
- <style lang="less" scoped>
- .footerButton {
- justify-content: right;
- .el-button:first-child {
- width: 108px;
- background-color: rgba(0, 70, 199, 0.2) !important;
- color: #b3b3b3;
- border-color: transparent;
- }
- .el-button:last-of-type {
- width: 108px;
- background: rgba(0, 70, 199, 0.4) !important;
- }
- }
- .checkIcon {
- position: absolute;
- left: 45px;
- top: 8px;
- font-size: 20px;
- color: #929396;
- }
- .searchColor {
- background: rgba(0, 70, 199, 0.4);
- color: #b3b3b3;
- font-size: 14px;
- border: none;
- width: 108px;
- min-height: 25px !important;
- &:hover {
- background-color: rgba(0, 70, 199, 0.5);
- color: #ffffff;
- }
- }
- .qushi-form {
- flex: 0 0 auto;
- display: flex;
- align-items: center;
- .station {
- display: flex;
- flex-direction: row;
- align-items: center;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #b3b3b3;
- margin-left: 40px;
- /deep/ .el-input__suffix {
- right: -68px;
- }
- /deep/ .el-input__prefix {
- left: 0;
- }
- /deep/ .el-input__inner {
- width: 190px;
- }
- .el-input-number {
- width: 190px;
- /deep/ .el-input-number__decrease,
- /deep/ .el-input-number__increase {
- position: absolute;
- z-index: 10;
- border: 0;
- height: 25px;
- line-height: 25px;
- top: 5px;
- }
- }
- }
- }
- .qushi-tools {
- flex: 1;
- display: flex;
- justify-content: flex-end;
- .customColor {
- border-radius: 0 !important;
- background: url("../../assets/imgs/buttonBack.png") no-repeat;
- background-position: 7px;
- }
- .updownTit {
- padding: 0 !important;
- width: 30px !important;
- min-height: 28px !important;
- border-radius: 4px;
- border: 1px solid rgba(225, 225, 225, 0.3) !important;
- border-top: 1px solid #ffffff !important;
- border-bottom: 0;
- box-shadow: 0 0 22px rgba(255, 255, 255, 0.2) inset !important;
- //border-image: linear-gradient(321deg, rgba(225, 225, 225,2 ), rgba(5, 187, 76, 0.5)) 1 1 !important;
- background: linear-gradient(
- 180deg,
- rgba(255, 255, 255, 0.5),
- rgba(0, 0, 0, 0.5),
- rgba(0, 0, 0, 1)
- );
- }
- }
- </style>
|