| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- <template>
- <div>
- <!-- 图表控制面板 总图-->
- <div style="display: flex; align-items: center">
- <!-- <div style="margin-right: 20px; display: flex; align-items: center">
- <el-color-picker
- size="small"
- v-model="color1"
- show-alpha
- @change="updateChartColor"
- ></el-color-picker>
- <span style="margin-left: 10px">自定义颜色</span>
- </div> -->
- <div>
- <el-button size="small" @click="toggleChartType">
- 切换为{{ chartType === "line" ? "柱状图" : "折线图" }}
- </el-button>
- </div>
- </div>
- <!-- 图表容器 -->
- <div
- v-loading="loading"
- :id="`bar-chart${index}`"
- style="width: 100%; height: 400px"
- >
- <el-empty v-if="isError" description="请求失败"></el-empty>
- </div>
- </div>
- </template>
- <script>
- import { nextTick } from "vue"; // 导入 nextTick
- import Plotly from "plotly.js-dist";
- import axios from "axios";
- import { myMixin } from "@/mixins/chartRequestMixin"; // 假设你需要的 mixin
- export default {
- props: {
- fileAddr: {
- type: String,
- default: "",
- },
- index: {
- type: Number,
- default() {
- return 0;
- },
- },
- },
- mixins: [myMixin],
- data() {
- return {
- chartData: {},
- chartType: "line", // 默认图表类型是折线图
- color1: "#406DAB", // 默认颜色
- loading: false,
- isError: false,
- colors: [
- "#DFEDC1",
- "#DBEEBC",
- "#A8D7BE",
- "#8ECAC1",
- "#77BDC2",
- "#64ADC2",
- "#559ABE",
- "#4884B7",
- "#406DAB",
- "#3856A0",
- "#314291",
- "#28357A",
- "#1A285E",
- ],
- };
- },
- mounted() {
- if (this.fileAddr) {
- this.getData();
- }
- },
- methods: {
- // 获取数据
- async getData() {
- if (this.fileAddr !== "") {
- try {
- this.loading = true;
- this.cancelToken = axios.CancelToken.source();
- const resultChartsData = await axios.get(this.fileAddr, {
- cancelToken: this.cancelToken.token,
- });
- console.log("resultChartsData.data", resultChartsData);
- this.chartData = resultChartsData.data;
- // 使用 nextTick 来确保 DOM 渲染完成后绘制图表
- nextTick(() => {
- this.drawChart();
- this.isError = false;
- this.loading = false;
- });
- } catch (error) {
- console.error("Error loading data:", error);
- this.isError = true;
- this.loading = false;
- }
- }
- },
- // 绘制图表
- drawChart() {
- const data = [];
- console.log(this.chartData, "this.chartData");
- this.chartData &&
- this.chartData.data &&
- this.chartData.data.forEach((turbine, index) => {
- // 判断图表类型,根据类型调整绘制方式
- const chartConfig = {
- x: turbine.xData, // X 数据
- y: turbine.yData, // Y 数据
- name: turbine.engineName, // 使用机组名称
- line: {
- color: this.colors[index % this.colors.length], // 为每个机组分配不同的颜色
- },
- marker: {
- color: this.colors[index % this.colors.length], // 为每个机组分配不同的颜色
- },
- };
- if (this.chartType === "line") {
- chartConfig.mode = "lines"; // 如果是折线图
- } else if (this.chartType === "bar") {
- chartConfig.type = "bar"; // 如果是柱状图
- }
- data.push(chartConfig);
- });
- const layout = {
- title: this.chartData.title,
- xaxis: {
- title: this.chartData.xaixs || "X轴", // 横坐标标题
- },
- yaxis: {
- title: this.chartData.yaixs || "Y轴", // 纵坐标标题
- },
- margin: {
- l: 50,
- r: 50,
- t: 50,
- b: 50,
- },
- autosize: true, // 开启自适应
- barmode: this.chartType === "bar" ? "stack" : "group", // 如果是柱状图则启用堆叠
- };
- if (
- this.chartData.contract_Cp_curve_yData &&
- this.chartData.contract_Cp_curve_yData.length > 0
- ) {
- data.push({
- x: this.chartData.contract_Cp_curve_xData,
- y: this.chartData.contract_Cp_curve_yData,
- mode: "lines+markers",
- name: "合同功率曲线",
- line: {
- color: "red",
- width: 1, // 设置线条的宽度为1
- },
- marker: { color: "red", size: 4 },
- });
- }
- // 使用 Plotly.react 来更新图表
- Plotly.react(`bar-chart${this.index}`, data, layout, {
- responsive: true,
- });
- },
- // 切换图表类型
- toggleChartType() {
- this.chartType = this.chartType === "line" ? "bar" : "line"; // 切换图表类型
- this.drawChart(); // 重新绘制图表
- },
- // 更新图表颜色
- updateChartColor() {
- this.drawChart(); // 更新颜色后重新绘制图表
- },
- },
- };
- </script>
- <style scoped>
- /* 样式可以根据需求自定义 */
- </style>
|