12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280 |
- <template>
- <div class="app-container">
- <div class="search">
- <el-date-picker v-model="tab.table.getdataListParm.parammaps.date" :clearable="false" type="date" placeholder="选择日期" style="width: 150px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" />
- <el-button class="successBorder" @click="handleSearch">查询</el-button>
- <el-button class="export" @click="handleDownload">导出</el-button>
- </div>
- <div class="table">
- <el-table
- :key="tab.table.tableKey"
- v-loading="tab.table.listLoading"
- element-loading-text="给我一点时间"
- :data="tab.table.list"
- border
- fit
- highlight-current-row
- style="width: 100%;"
- :row-style="rowStyle"
- :cell-style="tableCellStyle"
- class="elTable table-fixed"
- >
- <el-table-column label="牧场" min-width="110px" align="center">
- <template slot-scope="{row}">
- <a @click="clickPasture(row)">{{ row.pasturename }}</a>
- </template>
- </el-table-column>
- <el-table-column label="实际牛头数" min-width="90px" align="center" prop="实际牛头数" />
- <el-table-column label="应混料量(kg)" min-width="90px" align="center" prop="应混料量" />
- <el-table-column label="实际混料量(kg)" min-width="90px" align="center" prop="实际混料量" />
- <el-table-column label="撒料量(kg)" min-width="90px" align="center" prop="撒料量" />
- <el-table-column label="混料时间" min-width="90px" align="center" prop="混料时间" />
- <el-table-column label="转投剩料量(kg)" min-width="90px" align="center" prop="转投剩料量" />
- <el-table-column label="今日剩料量(kg)" min-width="90px" align="center" prop="今日剩料量" />
- <el-table-column label="剩料率(%)" min-width="90px" align="center" prop="剩料率" />
- <el-table-column label="TMR干物质(%)" min-width="90px" align="center" prop="TMR干物质" />
- <el-table-column label="配方干物质采食量(kg/头)" min-width="90px" align="center" prop="配方干物质采食量" />
- <el-table-column label="实际干物质采食量(kg/头)" min-width="90px" align="center" prop="实际干物质采食量" />
- <el-table-column label="采食率(%)" min-width="90px" align="center" prop="采食率" />
- <el-table-column label="配方成本(元/头)" min-width="90px" align="center" prop="配方成本" />
- <el-table-column label="实际成本(元/头)" min-width="90px" align="center" prop="实际成本" />
- <el-table-column label="产奶量(kg/头)" min-width="90px" align="center" prop="产奶量" />
- <el-table-column label="饲料转化率" min-width="90px" align="center" prop="饲料转化率" />
- <el-table-column label="公斤奶饲料成本" min-width="90px" align="center" prop="公斤奶饲料成本" />
- </el-table>
- <!-- <pagination v-show="tab.table.total>=0" :total="tab.table.total" :page.sync="tab.table.getdataListParm.offset" :limit.sync="tab.table.getdataListParm.pagecount" @pagination="getList" /> -->
- </div>
- <div id="chartDate" style="height: 90px;" />
- <div class="AnalysisChart">
- <el-row :gutter="10">
- <el-col :span="2"><h4>图表查询时间:</h4></el-col>
- <el-col :span="22" style="margin-top: 10px;">
- <el-date-picker v-model="tab.chartDate" :clearable="false" style="width: 250px;margin-right: 10px;" class="inputDatetime filter-item" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" :picker-options="pickerOptions" />
- <el-button class="successBorder" @click="handleChartDate">确认</el-button>
- </el-col>
- </el-row>
- <el-row :gutter="10">
- <!-- 泌乳牛干物质采食量 -->
- <el-col :span="12" style="position: relative;">
- <h4 style="text-align:center;">泌乳牛干物质采食量</h4>
- <div>
- <el-date-picker v-model="tab.chart1.getdataListParm.parammaps.inputDatetime" style="width: 250px;" class="inputDatetime" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" :clearable="false" :picker-options="pickerOptions" @change="changeChartDate('chart1')" />
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleExport('chart1')">导出</el-button>
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleTable('chart1')">切换表格</el-button>
- </div>
- <div id="chartLine1" style="width:100%;height:430px;" />
- <div v-if="tab.chart1.isTable" class="table" style="width: 100%;position: absolute;top:19px;right: 0;">
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleExport('chart1')">导出</el-button>
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleChart('chart1')">切换图表</el-button>
- <el-table
- :key="tab.chart1.table.tableKey"
- v-loading="tab.chart1.table.listLoading"
- element-loading-text="给我一点时间"
- :data="tab.chart1.table.list"
- border
- fit
- highlight-current-row
- style="width: 100%;"
- height="430"
- :row-style="rowStyle"
- :cell-style="cellStyle"
- class="elTable table-fixed"
- >
- <el-table-column label="日期" sortable min-width="110px" align="center" prop="日期" />
- <el-table-column label="泌乳牛采食量(kg)" sortable min-width="110px" align="center" prop="field1" />
- <el-table-column label="泌乳牛产奶量(kg)" sortable min-width="110px" align="center" prop="field2" />
- </el-table>
- </div>
- </el-col>
- <!-- 剩料率 -->
- <el-col :span="12" style="position: relative;">
- <h4 style="text-align:center;">剩料率</h4>
- <div>
- <el-date-picker v-model="tab.chart2.getdataListParm.parammaps.inputDatetime" style="width: 250px;" class="inputDatetime" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" :clearable="false" :picker-options="pickerOptions" @change="changeChartDate('chart2')" />
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleExport('chart2')">导出</el-button>
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleTable('chart2')">切换表格</el-button>
- </div>
- <div id="chartLine2" style="width:100%;height:430px;" />
- <div v-if="tab.chart2.isTable" class="table" style="width: 100%;z-index:1;position: absolute;top:19px;right: 0;">
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleExport('chart2')">导出</el-button>
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleChart('chart2')">切换图表</el-button>
- <el-table
- :key="tab.chart2.table.tableKey"
- v-loading="tab.chart2.table.listLoading"
- element-loading-text="给我一点时间"
- :data="tab.chart2.table.list"
- border
- fit
- highlight-current-row
- style="width: 100%;"
- height="430"
- :row-style="rowStyle"
- :cell-style="cellStyle"
- class="elTable table-fixed"
- >
- <el-table-column label="日期" sortable min-width="110px" align="center" prop="日期" />
- <el-table-column label="栏舍名称" sortable min-width="110px" align="center" prop="名称" />
- <el-table-column label="剩料量" sortable min-width="110px" align="center" prop="剩料量" />
- <el-table-column label="撒料量" sortable min-width="110px" align="center" prop="撒料量" />
- <el-table-column label="剩料率" sortable min-width="110px" align="center" prop="准确率" />
- </el-table>
- </div>
- </el-col>
- </el-row>
- <el-row :gutter="10">
- <!-- 混料时间统计 -->
- <el-col :span="12" style="position: relative;">
- <h4 style="text-align:center;">混料时间统计</h4>
- <div>
- <el-date-picker v-model="tab.chart3.getdataListParm.parammaps.inputDatetime" style="width: 250px;" class="inputDatetime" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" :clearable="false" :picker-options="pickerOptions" @change="changeChartDate('chart3')" />
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleExport('chart3')">导出</el-button>
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleTable('chart3')">切换表格</el-button>
- </div>
- <div id="chartLine3" style="width:100%;height:430px;" />
- <div v-if="tab.chart3.isTable" class="table" style="width: 100%;position: absolute;top:19px;right: 0;">
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleExport('chart3')">导出</el-button>
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleChart('chart3')">切换图表</el-button>
- <el-table
- :key="tab.chart3.table.tableKey"
- v-loading="tab.chart3.table.listLoading"
- element-loading-text="给我一点时间"
- :data="tab.chart3.table.list"
- border
- fit
- highlight-current-row
- style="width: 100%;"
- height="430"
- :row-style="rowStyle"
- :cell-style="cellStyle"
- class="elTable table-fixed"
- >
- <el-table-column label="日期" min-width="110px" align="center" prop="日期" />
- <el-table-column label="混料时间(分钟)" min-width="110px" align="center" prop="field1" />
- </el-table>
- </div>
- </el-col>
- <!-- 转化率 -->
- <el-col :span="12" style="position: relative;">
- <h4 style="text-align:center;">转化率</h4>
- <div>
- <el-date-picker v-model="tab.chart4.getdataListParm.parammaps.inputDatetime" style="width: 250px;" class="inputDatetime" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" :clearable="false" :picker-options="pickerOptions" @change="changeChartDate('chart4')" />
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleExport('chart4')">导出</el-button>
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleTable('chart4')">切换表格</el-button>
- </div>
- <div id="chartLine4" style="width:100%;height:430px;" />
- <div v-if="tab.chart4.isTable" class="table" style="width: 100%;z-index:1;position: absolute;top:19px;right: 0;">
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleExport('chart4')">导出</el-button>
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleChart('chart4')">切换图表</el-button>
- <el-table
- :key="tab.chart4.table.tableKey"
- v-loading="tab.chart4.table.listLoading"
- element-loading-text="给我一点时间"
- :data="tab.chart4.table.list"
- border
- fit
- highlight-current-row
- style="width: 100%;"
- height="430"
- :row-style="rowStyle"
- :cell-style="cellStyle"
- class="elTable table-fixed"
- >
- <el-table-column label="日期" min-width="110px" align="center" prop="日期" />
- <el-table-column label="配方名称" min-width="110px" align="center" prop="名称" />
- <el-table-column label="饲料转化率" min-width="110px" align="center" prop="准确率" />
- </el-table>
- </div>
- </el-col>
- </el-row>
- <el-row :gutter="10">
- <!-- 成本分析 -->
- <el-col :span="24" style="position: relative;">
- <h4 style="text-align:center;">成本分析</h4>
- <div>
- <el-date-picker v-model="tab.chart5.getdataListParm.parammaps.inputDatetime" style="width: 250px;" class="inputDatetime" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" :clearable="false" :picker-options="pickerOptions" @change="changeChartDate('chart5')" />
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleExport('chart5')">导出</el-button>
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleTable('chart5')">切换表格</el-button>
- </div>
- <div id="chartLine5" style="width:100%;height:430px;" />
- <div v-if="tab.chart5.isTable" class="table" style="width: 100%;z-index:1;position: absolute;top:19px;right: 0;">
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleExport('chart5')">导出</el-button>
- <el-button type="text" style="float: right;margin-right: 5px;" @click="handleChart('chart5')">切换图表</el-button>
- <el-table
- :key="tab.chart5.table.tableKey"
- v-loading="tab.chart5.table.listLoading"
- element-loading-text="给我一点时间"
- :data="tab.chart5.table.list"
- border
- fit
- highlight-current-row
- style="width: 100%;"
- height="430"
- :row-style="rowStyle"
- :cell-style="cellStyle"
- class="elTable table-fixed"
- >
- <el-table-column label="日期" min-width="110px" align="center" prop="日期" />
- <el-table-column label="牲畜类别" min-width="110px" align="center" prop="名称" />
- <el-table-column label="公斤奶饲料成本(元)" min-width="110px" align="center" prop="准确率" />
- </el-table>
- </div>
- </el-col>
- </el-row>
- </div>
- <el-dialog :title="textMap[pasture.dialogStatus]" :destroy-on-close="true" :visible.sync="pasture.dialogFormVisible" :close-on-click-modal="false" width="90%">
- <div class="app-pasture">
- <div class="search">
- <span style="margin-left: 10px;">统计类型:</span>
- <el-radio v-model="pasture.radio" label="1" @change="changeRadio">配方</el-radio>
- <el-radio v-model="pasture.radio" label="2" @change="changeRadio">栏舍</el-radio>
- <el-radio v-model="pasture.radio" label="3" @change="changeRadio">牲畜类别</el-radio>
- <el-input v-if="pasture.isFormulaName" v-model="pasture.table.getdataListParm.parammaps.ftname" class="filter-item" style="width: 245px;" placeholder="配方模板" />
- <el-input v-if="pasture.isHouseName" v-model="pasture.table.getdataListParm.parammaps.barname" class="filter-item" style="width: 150px;" placeholder="栏舍" />
- <el-input v-if="pasture.isHouseName" v-model="pasture.table.getdataListParm.parammaps.ftname" class="filter-item" style="width: 150px;" placeholder="配方模板" />
- <el-input v-if="pasture.isLivestockType" v-model="pasture.table.getdataListParm.parammaps.cowclass" class="filter-item" style="width: 150px;" placeholder="牲畜类别" />
- <el-button class="successBorder" @click="handlePastureSearch">查询</el-button>
- </div>
- <div class="table">
- <el-table
- :key="pasture.table.tableKey"
- v-loading="pasture.table.listLoading"
- element-loading-text="给我一点时间"
- :data="pasture.table.list"
- border
- fit
- highlight-current-row
- style="width: 100%;"
- :row-style="rowStyle"
- :cell-style="cellStyle"
- class="elTable table-fixed"
- >
- <el-table-column v-if="pasture.isFormulaName" label="配方模板" min-width="110px" align="center" prop="配方模板" />
- <el-table-column v-if="pasture.isHouseName" label="栏舍" min-width="110px" align="center" prop="栏舍" />
- <el-table-column v-if="pasture.isHouseName" label="配方模板" min-width="110px" align="center" prop="配方模板" />
- <el-table-column v-if="pasture.isLivestockType" label="牲畜类别" min-width="110px" align="center" prop="牲畜类别" />
- <el-table-column label="实际牛头数" min-width="110px" align="center" prop="实际牛头数" />
- <el-table-column label="应混料量(kg)" min-width="110px" align="center" prop="应混料量" />
- <el-table-column label="实际混料量(kg)" min-width="110px" align="center" prop="实际混料量" />
- <el-table-column label="撒料量(kg)" min-width="110px" align="center" prop="撒料量" />
- <el-table-column label="混料时间" min-width="110px" align="center" prop="混料时间" />
- <el-table-column label="转投剩料量(kg)" min-width="110px" align="center" prop="转投剩料量" />
- <el-table-column label="今日剩料量(kg)" min-width="110px" align="center" prop="今日剩料量" />
- <el-table-column label="剩料率(%)" min-width="110px" align="center" prop="剩料率" />
- <el-table-column label="TMR干物质(%)" min-width="110px" align="center" prop="TMR干物质" />
- <el-table-column label="配方干物质采食量(kg/头)" min-width="110px" align="center" prop="配方干物质采食量" />
- <el-table-column label="实际干物质采食量(kg/头)" min-width="110px" align="center" prop="实际干物质采食量" />
- <el-table-column label="采食率(%)" min-width="110px" align="center" prop="采食率" />
- <el-table-column label="配方成本(元/头)" min-width="110px" align="center" prop="配方成本" />
- <el-table-column label="实际成本(元/头)" min-width="110px" align="center" prop="实际成本" />
- <el-table-column label="产奶量(kg/头)" min-width="110px" align="center" prop="产奶量" />
- <el-table-column label="饲料转化率" min-width="110px" align="center" prop="饲料转化率" />
- <el-table-column label="公斤奶饲料成本" min-width="110px" align="center" prop="公斤奶饲料成本" />
- </el-table>
- </div>
- </div>
- <div slot="footer" class="dialog-footer" style="bottom: 10px;">
- <el-button class="cancelClose" @click="pasture.dialogFormVisible = false; ">关闭</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import echarts from 'echarts'
- require('echarts/theme/macarons')
- import { GetDataByName, GetReportform } from '@/api/common'
- import Cookies from 'js-cookie'
- import { parseTime } from '@/utils/index.js'
- import Pagination from '@/components/Pagination'
- import { json2excel } from '@/utils/index.js'
- import { MessageBox } from 'element-ui'
- export default {
- name: 'GroupFeedingEfficiency',
- components: { Pagination },
- data() {
- return {
- pickerMinDate: '',
- pickerOptions: {
- onPick: ({ maxDate, minDate }) => {
- this.pickerMinDate = minDate.getTime()
- if (maxDate) {
- this.pickerMinDate = ''
- }
- },
- // 限制不能选择今天之后的日期
- disabledDate: (time) => {
- if (this.pickerMinDate !== '') {
- const one = 31 * 24 * 3600 * 1000
- const minTime = this.pickerMinDate - one
- let maxTime = this.pickerMinDate + one
- if (maxTime > new Date()) {
- maxTime = new Date()
- }
- return time.getTime() < minTime || time.getTime() > maxTime
- }
- return time.getTime() > Date.now()
- }
- },
- tab: {
- chartDate: [],
- table: {
- getdataListParm: {
- name: 'getFeedEfficiencyJT',
- page: 1,
- offset: 1,
- pagecount: '',
- returntype: 'Map',
- parammaps: {
- pastureid: Cookies.get('pastureid'),
- date: parseTime(new Date(), '{y}-{m}-{d}'),
- ftname: '',
- barname: '',
- cowclass: ''
- }
- },
- tableKey: 1,
- list: [],
- total: 0,
- listLoading: true,
- temp: {}
- },
- chart1: {
- chartLine: null,
- chartLine_data: {},
- getdataListParm: {
- name: 'getFeedEffMRJT',
- page: 1,
- offset: 1,
- pagecount: '',
- returntype: 'Map',
- parammaps: {
- pastureid: Cookies.get('pastureid'),
- startTime: parseTime(new Date(), '{y}-{m}-{d}'),
- stopTime: parseTime(new Date(), '{y}-{m}-{d}'),
- inputDatetime: [new Date(), new Date()]
- }
- },
- tableKey: 1,
- list: [],
- total: 0,
- listLoading: true,
- isChart: true,
- isTable: false,
- table: {
- tableKey: 1,
- list: [],
- total: 0,
- listLoading: false
- }
- },
- chart2: {
- chartLine: null,
- chartLine_data: {},
- getdataListParm: {
- name: 'getFeedEffSLJT',
- page: 1,
- offset: 1,
- pagecount: '',
- returntype: 'Map',
- parammaps: {
- pastureid: Cookies.get('pastureid'),
- startTime: parseTime(new Date(), '{y}-{m}-{d}'),
- stopTime: parseTime(new Date(), '{y}-{m}-{d}'),
- inputDatetime: [new Date(), new Date()]
- }
- },
- tableKey: 1,
- list: [],
- total: 0,
- listLoading: true,
- chart2Data3: [],
- isChart: true,
- isTable: false,
- table: {
- tableKey: 1,
- list: [],
- total: 0,
- listLoading: false
- }
- },
- chart3: {
- chartLine: null,
- chartLine_data: {},
- getdataListParm: {
- name: 'getFeedEffHLJT',
- page: 1,
- offset: 1,
- pagecount: '',
- returntype: 'Map',
- parammaps: {
- pastureid: Cookies.get('pastureid'),
- startTime: parseTime(new Date(), '{y}-{m}-{d}'),
- stopTime: parseTime(new Date(), '{y}-{m}-{d}'),
- inputDatetime: [new Date(), new Date()]
- }
- },
- tableKey: 1,
- list: [],
- total: 0,
- listLoading: true,
- isChart: true,
- isTable: false,
- table: {
- tableKey: 1,
- list: [],
- total: 0,
- listLoading: false
- }
- },
- chart4: {
- chartLine: null,
- chartLine_data: {},
- getdataListParm: {
- name: 'getFeedEffZHJT',
- page: 1,
- offset: 1,
- pagecount: '',
- returntype: 'Map',
- parammaps: {
- pastureid: Cookies.get('pastureid'),
- startTime: parseTime(new Date(), '{y}-{m}-{d}'),
- stopTime: parseTime(new Date(), '{y}-{m}-{d}'),
- inputDatetime: [new Date(), new Date()]
- }
- },
- tableKey: 1,
- list: [],
- total: 0,
- listLoading: true,
- chart4Data3: [],
- isChart: true,
- isTable: false,
- table: {
- tableKey: 1,
- list: [],
- total: 0,
- listLoading: false
- }
- },
- chart5: {
- chartLine: null,
- chartLine_data: {},
- getdataListParm: {
- name: 'getFeedEffCBAllJT',
- page: 1,
- offset: 1,
- pagecount: '',
- returntype: 'Map',
- parammaps: {
- pastureid: Cookies.get('pastureid'),
- startTime: parseTime(new Date(), '{y}-{m}-{d}'),
- stopTime: parseTime(new Date(), '{y}-{m}-{d}'),
- inputDatetime: [new Date(), new Date()]
- }
- },
- tableKey: 1,
- list: [],
- total: 0,
- listLoading: true,
- chart5Data3: [],
- isChart: true,
- isTable: false,
- table: {
- tableKey: 1,
- list: [],
- total: 0,
- listLoading: false
- }
- }
- },
- pasture: {
- dialogFormVisible: false,
- dialogStatus: '',
- radio: '1',
- isFormulaName: true, // 配方名称
- isHouseName: false, // 栏舍名称
- isLivestockType: false, // 牲畜类别
- table: {
- getdataListParm: {
- name: 'getFeedEfficiencyFT',
- page: 1,
- offset: 1,
- pagecount: '',
- returntype: 'Map',
- parammaps: {
- pastureid: Cookies.get('pastureid'),
- date: parseTime(new Date(), '{y}-{m}-{d}'),
- ftname: '',
- barname: '',
- cowclass: ''
- }
- },
- tableKey: 1,
- list: [],
- total: 0,
- listLoading: true,
- temp: {}
- }
- },
- textMap: {
- pasture: '牧场'
- },
- rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
- cellStyle: { padding: 0 + 'px' }
- }
- },
- created() {
- this.getList()
- this.getTimeFn()
- this.getChart1()
- this.getChart2()
- this.getChart3()
- this.getChart4()
- this.getChart5()
- },
- mounted() {
- },
- methods: {
- getTimeFn() {
- const that = this
- const end = new Date()
- const start = new Date()
- const start2 = new Date()
- start2.setTime(start2.getTime() - 3600 * 1000 * 24 * 1)
- that.tab.table.getdataListParm.parammaps.date = parseTime(start2, '{y}-{m}-{d}')
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 7)
- that.tab.chartDate[0] = parseTime(start, '{y}-{m}-{d}')
- that.tab.chartDate[1] = parseTime(end, '{y}-{m}-{d}')
- that.tab.chart1.getdataListParm.parammaps.inputDatetime[0] = parseTime(start, '{y}-{m}-{d}')
- that.tab.chart1.getdataListParm.parammaps.inputDatetime[1] = parseTime(end, '{y}-{m}-{d}')
- that.tab.chart1.getdataListParm.parammaps.startTime = parseTime(start, '{y}-{m}-{d}')
- that.tab.chart1.getdataListParm.parammaps.stopTime = parseTime(end, '{y}-{m}-{d}')
- that.tab.chart2.getdataListParm.parammaps.inputDatetime[0] = parseTime(start, '{y}-{m}-{d}')
- that.tab.chart2.getdataListParm.parammaps.inputDatetime[1] = parseTime(end, '{y}-{m}-{d}')
- that.tab.chart2.getdataListParm.parammaps.startTime = parseTime(start, '{y}-{m}-{d}')
- that.tab.chart2.getdataListParm.parammaps.stopTime = parseTime(end, '{y}-{m}-{d}')
- that.tab.chart3.getdataListParm.parammaps.inputDatetime[0] = parseTime(start, '{y}-{m}-{d}')
- that.tab.chart3.getdataListParm.parammaps.inputDatetime[1] = parseTime(end, '{y}-{m}-{d}')
- that.tab.chart3.getdataListParm.parammaps.startTime = parseTime(start, '{y}-{m}-{d}')
- that.tab.chart3.getdataListParm.parammaps.stopTime = parseTime(end, '{y}-{m}-{d}')
- that.tab.chart4.getdataListParm.parammaps.inputDatetime[0] = parseTime(start, '{y}-{m}-{d}')
- that.tab.chart4.getdataListParm.parammaps.inputDatetime[1] = parseTime(end, '{y}-{m}-{d}')
- that.tab.chart4.getdataListParm.parammaps.startTime = parseTime(start, '{y}-{m}-{d}')
- that.tab.chart4.getdataListParm.parammaps.stopTime = parseTime(end, '{y}-{m}-{d}')
- that.tab.chart5.getdataListParm.parammaps.inputDatetime[0] = parseTime(start, '{y}-{m}-{d}')
- that.tab.chart5.getdataListParm.parammaps.inputDatetime[1] = parseTime(end, '{y}-{m}-{d}')
- that.tab.chart5.getdataListParm.parammaps.startTime = parseTime(start, '{y}-{m}-{d}')
- that.tab.chart5.getdataListParm.parammaps.stopTime = parseTime(end, '{y}-{m}-{d}')
- },
- // 导出
- handleDownload() {},
- // 效率统计
- getList() {
- this.tab.table.listLoading = true
- this.tab.table.getdataListParm.parammaps.date = parseTime(this.tab.table.getdataListParm.parammaps.date, '{y}-{m}-{d}')
- GetDataByName(this.tab.table.getdataListParm).then(response => {
- console.log('汇总统计/混料table数据', response.data.list)
- if (response.data.list !== null) {
- this.tab.table.list = response.data.list
- this.tab.table.total = response.data.total
- } else {
- this.tab.table.list = []
- }
- setTimeout(() => {
- this.tab.table.listLoading = false
- }, 100)
- })
- },
- // 查询
- handleSearch() {
- this.getList()
- },
- tableCellStyle({ row, column, rowIndex, columnIndex }) {
- if (columnIndex === 0 && row.pastureid !== '-1') {
- return {
- textDecoration: 'underline'
- }
- }
- return {
- textDecoration: 'none'
- }
- },
- clickPasture(row) {
- if (row.pastureid !== '-1') {
- this.pasture.dialogStatus = 'pasture'
- this.pasture.dialogFormVisible = true
- this.pasture.table.getdataListParm.parammaps.pastureid = row.pastureid
- this.getTabList()
- }
- },
- // 效率统计
- getTabList() {
- this.pasture.table.listLoading = true
- this.pasture.table.getdataListParm.parammaps.date = this.tab.table.getdataListParm.parammaps.date
- GetDataByName(this.pasture.table.getdataListParm).then(response => {
- console.log('汇总统计/混料table数据', response.data.list)
- if (response.data.list !== null) {
- this.pasture.table.list = response.data.list
- this.pasture.table.total = response.data.total
- } else {
- this.pasture.table.list = []
- }
- setTimeout(() => {
- this.pasture.table.listLoading = false
- }, 100)
- })
- },
- // 切换统计类型
- changeRadio() {
- console.log(this.pasture.radio)
- if (this.pasture.radio == '1') {
- console.log('配方名称')
- this.pasture.isFormulaName = true
- this.pasture.isHouseName = false
- this.pasture.isLivestockType = false
- this.pasture.table.getdataListParm.parammaps.ftname = ''
- this.pasture.table.getdataListParm.parammaps.barname = ''
- this.pasture.table.getdataListParm.parammaps.ftname = ''
- this.pasture.table.getdataListParm.parammaps.cowclass = ''
- this.pasture.table.getdataListParm.name = 'getFeedEfficiencyFT'
- this.getTabList()
- } else if (this.pasture.radio == '2') {
- console.log('栏舍名称')
- this.pasture.isFormulaName = false
- this.pasture.isHouseName = true
- this.pasture.isLivestockType = false
- this.pasture.table.getdataListParm.parammaps.ftname = ''
- this.pasture.table.getdataListParm.parammaps.barname = ''
- this.pasture.table.getdataListParm.parammaps.ftname = ''
- this.pasture.table.getdataListParm.parammaps.cowclass = ''
- this.pasture.table.getdataListParm.name = 'getFeedEfficiencyLS'
- this.getTabList()
- } else if (this.pasture.radio == '3') {
- console.log(' 牲畜类别')
- this.pasture.isFormulaName = false
- this.pasture.isHouseName = false
- this.pasture.isLivestockType = true
- this.pasture.table.getdataListParm.parammaps.ftname = ''
- this.pasture.table.getdataListParm.parammaps.barname = ''
- this.pasture.table.getdataListParm.parammaps.ftname = ''
- this.pasture.table.getdataListParm.parammaps.cowclass = ''
- this.pasture.table.getdataListParm.name = 'getFeedEfficiencySC'
- this.getTabList()
- }
- },
- handlePastureSearch() {},
- // 图表总查询
- handleChartDate() {
- console.log('点击了确认时间')
- MessageBox.confirm('是否调整以下所有图表查询时间?', {
- confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
- }).then(() => {
- var that = this
- var startTime = parseTime(this.tab.chartDate[0], '{y}-{m}-{d}')
- var stopTime = parseTime(this.tab.chartDate[1], '{y}-{m}-{d}')
- that.tab.chart1.getdataListParm.parammaps.inputDatetime = this.tab.chartDate
- that.tab.chart1.getdataListParm.parammaps.startTime = startTime
- that.tab.chart1.getdataListParm.parammaps.stopTime = stopTime
- that.getChart1()
- that.tab.chart2.getdataListParm.parammaps.inputDatetime = this.tab.chartDate
- that.tab.chart2.getdataListParm.parammaps.startTime = startTime
- that.tab.chart2.getdataListParm.parammaps.stopTime = stopTime
- that.getChart2()
- that.tab.chart3.getdataListParm.parammaps.inputDatetime = this.tab.chartDate
- that.tab.chart3.getdataListParm.parammaps.startTime = startTime
- that.tab.chart3.getdataListParm.parammaps.stopTime = stopTime
- that.getChart3()
- that.tab.chart4.getdataListParm.parammaps.inputDatetime = this.tab.chartDate
- that.tab.chart4.getdataListParm.parammaps.startTime = startTime
- that.tab.chart4.getdataListParm.parammaps.stopTime = stopTime
- that.getChart4()
- that.tab.chart5.getdataListParm.parammaps.inputDatetime = this.tab.chartDate
- that.tab.chart5.getdataListParm.parammaps.startTime = startTime
- that.tab.chart5.getdataListParm.parammaps.stopTime = stopTime
- that.getChart5()
- })
- },
- // 泌乳牛干物质采食量
- getChart1() {
- this.tab.chart1.listLoading = true
- GetReportform(this.tab.chart1.getdataListParm).then(response => {
- console.log('泌乳牛干物质采食量图表数据', response.data.list)
- if (response.data.list !== null) {
- this.tab.chart1.table.list = response.data.data
- this.tab.chart1.chartLine_data = response.data.list
- // this.tab.chart1.chartLine_data = {
- // data1: ['1牧', '2牧', '3牧'], // 折线
- // data2: ['12/01', '12/02', '12/03'], // X轴
- // data3: [
- // { data: [1.5, 1.2, 1.7, 1.2] },
- // { data: [1.7, 0.8, 1.2, 1.8] },
- // { data: [1.3, 2.2, 1.9, 1.4] }
- // ]// 折线对应数据
- // }
- // this.tab.chart1.total = response.data.total
- this.roadChartLine1(this.tab.chart1.chartLine_data)
- } else {
- this.tab.chart1.list = []
- }
- setTimeout(() => {
- this.tab.chart1.listLoading = false
- }, 100)
- })
- },
- roadChartLine1(chartLine_data) {
- if (this.tab.chart1.chartLine != null) {
- this.tab.chart1.chartLine.dispose()
- }
- this.tab.chart1.chartLine = echarts.init(document.getElementById('chartLine1'))
- var option = {
- title: {
- text: ''
- },
- tooltip: {
- trigger: 'axis'
- },
- legend: {
- data: chartLine_data.data1,
- right: 10
- },
- grid: {
- top: '20%',
- left: '3%',
- right: '8%',
- containLabel: true
- },
- toolbox: {
- show: true,
- right: '2%',
- feature: {}
- },
- xAxis: { type: 'category', boundaryGap: false, data: chartLine_data.data2, name: '日期' },
- yAxis: {
- type: 'value', name: 'kg', axisLabel: { formatter: '{value}' }
- },
- series: (function() {
- var serie = []
- for (var i = 0; i < chartLine_data.data3.length; i++) {
- var item = {
- name: chartLine_data.data1[i],
- type: 'line',
- data: chartLine_data.data3[i].data
- }
- serie.push(item)
- }
- return serie
- }())
- }
- this.tab.chart1.chartLine.setOption(option)
- window.onresize = function() {
- this.tab.chart1.chartLine.resize()
- }
- },
- // 剩料率
- getChart2() {
- this.tab.chart2.listLoading = true
- GetReportform(this.tab.chart2.getdataListParm).then(response => {
- console.log('剩料率图表数据', response.data.list)
- if (response.data.list !== null) {
- this.tab.chart2.table.list = response.data.data
- this.tab.chart2.chartLine_data = response.data.list
- // this.tab.chart2.chartLine_data = {
- // data1: ['1牧', '2牧', '3牧'], // 折线
- // data2: ['12/01', '12/02', '12/03'], // X轴
- // data3: [
- // { data: [1.5, 1.2, 1.7, 1.2] },
- // { data: [1.7, 0.8, 1.2, 1.8] },
- // { data: [1.3, 2.2, 1.9, 1.4] }
- // ]// 折线对应数据
- // }
- this.tab.chart2.total = response.data.total
- console.log('剩料率图数据', this.tab.chart2.chartLine_data)
- console.log('剩料率表数据', this.tab.chart2.table.list)
- this.roadChartLine2(this.tab.chart2.chartLine_data)
- } else {
- this.tab.chart2.list = []
- }
- setTimeout(() => {
- this.tab.chart2.listLoading = false
- }, 100)
- })
- },
- roadChartLine2(chartLine_data) {
- if (this.tab.chart2.chartLine != null) {
- this.tab.chart2.chartLine.dispose()
- }
- this.tab.chart2.chartLine = echarts.init(document.getElementById('chartLine2'))
- var option = {
- title: {
- text: ''
- },
- tooltip: {
- trigger: 'axis'
- },
- legend: {
- data: chartLine_data.data1,
- right: 10
- },
- grid: {
- top: '20%',
- left: '3%',
- right: '8%',
- containLabel: true
- },
- toolbox: {
- show: true,
- right: '2%',
- feature: {}
- },
- xAxis: { type: 'category', boundaryGap: false, data: chartLine_data.data2, name: '日期' },
- yAxis: {
- type: 'value', name: '剩料率', axisLabel: { formatter: '{value} %' }
- },
- series: (function() {
- var serie = []
- for (var i = 0; i < chartLine_data.data3.length; i++) {
- var item = {
- name: chartLine_data.data1[i],
- type: 'line',
- data: chartLine_data.data3[i].data
- }
- serie.push(item)
- }
- return serie
- }())
- }
- this.tab.chart2.chartLine.setOption(option)
- window.onresize = function() {
- this.tab.chart2.chartLine.resize()
- }
- },
- // 混料时间统计
- getChart3() {
- this.tab.chart3.listLoading = true
- GetReportform(this.tab.chart3.getdataListParm).then(response => {
- console.log('混料时间统计图表数据', response.data.list)
- if (response.data.list !== null) {
- this.tab.chart3.table.list = response.data.data
- this.tab.chart3.chartLine_data = response.data.list
- // this.tab.chart3.chartLine_data = {
- // data1: ['1牧', '2牧', '3牧'], // 折线
- // data2: ['12/01', '12/02', '12/03'], // X轴
- // data3: [
- // { data: [1.5, 1.2, 1.7, 1.2] },
- // { data: [1.7, 0.8, 1.2, 1.8] },
- // { data: [1.3, 2.2, 1.9, 1.4] }
- // ]// 折线对应数据
- // }
- this.tab.chart3.total = response.data.total
- this.tab.chart3.total = response.data.total
- this.roadChartLine3(this.tab.chart3.chartLine_data)
- } else {
- this.tab.chart3.list = []
- }
- setTimeout(() => {
- this.tab.chart3.listLoading = false
- }, 100)
- })
- },
- roadChartLine3(chartLine_data) {
- if (this.tab.chart3.chartLine != null) {
- this.tab.chart3.chartLine.dispose()
- }
- this.tab.chart3.chartLine = echarts.init(document.getElementById('chartLine3'))
- var option = {
- title: {
- text: ''
- },
- tooltip: {
- trigger: 'axis'
- },
- legend: {
- data: chartLine_data.data1,
- right: 10
- },
- grid: {
- top: '20%',
- left: '3%',
- right: '8%',
- containLabel: true
- },
- toolbox: {
- show: true,
- right: '2%',
- feature: {}
- },
- xAxis: { type: 'category', boundaryGap: false, data: chartLine_data.data2, name: '日期' },
- yAxis: {
- type: 'value', name: '分钟', axisLabel: { formatter: '{value}min' }
- },
- series: (function() {
- var serie = []
- for (var i = 0; i < chartLine_data.data3.length; i++) {
- var item = {
- name: chartLine_data.data1[i],
- type: 'line',
- data: chartLine_data.data3[i].data
- }
- serie.push(item)
- }
- return serie
- }())
- }
- this.tab.chart3.chartLine.setOption(option)
- window.onresize = function() {
- this.tab.chart3.chartLine.resize()
- }
- },
- // 转化率
- getChart4() {
- this.tab.chart4.listLoading = true
- GetReportform(this.tab.chart4.getdataListParm).then(response => {
- console.log('转化率图表数据', response.data.list)
- if (response.data.list !== null) {
- this.tab.chart4.table.list = response.data.data
- this.tab.chart4.chartLine_data = response.data.list
- // this.tab.chart4.chartLine_data = {
- // data1: ['1牧', '2牧', '3牧'], // 折线
- // data2: ['12/01', '12/02', '12/03'], // X轴
- // data3: [
- // { data: [1.5, 1.2, 1.7, 1.2] },
- // { data: [1.7, 0.8, 1.2, 1.8] },
- // { data: [1.3, 2.2, 1.9, 1.4] }
- // ]// 折线对应数据
- // }
- this.tab.chart4.total = response.data.total
- console.log('转化率图数据', this.tab.chart4.chartLine_data)
- console.log('转化率表数据', this.tab.chart4.table.list)
- this.roadChartLine4(this.tab.chart4.chartLine_data)
- } else {
- this.tab.chart4.list = []
- }
- setTimeout(() => {
- this.tab.chart4.listLoading = false
- }, 100)
- })
- },
- roadChartLine4(chartLine_data) {
- if (this.tab.chart4.chartLine != null) {
- this.tab.chart4.chartLine.dispose()
- }
- this.tab.chart4.chartLine = echarts.init(document.getElementById('chartLine4'))
- var option = {
- title: {
- text: ''
- },
- tooltip: {
- trigger: 'axis'
- },
- legend: {
- data: chartLine_data.data1,
- right: 10
- },
- grid: {
- top: '20%',
- left: '3%',
- right: '8%',
- containLabel: true
- },
- toolbox: {
- show: true,
- right: '2%',
- feature: {}
- },
- xAxis: { type: 'category', boundaryGap: false, data: chartLine_data.data2, name: '日期' },
- yAxis: {
- type: 'value', name: '饲料转化率', axisLabel: { formatter: '{value} %' }
- },
- series: (function() {
- var serie = []
- for (var i = 0; i < chartLine_data.data3.length; i++) {
- var item = {
- name: chartLine_data.data1[i],
- type: 'line',
- data: chartLine_data.data3[i].data
- }
- serie.push(item)
- }
- return serie
- }())
- }
- this.tab.chart4.chartLine.setOption(option)
- window.onresize = function() {
- this.tab.chart4.chartLine.resize()
- }
- },
- // 成本分析
- getChart5() {
- this.tab.chart5.listLoading = true
- GetReportform(this.tab.chart5.getdataListParm).then(response => {
- console.log('转化率图表数据', response.data.list)
- if (response.data.list !== null) {
- this.tab.chart5.table.list = response.data.data
- this.tab.chart5.chartLine_data = response.data.list
- // this.tab.chart5.chartLine_data = {
- // data1: ['1牧', '2牧', '3牧'], // 折线
- // data2: ['12/01', '12/02', '12/03'], // X轴
- // data3: [
- // { data: [1.5, 1.2, 1.7, 1.2] },
- // { data: [1.7, 0.8, 1.2, 1.8] },
- // { data: [1.3, 2.2, 1.9, 1.4] }
- // ]// 折线对应数据
- // }
- this.tab.chart5.total = response.data.total
- console.log('转化率图数据', this.tab.chart5.chartLine_data)
- console.log('转化率表数据', this.tab.chart5.table.list)
- this.roadChartLine5(this.tab.chart5.chartLine_data)
- } else {
- this.tab.chart5.list = []
- }
- setTimeout(() => {
- this.tab.chart5.listLoading = false
- }, 100)
- })
- },
- roadChartLine5(chartLine_data) {
- if (this.tab.chart5.chartLine != null) {
- this.tab.chart5.chartLine.dispose()
- }
- this.tab.chart5.chartLine = echarts.init(document.getElementById('chartLine5'))
- var option = {
- title: {
- text: ''
- },
- tooltip: {
- trigger: 'axis'
- },
- legend: {
- data: chartLine_data.data1,
- right: 10
- },
- grid: {
- top: '20%',
- left: '5%',
- right: '8%',
- containLabel: true
- },
- toolbox: {
- show: true,
- right: '2%',
- feature: {}
- },
- xAxis: { type: 'category', boundaryGap: false, data: chartLine_data.data2, name: '日期' },
- yAxis: {
- type: 'value', name: '公斤奶饲料成本(元)'
- },
- series: (function() {
- var serie = []
- for (var i = 0; i < chartLine_data.data3.length; i++) {
- var item = {
- name: chartLine_data.data1[i],
- type: 'line',
- data: chartLine_data.data3[i].data
- }
- serie.push(item)
- }
- return serie
- }())
- }
- this.tab.chart5.chartLine.setOption(option)
- window.onresize = function() {
- this.tab.chart5.chartLine.resize()
- }
- },
- // 时间
- changeChartDate(item) {
- console.log(item)
- if (item == 'chart1') {
- if (this.tab.chart1.getdataListParm.parammaps.inputDatetime !== '' && this.tab.chart1.getdataListParm.parammaps.inputDatetime !== null) {
- this.tab.chart1.getdataListParm.parammaps.startTime = parseTime(this.tab.chart1.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
- this.tab.chart1.getdataListParm.parammaps.stopTime = parseTime(this.tab.chart1.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
- this.getChart1()
- } else {
- this.tab.chart1.getdataListParm.parammaps.inputDatetime = ''
- this.tab.chart1.getdataListParm.parammaps.startTime = ''
- this.tab.chart1.getdataListParm.parammaps.stopTime = ''
- this.getChart1()
- }
- } else if (item == 'chart2') {
- if (this.tab.chart2.getdataListParm.parammaps.inputDatetime !== '' && this.tab.chart2.getdataListParm.parammaps.inputDatetime !== null) {
- this.tab.chart2.getdataListParm.parammaps.startTime = parseTime(this.tab.chart2.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
- this.tab.chart2.getdataListParm.parammaps.stopTime = parseTime(this.tab.chart2.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
- this.getChart2()
- } else {
- this.tab.chart2.getdataListParm.parammaps.inputDatetime = ''
- this.tab.chart2.getdataListParm.parammaps.startTime = ''
- this.tab.chart2.getdataListParm.parammaps.stopTime = ''
- this.getChart2()
- }
- } else if (item == 'chart3') {
- if (this.tab.chart3.getdataListParm.parammaps.inputDatetime !== '' && this.tab.chart3.getdataListParm.parammaps.inputDatetime !== null) {
- this.tab.chart3.getdataListParm.parammaps.startTime = parseTime(this.tab.chart3.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
- this.tab.chart3.getdataListParm.parammaps.stopTime = parseTime(this.tab.chart3.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
- this.getChart3()
- } else {
- this.tab.chart3.getdataListParm.parammaps.inputDatetime = ''
- this.tab.chart3.getdataListParm.parammaps.startTime = ''
- this.tab.chart3.getdataListParm.parammaps.stopTime = ''
- this.getChart3()
- }
- } else if (item == 'chart4') {
- if (this.tab.chart4.getdataListParm.parammaps.inputDatetime !== '' && this.tab.chart4.getdataListParm.parammaps.inputDatetime !== null) {
- this.tab.chart4.getdataListParm.parammaps.startTime = parseTime(this.tab.chart4.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
- this.tab.chart4.getdataListParm.parammaps.stopTime = parseTime(this.tab.chart4.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
- this.getChart4()
- } else {
- this.tab.chart4.getdataListParm.parammaps.inputDatetime = ''
- this.tab.chart4.getdataListParm.parammaps.startTime = ''
- this.tab.chart4.getdataListParm.parammaps.stopTime = ''
- this.getChart4()
- }
- } else if (item == 'chart5') {
- if (this.tab.chart5.getdataListParm.parammaps.inputDatetime !== '' && this.tab.chart5.getdataListParm.parammaps.inputDatetime !== null) {
- this.tab.chart5.getdataListParm.parammaps.startTime = parseTime(this.tab.chart5.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
- this.tab.chart5.getdataListParm.parammaps.stopTime = parseTime(this.tab.chart5.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
- this.getChart5()
- } else {
- this.tab.chart5.getdataListParm.parammaps.inputDatetime = ''
- this.tab.chart5.getdataListParm.parammaps.startTime = ''
- this.tab.chart5.getdataListParm.parammaps.stopTime = ''
- this.getChart5()
- }
- }
- },
- // 导出
- handleExport(item) {
- if (item == 'chart1') {
- console.log('泌乳牛采食量导出')
- var excelDatasTabChart1 = [
- {
- tHeader: ['日期', '泌乳牛采食量', '泌乳牛产奶量'],
- filterVal: ['日期', 'field1', 'field2'],
- tableDatas: this.tab.chart1.table.list,
- sheetName: '泌乳牛采食量'
- }
- ]
- json2excel(excelDatasTabChart1, '泌乳牛采食量', true, 'xlsx')
- } else if (item == 'chart2') {
- console.log('剩料率导出')
- var excelDatasTabChart2 = [
- {
- tHeader: ['日期', '栏舍名称', '剩料量', '撒料量', '剩料率'],
- filterVal: ['日期', '名称', '剩料量', '撒料量', '准确率'],
- tableDatas: this.tab.chart2.table.list,
- sheetName: '牛栏剩料率'
- }
- ]
- json2excel(excelDatasTabChart2, '牛栏剩料率', true, 'xlsx')
- } else if (item == 'chart3') {
- console.log('混料时间统计导出')
- var excelDatasTabChart3 = [
- {
- tHeader: ['日期', '混料时间(分钟)'],
- filterVal: ['日期', 'field1'],
- tableDatas: this.tab.chart3.table.list,
- sheetName: '混料时间统计'
- }
- ]
- json2excel(excelDatasTabChart3, '混料时间统计', true, 'xlsx')
- } else if (item == 'chart4') {
- console.log('转化率导出')
- var excelDatasTabChart4 = [
- {
- tHeader: ['日期', '配方名称', '饲料转化率'],
- filterVal: ['日期', '名称', '准确率'],
- tableDatas: this.tab.chart4.table.list,
- sheetName: '转化率统计'
- }
- ]
- json2excel(excelDatasTabChart4, '转化率', true, 'xlsx')
- } else if (item == 'chart5') {
- console.log('成本分析导出')
- var excelDatasTabChart5 = [
- {
- tHeader: ['日期', '牲畜类别', '公斤奶饲料成本(元)'],
- filterVal: ['日期', '名称', '准确率'],
- tableDatas: this.tab.chart5.table.list,
- sheetName: '成本分析'
- }
- ]
- json2excel(excelDatasTabChart5, '成本分析', true, 'xlsx')
- }
- },
- // 切换表格
- handleTable(item) {
- // 显示切换表格
- if (item == 'chart1') {
- console.log('泌乳牛采食量表格')
- this.tab.chart1.isTable = true
- this.tab.chart1.isChart = false
- } else if (item == 'chart2') {
- console.log('牛栏剩料率表格')
- this.tab.chart2.isTable = true
- this.tab.chart2.isChart = false
- } else if (item == 'chart3') {
- console.log('混料时间统计表格')
- this.tab.chart3.isTable = true
- this.tab.chart3.isChart = false
- } else if (item == 'chart4') {
- console.log('转化率表格')
- this.tab.chart4.isTable = true
- this.tab.chart4.isChart = false
- } else if (item == 'chart5') {
- console.log('成本分析表格')
- this.tab.chart5.isTable = true
- this.tab.chart5.isChart = false
- }
- },
- // 切换图表
- handleChart(item) {
- // 显示切换图表
- if (item == 'chart1') {
- console.log('泌乳牛采食量图表')
- this.tab.chart1.isTable = false
- this.tab.chart1.isChart = true
- } else if (item == 'chart2') {
- console.log('牛栏剩料率图表')
- this.tab.chart2.isTable = false
- this.tab.chart2.isChart = true
- } else if (item == 'chart3') {
- console.log('混料时间统计图表')
- this.tab.chart3.isTable = false
- this.tab.chart3.isChart = true
- } else if (item == 'chart4') {
- console.log('转化率图表')
- this.tab.chart4.isTable = false
- this.tab.chart4.isChart = true
- } else if (item == 'chart5') {
- console.log('成本分析图表')
- this.tab.chart5.isTable = false
- this.tab.chart5.isChart = true
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .search{margin-bottom:10px;}
- </style>
|