fuliqi
2024-12-25 301532b5c1cad2c1d45080bfef86579b20486bf5
src/views/home/work-order/index.vue
@@ -5,13 +5,13 @@
        <div class="title-container">
          <h1>运维工单报表</h1>
          <div class="select-container">
            <el-select v-model="company" placeholder="请选择运维公司" @change="companyChange">
            <el-select v-model="params.unitId" placeholder="请选择运维公司" @change="showData">
              <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
              </el-option>
            </el-select>
          </div>
          <div class="date-container">
            <el-select v-model="dateRange" placeholder="请选择时间范围">
            <el-select v-model="params.dateType" placeholder="请选择时间范围" @change="showData">
              <el-option v-for="item in options2" :key="item.value" :label="item.label" :value="item.value">
              </el-option>
            </el-select>
@@ -27,68 +27,31 @@
<script>
import * as echarts from 'echarts';
import { ywUnitList, workOrder } from "@/api/platform/home";
let lineChart = null;
let observer = null;
export default {
  name: 'DataChart',
  data() {
    return {
      dateRange: '',
      company: '',
      options: [
        { label: '全部', value: '全部' },
        { label: 'XX运维公司1', value: 'XX运维公司1' },
        { label: 'XX运维公司2', value: 'XX运维公司2' },
        { label: 'XX运维公司3', value: 'XX运维公司3' },
        { label: 'XX运维公司4', value: 'XX运维公司4' },
      ],
      params: {
        dateType: '',
        unitId: ''
      },
      options: [],
      options2: [
        { label: '日工单数', value: '日工单数' },
        { label: '周工单数', value: '周工单数' },
        { label: '月工单数', value: '月工单数' },
        { label: '日工单数', value: 'day' },
        { label: '周工单数', value: 'week' },
        { label: '月工单数', value: 'month' },
      ],
      dataList: [
        {
          name: '全部',
          complete: { '1月': 10310, '2月': 23200, '3月': 16430, '4月': 24000, '5月': 31700 },
          waiting: { '1月': 1500, '2月': 2310, '3月': 14530, '4月': 231, '5月': 1235 },
          pending: { '1月': 2530, '2月': 2450, '3月': 4000, '4月': 4300, '5月': 3210 }
        },
        {
          name: 'XX运维公司1',
          complete: { '1月': 1000, '2月': 2131, '3月': 1233, '4月': 2132, '5月': 3211 },
          waiting: { '1月': 123, '2月': 213, '3月': 1412, '4月': 23, '5月': 123 },
          pending: { '1月': 200, '2月': 235, '3月': 300, '4月': 400, '5月': 500 }
        },
        {
          name: 'XX运维公司2',
          complete: { '1月': 213, '2月': 2131, '3月': 1233, '4月': 2132, '5月': 3211 },
          waiting: { '1月': 123, '2月': 123, '3月': 1412, '4月': 23, '5月': 123 },
          pending: { '1月': 135, '2月': 422, '3月': 425, '4月': 323, '5月': 400 }
        },
        {
          name: 'XX运维公司3',
          complete: { '1月': 1000, '2月': 2131, '3月': 1233, '4月': 2132, '5月': 3211 },
          waiting: { '1月': 123, '2月': 213, '3月': 123, '4月': 23, '5月': 123 },
          pending: { '1月': 534, '2月': 435, '3月': 422, '4月': 121, '5月': 313 }
        },
        {
          name: 'XX运维公司4',
          complete: { '1月': 1000, '2月': 2131, '3月': 1233, '4月': 2132, '5月': 3211 },
          waiting: { '1月': 123, '2月': 613, '3月': 1412, '4月': 2336, '5月': 123 },
          pending: { '1月': 123, '2月': 321, '3月': 131, '4月': 321, '5月': 421 }
        },
        {
          name: 'XX运维公司5',
          complete: { '1月': 1000, '2月': 433, '3月': 1233, '4月': 2132, '5月': 8886 },
          waiting: { '1月': 123, '2月': 213, '3月': 1412, '4月': 23, '5月': 123 },
          pending: { '1月': 333, '2月': 245, '3月': 233, '4月': 222, '5月': 111 }
        },
      ],
      dataList: [],
    }
  },
  methods: {
    initChart() {
      // 对 complete 对象的键进行排序
      const sortedKeys  = Object.keys(this.acitveData.complete)
          .sort(); // 按照字符串的字典序对键进行排序
      const option = {
        legend: {
          right: 'right',
@@ -126,13 +89,17 @@
        tooltip: {},
        xAxis: {
          type: 'category',
          data: Object.keys(this.acitveData.complete),
          data: sortedKeys,
          axisLabel: {
            interval: 0  // 强制显示所有标签
          },
          sortSeriesData: false
        },
        yAxis: {},
        series: [
          {
            name: '完成工单数',
            data: Object.entries(this.acitveData.complete).map(([key, value]) => value),
            data: sortedKeys.map(key => this.acitveData.complete[key]),
            type: 'line',
            itemStyle: {
              color: 'rgba(62, 144, 247, 1)'
@@ -140,7 +107,7 @@
          },
          {
            name: '待完成工单数',
            data: Object.entries(this.acitveData.waiting).map(([key, value]) => value),
            data: sortedKeys.map(key => this.acitveData.waiting[key]),
            type: 'line',
            itemStyle: {
              color: 'rgba(85, 192, 191, 1)'
@@ -148,7 +115,7 @@
          },
          {
            name: '待审批工单数',
            data: Object.entries(this.acitveData.pending).map(([key, value]) => value),
            data: sortedKeys.map(key => this.acitveData.pending[key]),
            type: 'line',
            itemStyle: {
              color: 'rgba(255, 165, 0, 1)'
@@ -160,13 +127,22 @@
    },
    companyChange() {
      this.acitveData = this.dataList.find((item) => {
        return item.name === this.company;
      });
      if (this.acitveData) {
    showData() {
      workOrder(this.params).then(res => {
        this.acitveData = res.data;
        if (Object.keys(this.acitveData).length === 0) {
          this.acitveData = {
            name: '',
            complete: {},
            waiting: {},
            pending: {}
          }
        }
        lineChart = echarts.init(this.$refs.chartContent);
        this.initChart();
      }
        this.observe();
      })
    },
    // 监听变化
@@ -187,11 +163,19 @@
  },
  mounted() {
    this.acitveData = this.dataList[0];
    this.company = this.acitveData.name;
    lineChart = echarts.init(this.$refs.chartContent);
    this.initChart();
    this.observe();
    ywUnitList().then(res => {
      this.options = res.data.data.map(item => {
        return {
          label: item.value,
          value: item.id
        }
      })
      if (this.params.unitId === '') {
        this.params.unitId = this.options[0].value;
      }
      this.params.dateType = this.options2[0].value;
      this.showData();
    })
  },
  beforeDestroy() {
    if (lineChart) {