tab3.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <template>
  2. <div class="app-content">
  3. <div class="search">
  4. <div>
  5. <el-date-picker v-model="table.getdataListParm.parammaps.inputDatetime" :clearable="false" style="width: 250px;float: left;margin-bottom: 10px;" class="inputDatetime filter-item" type="daterange" :range-separator="$t('common.to')" :start-placeholder="$t('common.startTime')" :end-placeholder="$t('common.endTime')" :picker-options="pickerOptions" />
  6. <el-button style="float: left;margin-bottom: 10px;" :disabled="Beforedisabled" class="el-icon-arrow-left elIconArrowLeft" @click="handleBefore" />
  7. <el-button style="float: left;margin-bottom: 10px;" :disabled="Nextdisabled" class="el-icon-arrow-right elIconArrowRight" @click="handleNext" />
  8. </div>
  9. <div style="clear: both; margin-top: 10px;">
  10. <el-select v-model="table.getdataListParm.parammaps.pastureid"
  11. :placeholder="$t('supplier.mc')" class="filter-item" style="width: 110px;float: left;">
  12. <el-option v-for="item in pastureList" :key="item.pastureid" :label="item.pasturename" :value="item.pastureid" />
  13. </el-select>
  14. <el-input v-model="table.getdataListParm.parammaps.tmrtname" style="width: 110px;float: left;" :placeholder="$t('processAnalysis.tmrName')" class="filter-item" clearable />
  15. <el-input v-model="table.getdataListParm.parammaps.projname" style="width: 110px;float: left;" :placeholder="$t('errorAnalysis.projname')" class="filter-item" clearable />
  16. <el-select v-model="table.getdataListParm.parammaps.times" style="width: 110px;float: left;" filterable :placeholder="$t('errorAnalysis.isTrainNumber')" class="filter-item" clearable>
  17. <el-option v-for="item in frequencyList" :key="item.id" :label="item.name" :value="item.id" />
  18. </el-select>
  19. <el-input v-model="table.getdataListParm.parammaps.templetname" style="width: 110px;float: left;" placeholder="配方名称" class="filter-item" clearable />
  20. <el-input v-model="table.getdataListParm.parammaps.fname" style="width: 110px;float: left;" :placeholder="$t('errorAnalysis.isHouseName')" class="filter-item" clearable />
  21. <el-select v-model="table.getdataListParm.parammaps.buttontype" style="width: 110px;float: left;" filterable :placeholder="$t('errorAnalysis.tzfs')"class="filter-item" clearable>
  22. <el-option v-for="item in jumpModeList" :key="item.id" :label="item.name" :value="item.id" />
  23. </el-select>
  24. <el-select v-model="table.getdataListParm.parammaps.isuse" style="width: 110px;float: left;" filterable placeholder="上传状态" class="filter-item" clearable>
  25. <el-option v-for="item in isuseList" :key="item.id" :label="item.name" :value="item.id" />
  26. </el-select>
  27. <el-button class="successBorder" style="float:left;" @click="form_search">{{$t('common.query')}}</el-button>
  28. <el-button class="successBorder" style="float:left;" @click="handleRefresh">{{$t('common.reset')}}</el-button>
  29. <el-button class="export" style="float: right;margin-right: 10px;margin-bottom:10px;" @click="handleExport">{{$t('dashboard.Export')}}</el-button>
  30. </div>
  31. </div>
  32. <div class="table">
  33. <el-table
  34. :key="table.tableKey"
  35. v-loading="table.listLoading"
  36. :element-loading-text="$t('common.tableMsg')"
  37. :data="table.list"
  38. border
  39. fit
  40. highlight-current-row
  41. style="width: 100%;"
  42. :row-style="rowStyle"
  43. :cell-style="cellStyle"
  44. class="elTable table-fixed"
  45. :height="myHeight2"
  46. >
  47. <el-table-column :label="$t('feedingEfficiency.mc')"min-width="55px" align="center" prop="牧场" />
  48. <el-table-column :label="$t('errorAnalysis.date')" min-width="55px" align="center" prop="日期" />
  49. <el-table-column :label="$t('errorAnalysis.tmrnames')" min-width="55px" align="center" prop="TMR名称" />
  50. <el-table-column :label="$t('errorAnalysis.projname')" min-width="55px" align="center" prop="车次" />
  51. <el-table-column :label="$t('errorAnalysis.isTrainNumber')" min-width="55px" align="center" prop="班次" />
  52. <el-table-column :label="$t('errorAnalysis.feedName')" min-width="55px" align="center" prop="配方名称" />
  53. <el-table-column :label="$t('errorAnalysis.pen')" min-width="55px" align="center" prop="栏舍" />
  54. <el-table-column :label="$t('errorAnalysis.llzl')" min-width="55px" align="center" prop="理论重量" />
  55. <el-table-column :label="$t('errorAnalysis.acWeight')" min-width="55px" align="center" prop="实际重量" />
  56. <el-table-column :label="$t('errorAnalysis.wcz')" min-width="55px" align="center" prop="误差值" />
  57. <el-table-column :label="$t('errorAnalysis.zql')" min-width="55px" align="center" prop="准确率" />
  58. <el-table-column :label="$t('errorAnalysis.startTime')" min-width="55px" align="center" prop="开始时间" />
  59. <el-table-column :label="$t('errorAnalysis.endTime')" min-width="55px" align="center" prop="结束时间" />
  60. <!-- <el-table-column :label="$t('errorAnalysis.jsTime')" min-width="70px" align="center" prop="搅拌时间" /> -->
  61. <el-table-column :label="$t('errorAnalysis.tzfs')" min-width="55px" align="center" prop="跳转方式" />
  62. <el-table-column :label="$t('errorAnalysis.stWeight')" min-width="55px" align="center" prop="开始重量" />
  63. <el-table-column :label="$t('errorAnalysis.edWeight')" min-width="55px" align="center" prop="结束重量" />
  64. </el-table>
  65. <!-- <pagination v-show="tab3.table.total>=0" :total="tab3.table.total" :page.sync="tab3.table.getdataListParm.offset" :limit.sync="tab3.table.getdataListParm.pagecount" @pagination="getTab3List" /> -->
  66. </div>
  67. </div>
  68. </template>
  69. <script>
  70. import echarts from 'echarts'
  71. require('echarts/theme/macarons')
  72. import { GetDataByName, GetReportform, GetDataByNames } from '@/api/common'
  73. import Cookies from 'js-cookie'
  74. import { parseTime } from '@/utils/index.js'
  75. import Pagination from '@/components/Pagination'
  76. import { json2excel } from '@/utils/index.js'
  77. import { MessageBox } from 'element-ui'
  78. export default {
  79. name: 'Tab2',
  80. components: { Pagination },
  81. data() {
  82. return {
  83. Beforedisabled: false,
  84. Nextdisabled: false,
  85. pickerMinDate: '',
  86. pickerOptions: {
  87. onPick: ({ maxDate, minDate }) => {
  88. this.pickerMinDate = minDate.getTime()
  89. if (maxDate) {
  90. this.pickerMinDate = ''
  91. }
  92. },
  93. // 限制不能选择今天之后的日期
  94. disabledDate: (time) => {
  95. if (this.pickerMinDate !== '') {
  96. const one = 31 * 24 * 3600 * 1000
  97. const minTime = this.pickerMinDate - one
  98. let maxTime = this.pickerMinDate + one
  99. if (maxTime > new Date()) {
  100. maxTime = new Date()
  101. }
  102. return time.getTime() < minTime || time.getTime() > maxTime
  103. }
  104. return time.getTime() > Date.now()
  105. }
  106. },
  107. requestParams: [
  108. { name: 'getPastureListJT', offset: 0, pagecount: 0, parammaps: { pastureid: Cookies.get('pastureid'), pasturename: '' }}
  109. ],
  110. pastureList: [], // 牧场
  111. // 班次
  112. maxTime: {
  113. getMaxTimesParm: {
  114. name: 'getSysoptEnable',
  115. page: 1,
  116. offset: 1,
  117. pagecount: 1,
  118. returntype: 'Map',
  119. parammaps: {
  120. pastureid: Cookies.get('pastureid'),
  121. inforname: 'times'
  122. }
  123. }
  124. },
  125. jumpModeList: [{ id: '0', name:this.$t('errorAnalysis.sdtz') }, { id: '1', name:this.$t('errorAnalysis.zdtz') }],
  126. frequencyList: [],
  127. isuseList: [{ id: '0', name:this.$t('errorAnalysis.wwc')}, { id: '2', name:this.$t('errorAnalysis.bfwc')}, { id: '1', name:this.$t('errorAnalysis.qbwc') }],
  128. table: {
  129. getdataListParm: {
  130. name: 'getStatisticsSL',
  131. page: 1,
  132. offset: 1,
  133. pagecount: '',
  134. returntype: 'Map',
  135. parammaps: {
  136. pastureid: Cookies.get('pastureid'),
  137. startTime: parseTime(new Date(), '{y}-{m}-{d}'),
  138. stopTime: parseTime(new Date(), '{y}-{m}-{d}'),
  139. inputDatetime: [new Date(), new Date()],
  140. tmrtname: '',
  141. projname: '',
  142. times: '',
  143. templetname: '',
  144. fname: '',
  145. buttontype: '',
  146. isuse: ''
  147. }
  148. },
  149. tableKey: 1,
  150. list: [],
  151. total: 0,
  152. listLoading: true,
  153. temp: {}
  154. },
  155. rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
  156. cellStyle: { padding: 0 + 'px' },
  157. myHeight2: document.documentElement.clientHeight - 85 - 210
  158. }
  159. },
  160. create() {
  161. this.getDownList()
  162. this.getIsDisplay()
  163. },
  164. activated() {
  165. this.getTimeFn()
  166. this.getDownList()
  167. this.getIsDisplay()
  168. },
  169. methods: {
  170. getTimeFn() {
  171. const that = this
  172. const start = new Date()
  173. const end = new Date()
  174. const start2 = new Date()
  175. const end2 = new Date()
  176. start2.setTime(start2.getTime() - 3600 * 1000 * 24 * 1)
  177. end2.setTime(end2.getTime() - 3600 * 1000 * 24 * 1)
  178. that.table.getdataListParm.parammaps.inputDatetime = [start2, end2]
  179. that.table.getdataListParm.parammaps.startTime = parseTime(start2, '{y}-{m}-{d}')
  180. that.table.getdataListParm.parammaps.stopTime = parseTime(end2, '{y}-{m}-{d}')
  181. },
  182. getIsDisplay() {
  183. GetDataByName(this.maxTime.getMaxTimesParm).then(response => {
  184. if (response.data.list[0].inforvalue == 1) {
  185. this.frequencyList = [{ id: '1', name: this.$t('errorAnalysis.one'), }]
  186. } else if (response.data.list[0].inforvalue == 2) {
  187. this.frequencyList = [{ id: '1', name: this.$t('errorAnalysis.one'), }, { id: '2', name: this.$t('errorAnalysis.two'), }]
  188. } else if (response.data.list[0].inforvalue == 3) {
  189. this.frequencyList = [{ id: '1', name: this.$t('errorAnalysis.one'), }, { id: '2', name: this.$t('errorAnalysis.two'), }, { id: '3', name: this.$t('errorAnalysis.three'), }]
  190. } else if (response.data.list[0].inforvalue == 4) {
  191. this.frequencyList = [{ id: '1', name: this.$t('errorAnalysis.one'), }, { id: '2', name: this.$t('errorAnalysis.two'), }, { id: '3', name: this.$t('errorAnalysis.three'), }, { id: '4', name: this.$t('errorAnalysis.four'), }]
  192. }
  193. })
  194. },
  195. getDownList() {
  196. GetDataByNames(this.requestParams).then(response => {
  197. this.pastureList = response.data.getPastureListJT.list
  198. this.table.getdataListParm.parammaps.pastureid = response.data.getPastureListJT.list[0].pastureid
  199. this.getList()
  200. })
  201. },
  202. getList() {
  203. this.table.listLoading = true
  204. GetDataByName(this.table.getdataListParm).then(response => {
  205. console.log('撒料统计table数据', response.data.list)
  206. if (response.data.list !== null) {
  207. this.table.list = response.data.list
  208. this.table.total = response.data.total
  209. } else {
  210. this.table.list = []
  211. }
  212. setTimeout(() => {
  213. this.table.listLoading = false
  214. }, 100)
  215. })
  216. },
  217. form_search() {
  218. this.table.getdataListParm.name = 'getStatisticsSL'
  219. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  220. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  221. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  222. } else {
  223. this.table.getdataListParm.parammaps.inputDatetime = ''
  224. this.table.getdataListParm.parammaps.startTime = ''
  225. this.table.getdataListParm.parammaps.stopTime = ''
  226. }
  227. this.table.getdataListParm.offset = 1
  228. this.getList()
  229. },
  230. handleRefresh() {
  231. this.table.getdataListParm.parammaps.tmrtname = ''
  232. this.table.getdataListParm.parammaps.projname = ''
  233. this.table.getdataListParm.parammaps.times = ''
  234. this.table.getdataListParm.parammaps.templetname = ''
  235. this.table.getdataListParm.parammaps.buttontype = ''
  236. this.table.getdataListParm.parammaps.fname = ''
  237. this.getList()
  238. },
  239. handleExport() {
  240. var excelDatasTab3 = [
  241. {
  242. tHeader: ['日期', 'TMR名称', '车次', '班次', '配方名称', '栏舍', '理论重量', '实际重量', '误差值', '准确率', '开始时间', '结束时间', '跳转方式', '开始重量', '结束重量', '搅拌时间'],
  243. filterVal: ['日期', 'TMR名称', '车次', '班次', '配方名称', '栏舍', '理论重量', '实际重量', '误差值', '准确率', '开始时间', '结束时间', '跳转方式', '开始重量', '结束重量', '搅拌时间'],
  244. tableDatas: this.tab3.table.list,
  245. sheetName: '撒料统计'
  246. }
  247. ]
  248. json2excel(excelDatasTab3, '撒料统计', true, 'xlsx')
  249. },
  250. handleBefore() {
  251. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  252. var start = new Date(this.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.table.getdataListParm.parammaps.inputDatetime[0].getDate() - 1))
  253. var stop = new Date(this.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.table.getdataListParm.parammaps.inputDatetime[1].getDate() - 1))
  254. if (stop > Date.now() - 8.64e7) {
  255. this.Nextdisabled = true
  256. this.Beforedisabled = false
  257. } else {
  258. this.Nextdisabled = false
  259. this.Beforedisabled = false
  260. }
  261. this.table.getdataListParm.parammaps.inputDatetime.length = 0
  262. this.table.getdataListParm.parammaps.inputDatetime.push(start, stop)
  263. this.$forceUpdate()
  264. }
  265. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  266. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  267. this.getList()
  268. },
  269. handleNext() {
  270. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  271. var start2 = new Date(this.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.table.getdataListParm.parammaps.inputDatetime[0].getDate() + 1))
  272. var stop2 = new Date(this.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.table.getdataListParm.parammaps.inputDatetime[1].getDate() + 1))
  273. if (stop2 > Date.now() - 8.64e7) {
  274. this.Nextdisabled = true
  275. this.Beforedisabled = false
  276. } else {
  277. this.Nextdisabled = false
  278. this.Beforedisabled = false
  279. }
  280. this.table.getdataListParm.parammaps.inputDatetime.length = 0
  281. this.table.getdataListParm.parammaps.inputDatetime.push(start2, stop2)
  282. this.$forceUpdate()
  283. }
  284. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  285. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  286. this.getList()
  287. }
  288. }
  289. }
  290. </script>
  291. <style lang="scss" scoped>
  292. /deep/ .el-table th>.cell{
  293. padding-left: 0 !important;;
  294. padding-right: 0 !important;;
  295. }
  296. /deep/ .el-table td>.cell{
  297. padding-left: 0 !important;;
  298. padding-right: 0 !important;;
  299. }
  300. </style>