| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537 | 
<template>  <div class="app-container">    <div class="search">      <el-date-picker v-model="table.getdataListParm.parammaps.inputDatetime" class="inputDatetime filter-item" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" style="width: 250px;" />      <el-select v-model="table.getdataListParm.parammaps.barid" placeholder="计划类型" class="filter-item" style="width: 120px;" clearable>        <el-option v-for="item in planTypeList" :key="item.id" :label="item.name" :value="item.id" />      </el-select>      <el-input v-model="table.getdataListParm.parammaps.drivername" placeholder="TMR名称" style="width: 180px;" class="filter-item" clearable />      <el-select v-model="table.getdataListParm.parammaps.barid" placeholder="工作状态" class="filter-item" style="width: 120px;" clearable>        <el-option v-for="item in workingConditionList" :key="item.id" :label="item.name" :value="item.id" />      </el-select>      <el-button class="successBorder" @click="handleSearch">查询</el-button>      <el-button class="successBorder" @click="handleRefresh">重置</el-button>    </div>    <el-row :gutter="20">      <el-col :span="8">        <h4>TMR设备列表</h4>        <div class="table">          <el-table            :key="table.tableKey"            v-loading="table.listLoading"            element-loading-text="给我一点时间"            :data="table.list"            border            fit            highlight-current-row            style="width: 100%;"            :row-style="rowStyle"            :cell-style="cellStyle"            class="elTable table-fixed"            height="870px"          >            <el-table-column label="开始时间" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A1 }}</span>              </template>            </el-table-column>            <el-table-column label="计划类型" min-width="90px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A2 }}</span>              </template>            </el-table-column>            <el-table-column label="描述" min-width="100px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A3 }}</span>              </template>            </el-table-column>            <el-table-column label="TMR名称" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A4 }}</span>              </template>            </el-table-column>          </el-table>        </div>      </el-col>      <el-col :span="16">        <h4>过程详情</h4>        <div class="detail">          <div class="detail-t">            过程时间:<span>{{ table.list2[0].A1 }}</span>;            工作状态:<span>{{ table.list2[0].A2 }}</span>          </div>          <div class="detail-b">            混料误差值:<span>{{ table.list2[0].A3 }}kg</span>;            混料误差率:<span>{{ table.list2[0].A4 }}</span>;            撒料误差值:<span>{{ table.list2[0].A5 }}kg</span>;            撒料误差率:<span>{{ table.list2[0].A6 }}</span>          </div>        </div>        <div class="Mixture">          <h4>混料详情</h4>          <el-table            :key="table2.tableKey"            v-loading="table2.listLoading"            element-loading-text="给我一点时间"            :data="table2.list"            border            fit            highlight-current-row            style="width: 100%;"            :row-style="rowStyle"            :cell-style="cellStyle"            class="elTable table-fixed"            height="200px"          >            <el-table-column label="操作编号" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A1 }}</span>              </template>            </el-table-column>            <el-table-column label="饲料名称" min-width="90px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A2 }}</span>              </template>            </el-table-column>            <el-table-column label="计划重量" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A3 }}</span>              </template>            </el-table-column>            <el-table-column label="实际重量" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A4 }}</span>              </template>            </el-table-column>            <el-table-column label="误差值" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A5 }}</span>              </template>            </el-table-column>            <el-table-column label="误差率" min-width="90px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A6 }}</span>              </template>            </el-table-column>            <el-table-column label="完成时间" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A7 }}</span>              </template>            </el-table-column>            <el-table-column label="过程时间" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A8 }}</span>              </template>            </el-table-column>            <el-table-column label="跳转方式" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A9 }}</span>              </template>            </el-table-column>            <el-table-column label="开始重量" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A10 }}</span>              </template>            </el-table-column>            <el-table-column label="结束重量" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A11 }}</span>              </template>            </el-table-column>          </el-table>        </div>        <div class="SpreadingMaterials">          <h4>撒料详情</h4>          <el-table            :key="table3.tableKey"            v-loading="table3.listLoading"            element-loading-text="给我一点时间"            :data="table3.list"            border            fit            highlight-current-row            style="width: 100%;"            :row-style="rowStyle"            :cell-style="cellStyle"            class="elTable table-fixed"            height="200px"          >            <el-table-column label="操作编号" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A1 }}</span>              </template>            </el-table-column>            <el-table-column label="饲料名称" min-width="90px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A2 }}</span>              </template>            </el-table-column>            <el-table-column label="计划重量" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A3 }}</span>              </template>            </el-table-column>            <el-table-column label="实际重量" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A4 }}</span>              </template>            </el-table-column>            <el-table-column label="误差值" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A5 }}</span>              </template>            </el-table-column>            <el-table-column label="误差率" min-width="90px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A6 }}</span>              </template>            </el-table-column>            <el-table-column label="完成时间" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A7 }}</span>              </template>            </el-table-column>            <el-table-column label="过程时间" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A8 }}</span>              </template>            </el-table-column>            <el-table-column label="跳转方式" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A9 }}</span>              </template>            </el-table-column>            <el-table-column label="开始重量" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A10 }}</span>              </template>            </el-table-column>            <el-table-column label="结束重量" min-width="110px" align="center">              <template slot-scope="scope">                <span>{{ scope.row.A11 }}</span>              </template>            </el-table-column>          </el-table>        </div>        <div class="ControlChart">          <h4>监控图</h4>          <div style="font-size:14px;color:#666;margin:0 auto;position: relative;">            <span style="line-height:30px;position:absolute;right:190px"><i class="el-icon-caret-top" style="color:#c23531;line-height:30px;font-size:30px;" /><b style="line-height:32px;">开始重量</b></span>            <span style="line-height:30px;position:absolute;right:100px"><i class="el-icon-caret-top" style="color:#2f4554;line-height:30px;font-size:30px;" /><b style="line-height:32px;">结束重量</b></span>          </div>          <div id="chartLine" style="width: 100%;height:200px;" /></div>      </el-col>    </el-row>  </div></template><script>import echarts from 'echarts'require('echarts/theme/macarons')import { GetDataByName } from '@/api/common'import Cookies from 'js-cookie'import { parseTime } from '@/utils/index.js'export default {  name: 'ProcessAnalysis',  data() {    return {      requestParams: [        { name: 'getBarListEnable', offset: 0, pagecount: 0, parammaps: { 'pastureid': Cookies.get('pastureid') }},        { name: 'getCowclassListEnable', offset: 0, pagecount: 0, parammaps: { 'pastureid': Cookies.get('pastureid') }}      ],      planTypeList: [{ id: '0', name: '预混计划' }, { id: '1', name: '撒料计划' }, { id: '2', name: '剩料计划' }], // 计划类型      workingConditionList: [{ id: '0', name: '运行中' }, { id: '1', name: '已完成' }], // 工作状态      table: {        getdataListParm: {          name: 'getBarmilkList',          page: 1,          offset: 1,          pagecount: 10,          returntype: 'Map',          parammaps: {            pastureid: Cookies.get('pastureid'),            barid: '',            cowclass: '',            startTime: '',            stopTime: '',            inputDatetime: ''          }        },        tableKey: 0,        list: [          { 'id': 1, 'A1': '2020-09-27 06:34:09', 'A2': '撒料计划', 'A3': '', 'A4': '1' },          { 'id': 2, 'A1': '2020-09-27 06:34:25', 'A2': '撒料计划', 'A3': '', 'A4': '4' },          { 'id': 3, 'A1': '2020-09-27 06:54:04', 'A2': '撒料计划', 'A3': '', 'A4': '4' },          { 'id': 4, 'A1': '2020-09-27 07:11:06', 'A2': '撒料计划', 'A3': '', 'A4': '1' },          { 'id': 5, 'A1': '2020-09-27 07:11:18', 'A2': '撒料计划', 'A3': '', 'A4': '4' },          { 'id': 6, 'A1': '2020-09-27 07:28:13', 'A2': '撒料计划', 'A3': '', 'A4': '4' },          { 'id': 7, 'A1': '2020-09-27 07:43:35', 'A2': '撒料计划', 'A3': '', 'A4': '1' },          { 'id': 8, 'A1': '2020-09-27 07:52:52', 'A2': '撒料计划', 'A3': '', 'A4': '4' },          { 'id': 9, 'A1': '2020-09-27 08:08:30', 'A2': '撒料计划', 'A3': '', 'A4': '4' }        ],        list2: [          { 'id': 1, 'A1': '00:36:48', 'A2': '已完成', 'A3': '33.45', 'A4': '11.66%', 'A5': '33.52', 'A6': '6.29%' }        ],        total: 0,        listLoading: true      },      // 混料详情      table2: {        getdataListParm: {          name: 'getBarmilkList',          page: 1,          offset: 1,          pagecount: 10,          returntype: 'Map',          parammaps: {            pastureid: Cookies.get('pastureid'),            barid: '',            cowclass: '',            startTime: '',            stopTime: '',            inputDatetime: ''          }        },        tableKey: 0,        list: [          { 'id': 1, 'A1': '1', 'A2': '进口燕麦草', 'A3': '149.6', 'A4': '150', 'A5': '0.4', 'A6': '0.27%', 'A7': '06:37:28', 'A8': '00:03:19', 'A9': '自动跳转', 'A10': '-8', 'A11': '142' },          { 'id': 2, 'A1': '2', 'A2': '1号苜蓿', 'A3': '199.46', 'A4': '196', 'A5': '3.46', 'A6': '1.7%', 'A7': '06:38:59', 'A8': '00:01:31', 'A9': '自动跳转', 'A10': '142', 'A11': '338' },          { 'id': 3, 'A1': '3', 'A2': '棉籽', 'A3': '99.73', 'A4': '101', 'A5': '1.27', 'A6': '1.3%', 'A7': '06:40:08', 'A8': '00:01:09', 'A9': '自动跳转', 'A10': '337', 'A11': '438' },          { 'id': 4, 'A1': '4', 'A2': '青贮苜蓿', 'A3': '249.33', 'A4': '242', 'A5': '7.33', 'A6': '2.9%', 'A7': '06:41:40', 'A8': '00:01:32', 'A9': '自动跳转', 'A10': '438', 'A11': '680' },          { 'id': 5, 'A1': '5', 'A2': '湿储玉米', 'A3': '279.24', 'A4': '280', 'A5': '0.76', 'A6': '0.27%', 'A7': '06:43:09', 'A8': '00:01:29', 'A9': '自动跳转', 'A10': '678', 'A11': '958' },          { 'id': 6, 'A1': '6', 'A2': '啤酒糟', 'A3': '149.6', 'A4': '144', 'A5': '5.6', 'A6': '3.7%', 'A7': '06:44:44', 'A8': '00:01:35', 'A9': '自动跳转', 'A10': '856', 'A11': '1100' },          { 'id': 7, 'A1': '7', 'A2': '青贮玉米', 'A3': '1396.22', 'A4': '1387', 'A5': '9.22', 'A6': '0.66%', 'A7': '06:47:40', 'A8': '00:02:56', 'A9': '自动跳转', 'A10': '1099', 'A11': '2486' },          { 'id': 8, 'A1': '8', 'A2': '新产料', 'A3': '747.97', 'A4': '749', 'A5': '1.03', 'A6': '0.14%', 'A7': '06:49:20', 'A8': '00:01:40', 'A9': '自动跳转', 'A10': '2487', 'A11': '3236' },          { 'id': 9, 'A1': '9', 'A2': '水', 'A3': '598.38', 'A4': '594', 'A5': '4.38', 'A6': '0.73%', 'A7': '06:53:14', 'A8': '00:03:54', 'A9': '自动跳转', 'A10': '3236', 'A11': '3830' }        ],        total: 0,        listLoading: true      },      // 撒料详情      table3: {        getdataListParm: {          name: 'getBarmilkList',          page: 1,          offset: 1,          pagecount: 10,          returntype: 'Map',          parammaps: {            pastureid: Cookies.get('pastureid'),            barid: '',            cowclass: '',            startTime: '',            stopTime: '',            inputDatetime: ''          }        },        tableKey: 0,        list: [          { 'id': 1, 'A1': '101', 'A2': '17号', 'A3': '802.38', 'A4': '798', 'A5': '4.38', 'A6': '0.55%', 'A7': '06:59:03', 'A8': '00:05:49', 'A9': '自动跳转', 'A10': '3830', 'A11': '3032' },          { 'id': 2, 'A1': '102', 'A2': '5号南', 'A3': '1808.86', 'A4': '1801', 'A5': '7.86', 'A6': '0.43%', 'A7': '07:02:01', 'A8': '00:02:58', 'A9': '自动跳转', 'A10': '3033', 'A11': '1232' },          { 'id': 3, 'A1': '103', 'A2': '3南东', 'A3': '529.62', 'A4': '524', 'A5': '5.62', 'A6': '1.06%', 'A7': '07:05:20', 'A8': '00:03:19', 'A9': '自动跳转', 'A10': '1232', 'A11': '708' },          { 'id': 4, 'A1': '104', 'A2': '3南西', 'A3': '356.18', 'A4': '352', 'A5': '4.18', 'A6': '1.17%', 'A7': '07:07:10', 'A8': '00:01:50', 'A9': '自动跳转', 'A10': '708', 'A11': '356 ' },          { 'id': 5, 'A1': '105', 'A2': '1号南', 'A3': '372.48', 'A4': '361', 'A5': '11.48', 'A6': '3.08%', 'A7': '07:10:57', 'A8': '00:03:47', 'A9': '自动跳转', 'A10': '355', 'A11': '-6' }        ],        total: 0,        listLoading: true      },      chartLine: null,      chartLine_data1: {        data1: ['06:34:10', '06:34:19', '06:35:44', '06:37:59', '06:40:08', '06:42:14', '06:44:29', '06:46:45', '06:49:00', '06:51:15', '06:53:30', '06:56:00', '06:58:31', '07:00:46', '07:03:01', '07:05:20', '07:07:31', '07:10:01'],        data2: [141.6, 341.46, 437.73, 687.33, 959.24, 1107.6, 2496.22, 3233.97, 3834.38, 3027.62, 1223.14, 702.38, 351.82, -16.48],        data3: [142, 338, 438, 678, 680, 958, 1100, 2486, 3236, 3830, 3032, 1232, 708, 356]      },      rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },      cellStyle: { padding: 0 + 'px' }    }  },  created() {    this.getList()  },  mounted() {    this.roadChartLine1(this.chartLine_data1)  },  methods: {    getList() {      this.table.listLoading = true      GetDataByName(this.table.getdataListParm).then(response => {        console.log('table数据', response.data.list)        if (response.data.list !== null) {          // this.table.list = response.data.list          this.getList2()          this.getList3()        } else {          this.table.list = []        }        setTimeout(() => {          this.table.listLoading = false        }, 100)      })    },    handleSearch() {      console.log('点击了查询')      if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {        this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')        this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')      } else {        this.table.getdataListParm.parammaps.inputDatetime = ''        this.table.getdataListParm.parammaps.startTime = ''        this.table.getdataListParm.parammaps.stopTime = ''      }      this.table.getdataListParm.offset = 1      this.getList()    },    handleRefresh() {      console.log('点击了重置')      this.table.getdataListParm.parammaps.barid = ''      this.table.getdataListParm.parammaps.cowclass = ''      this.table.getdataListParm.parammaps.startTime = ''      this.table.getdataListParm.parammaps.stopTime = ''      this.table.getdataListParm.parammaps.inputDatetime = ''      this.table.getdataListParm.offset = 1      this.getList()    },    getList2() {      this.table2.listLoading = true      GetDataByName(this.table2.getdataListParm).then(response => {        console.log('table数据', response.data.list)        if (response.data.list !== null) {          // this.table2.list = response.data.list        } else {          this.table2.list = []        }        setTimeout(() => {          this.table2.listLoading = false        }, 100)      })    },    getList3() {      this.table3.listLoading = true      GetDataByName(this.table3.getdataListParm).then(response => {        console.log('table数据', response.data.list)        if (response.data.list !== null) {          // this.table3.list = response.data.list        } else {          this.table3.list = []        }        setTimeout(() => {          this.table3.listLoading = false        }, 100)      })    },    roadChartLine1(chartLine_data1) {      if (this.chartLine != null) {        this.chartLine.dispose()      }      this.chartLine = echarts.init(document.getElementById('chartLine'))      var option = {        title: {          text: '',          subtext: ''        },        color: ['#c23531', '#2f4554'], // 关键加上这句话,legend的颜色和折线的自定义颜色就一致了        legend: {          icon: 'rectangle',          data: ['设计重量', '实际重量'],          // right: '20%',          textStyle: {            fontSize: 12,            color: '#666'          }        },        /* grid:{y:15},*/        tooltip: {          trigger: 'axis'        },        calculable: true,        yAxis: [          {            type: 'value',            splitLine: { show: false }, // 去除网格线            axisLabel: {              show: true,              textStyle: {                color: '#666' // 这里用参数代替了              }            }          }        ],        xAxis: [          {            type: 'category',            splitLine: { show: false }, // 去除网格线            data: chartLine_data1.data1,            axisLabel: {              show: true,              textStyle: {                color: '#666' // 这里用参数代替了              }            }          }        ],        series: [          {            name: '设计重量',            type: 'line',            barWidth: '37',            data: chartLine_data1.data2,            // data: [820, 932, 901, 934, 1290, 1330, 1320],            smooth: true,            symbol: 'triangle', symbolSize: 10,            itemStyle: {              normal: {                lineStyle: { color: '#c23531' },                color: function(param) {                  const colorList = ['#2f4554', '#c23531']                  let x = ''                  param.dataIndex % 2 == 0 ? x = 1 : x = 2                  if (x == '1') {                    return colorList[0]                  } else {                    return colorList[1]                  }                }              }            }          },          {            name: '实际重量',            type: 'line',            step: 'end',            data: chartLine_data1.data3,            barWidth: '37',            itemStyle: {              normal: {                lineStyle: { color: '#2f4554' }              }            }          }        ]      }      this.chartLine.setOption(option)      window.onresize = function() {        this.chartLine.resize()      }    }  }}</script><style lang="scss" scoped>  .search{padding-top:10px;clear: both;}  .table{margin-top:10px;}  .detail{    height:84px;border: 1px solid #EBEEF5;padding-left:10px;font:16px/32px '';color:#333;    .detail-t{margin-top: 10px;}    .detail-b{margin-bottom: 10px;}  }</style>
 |