tab2.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. <template>
  2. <div class="app-container">
  3. <div class="search">
  4. <el-select v-model="table.getdataListParm.parammaps.pastureid"
  5. :placeholder="$t('supplier.mc')" class="filter-item" style="width: 120px;" @change="changePasture">
  6. <el-option v-for="item in pastureList" :key="item.pastureid" :label="item.pasturename" :value="item.pastureid" />
  7. </el-select>
  8. <el-date-picker v-model="table.getdataListParm.parammaps.date" :clearable="false" type="date" :placeholder="$t('dailyExecutionPlan.xzrq')" style="width: 150px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" @change="changeTab2Date" />
  9. <el-button class="el-icon-arrow-left elIconArrowLeft" @click="handleBefore" />
  10. <el-button class="el-icon-arrow-right elIconArrowRight" @click="handleNext" />
  11. </div>
  12. <div class="table">
  13. <el-row :gutter="10">
  14. <!-- 宾州筛分析 -->
  15. <el-col :span="12">
  16. <h4 style="text-align:center;">{{$t('dhedFormula.bzsfx')}}</h4>
  17. <el-table
  18. :key="table.tableKey"
  19. v-loading="table.listLoading"
  20. :element-loading-text="$t('common.tableMsg')"
  21. :data="table.list"
  22. border
  23. fit
  24. highlight-current-row
  25. style="width: 100%;"
  26. :row-style="rowStyle"
  27. :cell-style="cellStyle"
  28. class="elTable table-fixed"
  29. height="400px"
  30. >
  31. <el-table-column :label="$t('feedingEfficiency.bzs')" min-width="70px" align="center" prop="barname" />
  32. <el-table-column :label="$t('feedingEfficiency.dczl1')"min-width="58px" align="center" prop="oneweight" />
  33. <el-table-column :label="$t('feedingEfficiency.dcbfb1')"min-width="58px" align="center" prop="onerate" />
  34. <el-table-column :label="$t('feedingEfficiency.dczl2')" min-width="58px" align="center" prop="twoweight" />
  35. <el-table-column :label="$t('feedingEfficiency.dcbfb2')" min-width="58px" align="center" prop="tworate" />
  36. <el-table-column :label="$t('feedingEfficiency.dczl3')" min-width="58px" align="center" prop="threeweight" />
  37. <el-table-column :label="$t('feedingEfficiency.dcbfb3')" min-width="58px" align="center" prop="threerate" />
  38. <el-table-column :label="$t('feedingEfficiency.dczl4')" min-width="58px" align="center" prop="fourweight" />
  39. <el-table-column :label="$t('feedingEfficiency.dcbfb4')" min-width="58px" align="center" prop="fourrate" />
  40. <el-table-column :label="$t('feedingEfficiency.ckbz')" min-width="45px" align="center" prop="standard" />
  41. </el-table>
  42. </el-col>
  43. <!-- 粪便筛分析 -->
  44. <el-col :span="12">
  45. <h4 style="text-align:center;">{{$t('feedingEfficiency.fbsfx')}}</h4>
  46. <el-table
  47. :key="table2.tableKey"
  48. v-loading="table2.listLoading"
  49. :element-loading-text="$t('common.tableMsg')"
  50. :data="table2.list"
  51. border
  52. fit
  53. highlight-current-row
  54. style="width: 100%;"
  55. :row-style="rowStyle"
  56. :cell-style="cellStyle"
  57. class="elTable table-fixed"
  58. height="400px"
  59. >
  60. <el-table-column
  61. :label="$t('supplier.fbs')" min-width="70px" align="center" prop="barname" />
  62. <el-table-column :label="$t('feedingEfficiency.dczl1')"min-width="58px" align="center" prop="oneweight" />
  63. <el-table-column :label="$t('feedingEfficiency.dcbfb1')"min-width="58px" align="center" prop="onerate" />
  64. <el-table-column :label="$t('feedingEfficiency.dczl2')" min-width="58px" align="center" prop="twoweight" />
  65. <el-table-column :label="$t('feedingEfficiency.dcbfb2')" min-width="58px" align="center" prop="tworate" />
  66. <el-table-column :label="$t('feedingEfficiency.dczl3')" min-width="58px" align="center" prop="threeweight" />
  67. <el-table-column :label="$t('feedingEfficiency.dcbfb3')" min-width="58px" align="center" prop="threerate" />
  68. <el-table-column :label="$t('feedingEfficiency.ckbz')" min-width="70px" align="center" prop="standard" />
  69. </el-table>
  70. </el-col>
  71. </el-row>
  72. <el-row :gutter="10">
  73. <!-- BCS评分 -->
  74. <el-col :span="12">
  75. <h4 style="text-align:center;">BCS评分</h4>
  76. <el-table
  77. :key="table3.tableKey"
  78. v-loading="table3.listLoading"
  79. :element-loading-text="$t('common.tableMsg')"
  80. :data="table3.list"
  81. border
  82. fit
  83. highlight-current-row
  84. style="width: 100%;"
  85. :row-style="rowStyle"
  86. :cell-style="cellStyle"
  87. class="elTable table-fixed"
  88. height="400px"
  89. >
  90. <el-table-column :label="$t('errorAnalysis.pen')" min-width="58px" align="center" prop="barname" />
  91. <el-table-column :label="$t('feedingEfficiency.czybs')" min-width="58px" align="center" prop="sumcowcount" />
  92. <el-table-column :label="$t('feedingEfficiency.dc')" min-width="58px" align="center" prop="product" />
  93. <el-table-column :label="$t('feedingEfficiency.gwzcsl')" min-width="58px" align="center" prop="dryweight" />
  94. <el-table-column :label="$t('feedingEfficiency.mrts')" min-width="58px" align="center" prop="avgdim" />
  95. <el-table-column :label="$t('feedingEfficiency.bzfs')" min-width="58px" align="center" prop="standardscore" />
  96. <el-table-column :label="$t('message.msg77')" min-width="100px" align="center" prop="score25" />
  97. <el-table-column :label="$t('message.msg78')" min-width="100px" align="center" prop="score275" />
  98. <el-table-column :label="$t('message.msg79')" min-width="100px" align="center" prop="score3" />
  99. <el-table-column :label="$t('message.msg80')" min-width="100px" align="center" prop="score325" />
  100. <el-table-column :label="$t('message.msg81')" min-width="100px" align="center" prop="score35" />
  101. <el-table-column :label="$t('message.msg82')" min-width="100px" align="center" prop="score375" />
  102. <el-table-column :label="$t('message.msg83')" min-width="100px" align="center" prop="score4" />
  103. </el-table>
  104. </el-col>
  105. <!-- 粪便评分 -->
  106. <el-col :span="12">
  107. <h4 style="text-align:center;">{{$t('feedingEfficiency.fbpf')}}</h4>
  108. <el-table
  109. :key="table4.tableKey"
  110. v-loading="table4.listLoading"
  111. :element-loading-text="$t('common.tableMsg')"
  112. :data="table4.list"
  113. border
  114. fit
  115. highlight-current-row
  116. style="width: 100%;"
  117. :row-style="rowStyle"
  118. :cell-style="cellStyle"
  119. class="elTable table-fixed"
  120. height="400px"
  121. >
  122. <el-table-column :label="$t('errorAnalysis.pen')" min-width="60px" align="center" prop="barname" />
  123. <el-table-column :label="$t('feedingEfficiency.czybs')" min-width="60px" align="center" prop="sumcowcount" />
  124. <el-table-column :label="$t('feedingEfficiency.dc')" min-width="50px" align="center" prop="product" />
  125. <el-table-column :label="$t('feedingEfficiency.gwzcsl')" min-width="60px" align="center" prop="dryweight" />
  126. <el-table-column :label="$t('feedingEfficiency.mrts')" min-width="50px" align="center" prop="avgdim" />
  127. <el-table-column :label="$t('feedingEfficiency.bzfs')" min-width="50px" align="center" prop="standardscore" />
  128. <el-table-column :label="$t('message.msg84')" min-width="90px" align="center" prop="score1" />
  129. <el-table-column :label="$t('message.msg85')" min-width="90px" align="center" prop="score2" />
  130. <el-table-column :label="$t('message.msg79')" min-width="90px" align="center" prop="score3" />
  131. <el-table-column :label="$t('message.msg86')" min-width="90px" align="center" prop="score4" />
  132. <el-table-column :label="$t('message.msg87')" min-width="90px" align="center" prop="score5" />
  133. </el-table>
  134. </el-col>
  135. </el-row>
  136. </div>
  137. </div>
  138. </template>
  139. <script>
  140. import echarts from 'echarts'
  141. require('echarts/theme/macarons')
  142. import { GetDataByName, GetReportform, GetDataByNames } from '@/api/common'
  143. import Cookies from 'js-cookie'
  144. import { parseTime } from '@/utils/index.js'
  145. import Pagination from '@/components/Pagination'
  146. import { json2excel } from '@/utils/index.js'
  147. import { MessageBox } from 'element-ui'
  148. export default {
  149. name: 'GroupFeedingEfficiency',
  150. components: { Pagination },
  151. data() {
  152. return {
  153. requestParams: [
  154. { name: 'getPastureListJT', offset: 0, pagecount: 0, parammaps: { pastureid: Cookies.get('pastureid'), pasturename: '' }}
  155. ],
  156. pastureList: [], // 牧场
  157. frequencyList: [],
  158. table: {
  159. getdataListParm: {
  160. name: 'getAssessCowPenn',
  161. page: 1,
  162. offset: 1,
  163. pagecount: '',
  164. returntype: 'Map',
  165. parammaps: {
  166. pastureid: '',
  167. date: parseTime(new Date(), '{y}-{m}-{d}')
  168. }
  169. },
  170. tableKey: 1,
  171. list: [],
  172. total: 0,
  173. listLoading: true,
  174. temp: {}
  175. },
  176. table2: {
  177. getdataListParm: {
  178. name: 'getAssessCowDung',
  179. page: 1,
  180. offset: 1,
  181. pagecount: '',
  182. returntype: 'Map',
  183. parammaps: {
  184. pastureid: '',
  185. date: ''
  186. }
  187. },
  188. tableKey: 1,
  189. list: [],
  190. total: 0,
  191. listLoading: true,
  192. temp: {}
  193. },
  194. table3: {
  195. getdataListParm: {
  196. name: 'getAssessBodyscore',
  197. page: 1,
  198. offset: 1,
  199. pagecount: '',
  200. returntype: 'Map',
  201. parammaps: {
  202. pastureid: '',
  203. date: ''
  204. }
  205. },
  206. tableKey: 1,
  207. list: [],
  208. total: 0,
  209. listLoading: true,
  210. temp: {}
  211. },
  212. table4: {
  213. getdataListParm: {
  214. name: 'getAssessDungscore',
  215. page: 1,
  216. offset: 1,
  217. pagecount: '',
  218. returntype: 'Map',
  219. parammaps: {
  220. pastureid: '',
  221. date: ''
  222. }
  223. },
  224. tableKey: 1,
  225. list: [],
  226. total: 0,
  227. listLoading: true,
  228. temp: {}
  229. },
  230. rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
  231. cellStyle: { padding: 0 + 'px' }
  232. }
  233. },
  234. created() {
  235. const start2 = new Date()
  236. start2.setTime(start2.getTime() - 3600 * 1000 * 24 * 1)
  237. this.table.getdataListParm.parammaps.date = parseTime(start2, '{y}-{m}-{d}')
  238. this.getDownList()
  239. },
  240. mounted() {},
  241. activated() {
  242. const start2 = new Date()
  243. start2.setTime(start2.getTime() - 3600 * 1000 * 24 * 1)
  244. this.table.getdataListParm.parammaps.date = parseTime(start2, '{y}-{m}-{d}')
  245. this.getDownList()
  246. },
  247. methods: {
  248. getDownList() {
  249. GetDataByNames(this.requestParams).then(response => {
  250. this.pastureList = response.data.getPastureListJT.list
  251. this.table.getdataListParm.parammaps.pastureid = response.data.getPastureListJT.list[0].pastureid
  252. this.table2.getdataListParm.parammaps.pastureid = response.data.getPastureListJT.list[0].pastureid
  253. this.table3.getdataListParm.parammaps.pastureid = response.data.getPastureListJT.list[0].pastureid
  254. this.table4.getdataListParm.parammaps.pastureid = response.data.getPastureListJT.list[0].pastureid
  255. this.table2.getdataListParm.parammaps.pastureid = this.table.getdataListParm.parammaps.pastureid
  256. this.table3.getdataListParm.parammaps.pastureid = this.table.getdataListParm.parammaps.pastureid
  257. this.table4.getdataListParm.parammaps.pastureid = this.table.getdataListParm.parammaps.pastureid
  258. this.getTab2List()
  259. this.getTab2List2()
  260. this.getTab2List3()
  261. this.getTab2List4()
  262. })
  263. },
  264. handleBefore() {
  265. if (this.table.getdataListParm.parammaps.date !== '' && this.table.getdataListParm.parammaps.date !== null) {
  266. this.table.getdataListParm.parammaps.date = new Date(this.table.getdataListParm.parammaps.date)
  267. var start = new Date(this.table.getdataListParm.parammaps.date.setDate(this.table.getdataListParm.parammaps.date.getDate() - 1))
  268. // var start = this.table.getdataListParm.parammaps.mydate - 1
  269. this.table.getdataListParm.parammaps.date = parseTime(start, '{y}-{m}-{d}')
  270. this.getTab2List()
  271. this.getTab2List2()
  272. this.getTab2List3()
  273. this.getTab2List4()
  274. }
  275. },
  276. handleNext() {
  277. if (this.table.getdataListParm.parammaps.date !== '' && this.table.getdataListParm.parammaps.date !== null) {
  278. this.table.getdataListParm.parammaps.date = new Date(this.table.getdataListParm.parammaps.date)
  279. var stop = new Date(this.table.getdataListParm.parammaps.date.setDate(this.table.getdataListParm.parammaps.date.getDate() + 1))
  280. this.table.getdataListParm.parammaps.date = parseTime(stop, '{y}-{m}-{d}')
  281. this.getTab2List()
  282. this.getTab2List2()
  283. this.getTab2List3()
  284. this.getTab2List4()
  285. }
  286. },
  287. // 切换tab2日期
  288. changeTab2Date() {
  289. this.getTab2List()
  290. this.getTab2List2()
  291. this.getTab2List3()
  292. this.getTab2List4()
  293. },
  294. changePasture(item) {
  295. console.log(item)
  296. this.table.getdataListParm.parammaps.pastureid = this.table.getdataListParm.parammaps.pastureid
  297. this.table2.getdataListParm.parammaps.pastureid = this.table.getdataListParm.parammaps.pastureid
  298. this.table3.getdataListParm.parammaps.pastureid = this.table.getdataListParm.parammaps.pastureid
  299. this.table4.getdataListParm.parammaps.pastureid = this.table.getdataListParm.parammaps.pastureid
  300. this.getTab2List()
  301. this.getTab2List2()
  302. this.getTab2List3()
  303. this.getTab2List4()
  304. },
  305. // 宾州筛分析
  306. getTab2List() {
  307. this.table.listLoading = true
  308. GetDataByName(this.table.getdataListParm).then(response => {
  309. console.log('宾州筛分析table数据', response.data.list)
  310. if (response.data.list !== null) {
  311. this.table.list = response.data.list
  312. this.table.total = response.data.total
  313. } else {
  314. this.table.list = []
  315. }
  316. setTimeout(() => {
  317. this.table.listLoading = false
  318. }, 100)
  319. })
  320. },
  321. // 粪便筛分析
  322. getTab2List2() {
  323. this.table2.listLoading = true
  324. this.table2.getdataListParm.parammaps.date = this.table.getdataListParm.parammaps.date
  325. GetDataByName(this.table2.getdataListParm).then(response => {
  326. console.log('粪便筛分析table数据', response.data.list)
  327. if (response.data.list !== null) {
  328. this.table2.list = response.data.list
  329. this.table2.total = response.data.total
  330. } else {
  331. this.table2.list = []
  332. }
  333. setTimeout(() => {
  334. this.table2.listLoading = false
  335. }, 100)
  336. })
  337. },
  338. // BCS评分
  339. getTab2List3() {
  340. this.table3.listLoading = true
  341. this.table3.getdataListParm.parammaps.date = this.table.getdataListParm.parammaps.date
  342. GetDataByName(this.table3.getdataListParm).then(response => {
  343. console.log('BCS评分table数据', response.data.list)
  344. if (response.data.list !== null) {
  345. this.table3.list = response.data.list
  346. this.table3.total = response.data.total
  347. } else {
  348. this.table3.list = []
  349. }
  350. setTimeout(() => {
  351. this.table3.listLoading = false
  352. }, 100)
  353. })
  354. },
  355. // 粪便评分
  356. getTab2List4() {
  357. this.table4.listLoading = true
  358. this.table4.getdataListParm.parammaps.date = this.table.getdataListParm.parammaps.date
  359. GetDataByName(this.table4.getdataListParm).then(response => {
  360. console.log('成本分析table数据', response.data.list)
  361. if (response.data.list !== null) {
  362. this.table4.list = response.data.list
  363. this.table4.total = response.data.total
  364. } else {
  365. this.table4.list = []
  366. }
  367. setTimeout(() => {
  368. this.table4.listLoading = false
  369. }, 100)
  370. })
  371. }
  372. }
  373. }
  374. </script>
  375. <style lang="scss" scoped>
  376. .search{margin-bottom:10px;}
  377. </style>