7c4de531623da81515fce34cca5989a982f6169a.svn-base 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828
  1. <template>
  2. <div class="app-container">
  3. <div class="search">
  4. <el-date-picker v-model="table.getdataListParm.parammaps.inputDatetime" class="inputDatetime filter-item" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" style="width: 250px;" />
  5. <el-button class="el-icon-arrow-left elIconArrowLeft" @click="handleBefore" />
  6. <el-button class="el-icon-arrow-right elIconArrowRight" @click="handleNext" />
  7. <el-select v-model="table.getdataListParm.parammaps.barid" placeholder="栏舍名称" class="filter-item" style="width: 120px;" clearable>
  8. <el-option v-for="item in houseNameList" :key="item.id" :label="item.bname" :value="item.id" />
  9. </el-select>
  10. <el-button class="successBorder" @click="handleSearch">查询</el-button>
  11. <el-button class="successBorder" @click="handleRefresh">重置</el-button>
  12. </div>
  13. <div class="operation">
  14. <el-button v-if="isRoleEdit" icon="el-icon-plus" class="success" style="float: left;margin-right:10px;" @click="handleCreate">新增</el-button>
  15. <el-button v-if="isRoleEdit" icon="el-icon-delete" class="danger" style="float: left;margin-right:10px;" @click="handleDelete">删除</el-button>
  16. <el-button v-if="isRoleEdit" icon="el-icon-copy-document" class="copy" style="float: left;margin-right:10px;" @click="handleCopy">复制</el-button>
  17. <el-upload v-if="isRoleEdit" style="float: right;" :headers="headers" :data="uploadData" :action="uploadExcelUrl" :show-file-list="false" :before-upload="beforeImport" :on-success="handleImportSuccess">
  18. <el-button class="import" icon="el-icon-download" style="float: right;">导入</el-button>
  19. </el-upload>
  20. <el-dropdown style="float: right;margin-right: 10px;">
  21. <el-button class="export" icon="el-icon-upload2">导出</el-button>
  22. <el-dropdown-menu slot="dropdown">
  23. <el-dropdown-item @click.native="handleExport(1)">导出模板</el-dropdown-item>
  24. <el-dropdown-item @click.native="handleExport(2)">导出数据</el-dropdown-item>
  25. </el-dropdown-menu>
  26. </el-dropdown>
  27. </div>
  28. <div class="table">
  29. <el-table
  30. :key="table.tableKey"
  31. v-loading="table.listLoading"
  32. element-loading-text="给我一点时间"
  33. :data="table.list"
  34. border
  35. fit
  36. highlight-current-row
  37. style="width: 100%;"
  38. :row-style="rowStyle"
  39. :cell-style="cellStyle"
  40. class="elTable table-fixed"
  41. @selection-change="handleSelectionChange"
  42. >
  43. <el-table-column type="selection" align="center" width="50" />
  44. <el-table-column label="序号" align="center" type="index" width="50px">
  45. <template slot-scope="scope">
  46. <span>{{ scope.$index + (table.pageNum-1) * table.pageSize + 1 }}</span>
  47. </template>
  48. </el-table-column>
  49. <el-table-column label="栏舍名称" min-width="150px" align="center">
  50. <template slot-scope="scope">
  51. <span>{{ scope.row.barname }}</span>
  52. </template>
  53. </el-table-column>
  54. <el-table-column label="标准分数(分)" min-width="90px" align="center">
  55. <template slot-scope="scope">
  56. <span>{{ scope.row.standardscore }}</span>
  57. </template>
  58. </el-table-column>
  59. <el-table-column label="牛头数(头)" min-width="90px" align="center">
  60. <template slot-scope="scope">
  61. <span>{{ scope.row.cowsum }}</span>
  62. </template>
  63. </el-table-column>
  64. <el-table-column label="评分" align="center">
  65. <el-table-column label="1分(头)" min-width="65px" align="center">
  66. <template slot-scope="scope">
  67. <span>{{ scope.row.score1 }}({{ scope.row.score1rate }}%)</span>
  68. </template>
  69. </el-table-column>
  70. <el-table-column label="2分(头)" min-width="65px" align="center">
  71. <template slot-scope="scope">
  72. <span>{{ scope.row.score2 }}({{ scope.row.score2rate }}%)</span>
  73. </template>
  74. </el-table-column>
  75. <el-table-column label="3分(头)" min-width="65px" align="center">
  76. <template slot-scope="scope">
  77. <span>{{ scope.row.score3 }}({{ scope.row.score3rate }}%)</span>
  78. </template>
  79. </el-table-column>
  80. <el-table-column label="4分(头)" min-width="65px" align="center">
  81. <template slot-scope="scope">
  82. <span>{{ scope.row.score4 }}({{ scope.row.score4rate }}%)</span>
  83. </template>
  84. </el-table-column>
  85. <el-table-column label="5分(头)" min-width="65px" align="center">
  86. <template slot-scope="scope">
  87. <span>{{ scope.row.score5 }}({{ scope.row.score5rate }}%)</span>
  88. </template>
  89. </el-table-column>
  90. </el-table-column>
  91. <el-table-column label="备注" min-width="90px" align="center">
  92. <template slot-scope="scope">
  93. <span>{{ scope.row.remark }}</span>
  94. </template>
  95. </el-table-column>
  96. <el-table-column label="操作人" min-width="90px" align="center">
  97. <template slot-scope="scope">
  98. <span>{{ scope.row.emp }}</span>
  99. </template>
  100. </el-table-column>
  101. <el-table-column label="操作日期" min-width="90px" align="center">
  102. <template slot-scope="scope">
  103. <span>{{ scope.row.operatetime }}</span>
  104. </template>
  105. </el-table-column>
  106. <el-table-column label="操作" align="center" width="80" class-name="small-padding fixed-width" fixed="right">
  107. <template slot-scope="{row}">
  108. <el-button v-if="isRoleEdit" class="miniSuccess" icon="el-icon-edit-outline" @click="handleUpdate(row)" />
  109. <span v-if="isRoleEdit" class="centerSpan">|</span>
  110. <el-button v-if="isRoleEdit" class="miniDanger" icon="el-icon-delete" @click="handleRowDelete(row)" />
  111. </template>
  112. </el-table-column>
  113. </el-table>
  114. <pagination v-show="table.total>=0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="getList" />
  115. </div>
  116. <!-- 新增/编辑 -->
  117. <el-dialog :title="textMap[create.dialogStatus]" :visible.sync="create.dialogFormVisible" :close-on-click-modal="false" width="90%">
  118. <div class="app-add">
  119. <el-form ref="temp" :rules="create.rules" :model="create.temp" label-position="right" label-width="150px" style="width: 100%;margin:0 auto 50px">
  120. <el-row>
  121. <el-col :span="24">
  122. <h3 style="width: 150px;text-align: right;">栏舍信息</h3>
  123. </el-col>
  124. </el-row>
  125. <el-row>
  126. <el-col v-if="create.dialogStatus=='create'" :span="6">
  127. <el-form-item label="栏舍名称:" prop="barid">
  128. <el-select ref="barid" v-model="create.temp.barid" filterable placeholder="栏舍名称" class="filter-item" style="width: 100%;" @change="changeBar">
  129. <el-option v-for="item in houseNameList" :key="item.id" :label="item.bname" :value="item.id" />
  130. </el-select>
  131. </el-form-item>
  132. </el-col>
  133. <el-col v-else :span="12">
  134. <el-form-item label="栏舍名称:" prop="barname">
  135. <el-input ref="barname" v-model="create.temp.barname" disabled class="filter-item" placeholder="barname" />
  136. </el-form-item>
  137. </el-col>
  138. </el-row>
  139. <el-row>
  140. <el-col :span="24">
  141. <h3 style="width: 150px;text-align: right;">评分</h3>
  142. </el-col>
  143. </el-row>
  144. <el-row>
  145. <el-col :span="6">
  146. <el-form-item label="标准分数(分):" prop="standardscore">
  147. <el-input ref="standardscore" v-model="create.temp.standardscore" class="filter-item" style="width: 100%;" disabled />
  148. </el-form-item>
  149. </el-col>
  150. <el-col :span="6">
  151. <el-form-item label="牛头数(头):" prop="cowsum">
  152. <el-input ref="cowsum" v-model="create.temp.cowsum" class="filter-item" style="width: 100%;" disabled />
  153. </el-form-item>
  154. </el-col>
  155. <el-col :span="6">
  156. <el-form-item label="1分" prop="score1">
  157. <el-input ref="score1" v-model="create.temp.score1" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" />
  158. </el-form-item>
  159. </el-col>
  160. <el-col :span="6">
  161. <el-form-item label="2分" prop="score2">
  162. <el-input ref="score2" v-model="create.temp.score2" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" />
  163. </el-form-item>
  164. </el-col>
  165. </el-row>
  166. <el-row>
  167. <el-col :span="6">
  168. <el-form-item label="3分" prop="score3">
  169. <el-input ref="score3" v-model="create.temp.score3" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" />
  170. </el-form-item>
  171. </el-col>
  172. <el-col :span="6">
  173. <el-form-item label="4分" prop="score4">
  174. <el-input ref="score4" v-model="create.temp.score4" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" />
  175. </el-form-item>
  176. </el-col>
  177. <el-col :span="6">
  178. <el-form-item label="5分" prop="score5">
  179. <el-input ref="score5" v-model="create.temp.score5" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" />
  180. </el-form-item>
  181. </el-col>
  182. </el-row>
  183. <el-row>
  184. <el-col :span="24">
  185. <h3 style="width: 150px;text-align: right;">操作详情</h3>
  186. </el-col>
  187. </el-row>
  188. <el-row>
  189. <el-col :span="6">
  190. <el-form-item label="操作人:" prop="emp">
  191. <el-select ref="emp" v-model="create.temp.emp" filterable placeholder="操作人" class="filter-item" style="width: 100%;" @blur="blurEmp">
  192. <el-option v-for="item in create.noteTakerList" :key="item.myId" :label="item.emp" :value="item.emp" />
  193. </el-select>
  194. </el-form-item>
  195. </el-col>
  196. <el-col :span="6">
  197. <el-form-item label="操作日期:" prop="operatetime">
  198. <el-date-picker v-model="create.temp.operatetime" type="date" placeholder="选择日期" format="yyyy-MM-dd" value-format="yyyy-MM-dd" style="width: 100%;" :clearable="false" @change="changeOperatetime" />
  199. </el-form-item>
  200. </el-col>
  201. <el-col :span="12">
  202. <el-form-item label="备注:" prop="remark">
  203. <el-input ref="remark" v-model="create.temp.remark" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" placeholder="1-255字符" maxlength="255" class="filter-item" style="width: 100%;" />
  204. </el-form-item>
  205. </el-col>
  206. </el-row>
  207. </el-form>
  208. <div slot="footer" class="dialog-footer">
  209. <el-button class="cancelClose" @click="create.dialogFormVisible = false;getList()">关闭</el-button>
  210. <el-button v-if="create.dialogStatus==='create'" class="save" :disabled="isokDisable" @click="createDataAgain()">确认新增</el-button>
  211. <el-button v-if="create.dialogStatus==='create' || create.dialogStatus==='update'" class="save" :disabled="isokDisable" @click="create.dialogStatus==='create'?createData():updateData()">确认</el-button>
  212. </div>
  213. </div>
  214. </el-dialog>
  215. </div>
  216. </template>
  217. <script>
  218. import { GetDataByName, PostDataByName, failproccess, ExecDataByConfig, GetDataByNames, checkButtons } from '@/api/common'
  219. import Cookies from 'js-cookie'
  220. import { parseTime, json2excel } from '@/utils/index.js'
  221. import Pagination from '@/components/Pagination'
  222. import { MessageBox } from 'element-ui'
  223. import axios from 'axios'
  224. import { getToken } from '@/utils/auth'
  225. export default {
  226. name: 'DungScores',
  227. components: { Pagination },
  228. data() {
  229. return {
  230. isRoleEdit: [],
  231. requestParams: [
  232. { name: 'getBarListEnable', offset: 0, pagecount: 0, parammaps: { 'pastureid': Cookies.get('pastureid') }},
  233. { name: 'getSysoptEnable', offset: 0, pagecount: 0, parammaps: { 'pastureid': Cookies.get('pastureid'), 'inforname': 'times' }}
  234. ],
  235. houseNameList: [], // 栏舍名称
  236. frequencyList: [], // 班次
  237. table: {
  238. getdataListParm: {
  239. name: 'getDungscoreList',
  240. page: 1,
  241. offset: 1,
  242. pagecount: 10,
  243. returntype: 'Map',
  244. parammaps: {
  245. pastureid: Cookies.get('pastureid'),
  246. barid: '',
  247. times: '',
  248. startTime: '',
  249. stopTime: '',
  250. inputDatetime: ''
  251. }
  252. },
  253. tableKey: 0,
  254. list: [],
  255. total: 0,
  256. listLoading: true,
  257. temp: {}
  258. },
  259. // 新增/编辑
  260. create: {
  261. dialogFormVisible: false,
  262. dialogStatus: '',
  263. temp: { pastureid: Cookies.get('pastureid'), operatetime: parseTime(new Date(), '{y}-{m}-{d}'), emp: Cookies.get('employename'), barid: '', barname: '', times: '', standardscore: '', cowsum: '', score1: '', score2: '', score3: '', score4: '', score5: '', remark: '', ftid: '', ftname: '' },
  264. rules: {
  265. barid: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  266. times: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  267. score1: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  268. score2: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  269. score3: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  270. score4: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  271. score5: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }]
  272. },
  273. // 操作人
  274. getdataListParm: {
  275. name: 'getDungscoreEmpHis',
  276. page: 1,
  277. offset: 1,
  278. pagecount: 10,
  279. returntype: 'Map',
  280. parammaps: {
  281. pastureid: Cookies.get('pastureid')
  282. }
  283. },
  284. // 粪便评分参数
  285. getdataListParm2: {
  286. name: 'getDungAndBodyScore',
  287. page: 1,
  288. offset: 1,
  289. pagecount: 1,
  290. returntype: 'Map',
  291. parammaps: {
  292. pastureid: Cookies.get('pastureid'),
  293. barid: '',
  294. date: ''
  295. }
  296. },
  297. noteTakerList: [] // 记录人
  298. },
  299. textMap: {
  300. create: '新增',
  301. update: '编辑'
  302. },
  303. requestParam: {},
  304. download: {
  305. getdataListParm: {
  306. name: 'getDungscoreList',
  307. page: 1,
  308. offset: 1,
  309. pagecount: 0,
  310. returntype: 'Map',
  311. parammaps: {
  312. pastureid: Cookies.get('pastureid'),
  313. barid: '',
  314. times: '',
  315. startTime: '',
  316. stopTime: '',
  317. inputDatetime: ''
  318. }
  319. },
  320. list: []
  321. },
  322. isokDisable: false,
  323. selectList: [],
  324. rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
  325. cellStyle: { padding: 0 + 'px' }
  326. }
  327. },
  328. computed: {
  329. // 设置请求头
  330. headers() {
  331. return {
  332. token: getToken()
  333. }
  334. },
  335. uploadData() {
  336. return {
  337. name: 'checkbarname,insertDungscoreUpload',
  338. importParams: '栏舍名称,1分(头),2分(头),3分(头),4分(头),5分(头),备注,操作人,操作日期',
  339. sheetname: 'Sheet1',
  340. // 登录牧场
  341. pastureid: Cookies.get('pastureid'),
  342. // 日期参数
  343. dateParams: '操作日期',
  344. // 必填参数
  345. requiredParams: '栏舍名称,1分(头),2分(头),3分(头),4分(头),5分(头)',
  346. // 为数值的参数
  347. numParams: '1分(头),2分(头),3分(头),4分(头),5分(头)'
  348. }
  349. },
  350. // 设置上传地址
  351. uploadExcelUrl() {
  352. return process.env.VUE_APP_BASE_API + 'authdata/ImportExcel'
  353. }
  354. },
  355. created() {
  356. this.getList()
  357. this.getDownList()
  358. this.getButtons()
  359. },
  360. methods: {
  361. getButtons() {
  362. const Edit = 'DungScores'
  363. const isRoleEdit = checkButtons(JSON.parse(sessionStorage.getItem('buttons')), Edit)
  364. this.isRoleEdit = isRoleEdit
  365. },
  366. getDownList() {
  367. GetDataByNames(this.requestParams).then(response => {
  368. this.houseNameList = response.data.getBarListEnable.list
  369. if (response.data.getSysoptEnable.list !== null) {
  370. for (let i = 1; i <= response.data.getSysoptEnable.list[0].inforvalue; i++) {
  371. const obj = {}
  372. obj.id = String(i)
  373. if (i == 1) { obj.name = '第一班' } else if (i == 2) { obj.name = '第二班' } else if (i == 3) { obj.name = '第三班' } else if (i == 4) { obj.name = '第四班' }
  374. this.frequencyList.push(obj)
  375. }
  376. } else {
  377. this.frequencyList = []
  378. }
  379. })
  380. },
  381. handleBefore() {
  382. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  383. var start = this.table.getdataListParm.parammaps.inputDatetime[0] - 3600 * 1000 * 24
  384. var stop = this.table.getdataListParm.parammaps.inputDatetime[1] - 3600 * 1000 * 24
  385. this.table.getdataListParm.parammaps.inputDatetime.length = 0
  386. this.table.getdataListParm.parammaps.inputDatetime.push(start, stop)
  387. this.$forceUpdate()
  388. }
  389. },
  390. handleNext() {
  391. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  392. var start = this.table.getdataListParm.parammaps.inputDatetime[0] + 3600 * 1000 * 24
  393. var stop = this.table.getdataListParm.parammaps.inputDatetime[1] + 3600 * 1000 * 24
  394. this.table.getdataListParm.parammaps.inputDatetime.length = 0
  395. this.table.getdataListParm.parammaps.inputDatetime.push(start, stop)
  396. this.$forceUpdate()
  397. }
  398. },
  399. getList() {
  400. this.table.listLoading = true
  401. GetDataByName(this.table.getdataListParm).then(response => {
  402. console.log('table数据', response.data.list)
  403. if (response.data.list !== null) {
  404. for (let i = 0; i < response.data.list.length; i++) {
  405. this.$set(response.data.list[i], 'score1rate', (parseFloat(response.data.list[i].score1) / parseFloat(response.data.list[i].cowsum) * 100).toFixed(2))
  406. this.$set(response.data.list[i], 'score2rate', (parseFloat(response.data.list[i].score2) / parseFloat(response.data.list[i].cowsum) * 100).toFixed(2))
  407. this.$set(response.data.list[i], 'score3rate', (parseFloat(response.data.list[i].score3) / parseFloat(response.data.list[i].cowsum) * 100).toFixed(2))
  408. this.$set(response.data.list[i], 'score4rate', (parseFloat(response.data.list[i].score4) / parseFloat(response.data.list[i].cowsum) * 100).toFixed(2))
  409. this.$set(response.data.list[i], 'score5rate', (100 - response.data.list[i].score1rate - response.data.list[i].score2rate - response.data.list[i].score3rate - response.data.list[i].score4rate).toFixed(2))
  410. }
  411. this.table.list = response.data.list
  412. this.table.pageNum = response.data.pageNum
  413. this.table.pageSize = response.data.pageSize
  414. this.table.total = response.data.total
  415. } else {
  416. this.table.list = []
  417. }
  418. setTimeout(() => {
  419. this.table.listLoading = false
  420. }, 100)
  421. })
  422. },
  423. handleSearch() {
  424. console.log('点击了查询')
  425. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  426. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  427. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  428. } else {
  429. this.table.getdataListParm.parammaps.inputDatetime = ''
  430. this.table.getdataListParm.parammaps.startTime = ''
  431. this.table.getdataListParm.parammaps.stopTime = ''
  432. }
  433. this.table.getdataListParm.offset = 1
  434. this.getList()
  435. },
  436. handleRefresh() {
  437. console.log('点击了重置')
  438. this.table.getdataListParm.parammaps.barid = ''
  439. this.table.getdataListParm.parammaps.times = ''
  440. this.table.getdataListParm.parammaps.startTime = ''
  441. this.table.getdataListParm.parammaps.stopTime = ''
  442. this.table.getdataListParm.parammaps.inputDatetime = ''
  443. this.table.getdataListParm.offset = 1
  444. this.getList()
  445. },
  446. // 新增
  447. resetTemp() {
  448. this.create.temp = { pastureid: Cookies.get('pastureid'), operatetime: parseTime(new Date(), '{y}-{m}-{d}'), emp: Cookies.get('employename'), barid: '', barname: '', times: '', standardscore: '', cowsum: '', score1: '', score2: '', score3: '', score4: '', score5: '', remark: '', ftid: '', ftname: '' }
  449. },
  450. blurEmp(item) {
  451. this.create.temp.emp = item.target.value
  452. },
  453. // 栏舍名称
  454. changeBar(item) {
  455. this.create.temp.barname = this.houseNameList.find(obj => obj.id === item).bname
  456. this.getRange()
  457. },
  458. changeOperatetime() {
  459. this.getRange()
  460. },
  461. // 粪便评分参数
  462. getRange() {
  463. this.create.getdataListParm2.parammaps.date = this.create.temp.operatetime
  464. this.create.getdataListParm2.parammaps.barid = this.create.temp.barid
  465. GetDataByName(this.create.getdataListParm2).then(response => {
  466. if (response.data.list !== null) {
  467. this.create.temp.standardscore = response.data.list[0].dungstandard
  468. this.create.temp.ftid = response.data.list[0].ftid
  469. this.create.temp.ftname = response.data.list[0].ftname
  470. } else {
  471. this.create.temp.standardscore = ''
  472. this.create.temp.ftid = ''
  473. this.create.temp.ftname = ''
  474. }
  475. })
  476. },
  477. // 操作人
  478. getNoteTakerList() {
  479. GetDataByName(this.create.getdataListParm).then(response => {
  480. if (response.data.list !== null) {
  481. for (let i = 0; i < response.data.list.length; i++) {
  482. response.data.list[i].myId = i
  483. }
  484. this.create.noteTakerList = response.data.list
  485. console.log('记录人数据', response.data.list)
  486. console.log(this.create.noteTakerList)
  487. } else {
  488. this.create.noteTakerList = []
  489. }
  490. })
  491. },
  492. blurScore() {
  493. if (this.create.temp.score1 !== '' && this.create.temp.score2 !== '' && this.create.temp.score3 !== '' && this.create.temp.score4 !== '' && this.create.temp.score5 !== '') {
  494. this.create.temp.cowsum = parseInt(this.create.temp.score1) + parseInt(this.create.temp.score2) + parseInt(this.create.temp.score3) + parseInt(this.create.temp.score4) + parseInt(this.create.temp.score5)
  495. }
  496. },
  497. handleCreate() {
  498. console.log('点击了新增')
  499. this.resetTemp()
  500. this.getNoteTakerList()
  501. this.create.dialogStatus = 'create'
  502. this.create.dialogFormVisible = true
  503. },
  504. createData() {
  505. console.log('点击了新增保存')
  506. this.isokDisable = true
  507. setTimeout(() => {
  508. this.isokDisable = false
  509. }, 1000)
  510. this.$refs['temp'].validate(valid => {
  511. if (valid) {
  512. this.isokDisable = true
  513. setTimeout(() => {
  514. this.isokDisable = false
  515. }, 1000)
  516. const score = /^\d*$/
  517. // 1分/2分/3分/4分/5分
  518. if (!score.test(parseFloat(this.create.temp.score1)) || !score.test(parseFloat(this.create.temp.score2)) || !score.test(parseFloat(this.create.temp.score3)) || !score.test(parseFloat(this.create.temp.score4)) || !score.test(parseFloat(this.create.temp.score5))) {
  519. this.$message({ type: 'error', message: '牛头数请输入大于等于0的整数', duration: 2000 })
  520. return false
  521. }
  522. this.requestParam.name = 'insertDungscore'
  523. this.requestParam.parammaps = this.create.temp
  524. if (this.create.temp.emp == '') { this.create.temp.emp = Cookies.get('employename') }
  525. PostDataByName(this.requestParam).then(response => {
  526. console.log('新增保存发送参数', this.requestParam)
  527. if (response.msg !== 'fail') {
  528. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  529. this.create.dialogFormVisible = false
  530. this.getList()
  531. } else {
  532. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  533. }
  534. })
  535. }
  536. })
  537. },
  538. createDataAgain() {
  539. console.log('点击了新增保存')
  540. this.isokDisable = true
  541. setTimeout(() => {
  542. this.isokDisable = false
  543. }, 1000)
  544. this.$refs['temp'].validate(valid => {
  545. if (valid) {
  546. this.isokDisable = true
  547. setTimeout(() => {
  548. this.isokDisable = false
  549. }, 1000)
  550. const score = /^\d*$/
  551. // 1分/2分/3分/4分/5分
  552. if (!score.test(parseFloat(this.create.temp.score1)) || !score.test(parseFloat(this.create.temp.score2)) || !score.test(parseFloat(this.create.temp.score3)) || !score.test(parseFloat(this.create.temp.score4)) || !score.test(parseFloat(this.create.temp.score5))) {
  553. this.$message({ type: 'error', message: '牛头数请输入大于等于0的整数', duration: 2000 })
  554. return false
  555. }
  556. this.requestParam.name = 'insertDungscore'
  557. this.requestParam.parammaps = this.create.temp
  558. if (this.create.temp.emp == '') { this.create.temp.emp = Cookies.get('employename') }
  559. PostDataByName(this.requestParam).then(response => {
  560. console.log('新增保存发送参数', this.requestParam)
  561. if (response.msg !== 'fail') {
  562. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  563. this.resetTemp()
  564. this.getList()
  565. this.getNoteTakerList()
  566. } else {
  567. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  568. }
  569. })
  570. }
  571. })
  572. },
  573. // 编辑
  574. handleUpdate(row) {
  575. console.log('点击了编辑', row)
  576. row.barid = String(row.barid)
  577. row.score1 = String(row.score1)
  578. row.score2 = String(row.score2)
  579. row.score3 = String(row.score3)
  580. row.score4 = String(row.score4)
  581. row.score5 = String(row.score5)
  582. this.create.temp = Object.assign({}, row)
  583. this.create.temp.id = row.id
  584. this.getNoteTakerList()
  585. this.create.dialogStatus = 'update'
  586. this.create.dialogFormVisible = true
  587. },
  588. updateData() {
  589. this.isokDisable = true
  590. setTimeout(() => {
  591. this.isokDisable = false
  592. }, 1000)
  593. this.$refs['temp'].validate(valid => {
  594. if (valid) {
  595. this.isokDisable = true
  596. setTimeout(() => {
  597. this.isokDisable = false
  598. }, 1000)
  599. const score = /^\d*$/
  600. // 1分/2分/3分/4分/5分
  601. if (!score.test(parseFloat(this.create.temp.score1)) || !score.test(parseFloat(this.create.temp.score2)) || !score.test(parseFloat(this.create.temp.score3)) || !score.test(parseFloat(this.create.temp.score4)) || !score.test(parseFloat(this.create.temp.score5))) {
  602. this.$message({ type: 'error', message: '牛头数请输入大于等于0的整数', duration: 2000 })
  603. return false
  604. }
  605. this.requestParam.name = 'updateDungscore'
  606. this.requestParam.parammaps = this.create.temp
  607. if (this.create.temp.emp == '') { this.create.temp.emp = Cookies.get('employename') }
  608. PostDataByName(this.requestParam).then(response => {
  609. console.log('新增保存发送参数', this.requestParam)
  610. if (response.msg !== 'fail') {
  611. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  612. this.create.dialogFormVisible = false
  613. this.getList()
  614. } else {
  615. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  616. }
  617. })
  618. }
  619. })
  620. },
  621. // 删除
  622. handleRowDelete(row) {
  623. console.log('点击了行内删除')
  624. MessageBox.confirm('是否确认删除此信息?', {
  625. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  626. }).then(() => {
  627. this.selectList = []
  628. this.requestParam.name = 'deleteDungscore'
  629. this.requestParam.parammaps = {}
  630. this.requestParam.parammaps.pastureid = row.pastureid
  631. this.requestParam.parammaps.id = row.id
  632. PostDataByName(this.requestParam).then(response => {
  633. if (response.msg === 'fail') {
  634. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  635. } else {
  636. this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
  637. this.getList()
  638. }
  639. })
  640. }).catch(() => {
  641. this.$message({ type: 'info', message: '已取消删除' })
  642. })
  643. },
  644. handleSelectionChange(val) {
  645. console.log('勾选数据', val)
  646. this.selectList = val
  647. },
  648. handleDelete() {
  649. console.log('点击了删除')
  650. if (this.selectList.length == 0) {
  651. this.$message({ type: 'error', message: '请选择粪便评分', duration: 2000 })
  652. } else {
  653. MessageBox.confirm('当前选中' + this.selectList.length + '条信息,是否删除?', {
  654. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  655. }).then(() => {
  656. console.log(this.selectList)
  657. this.requestParam.common = { 'returnmap': '0' }
  658. this.requestParam.data = []
  659. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }}
  660. this.requestParam.data[0].children = []
  661. this.requestParam.data[0].children[0] = { 'name': 'deleteDungscore', 'type': 'e', 'parammaps': {
  662. id: '@insertSpotList.id',
  663. pastureid: '@insertSpotList.pastureid'
  664. }}
  665. ExecDataByConfig(this.requestParam).then(response => {
  666. console.log('删除保存发送参数', this.requestParam)
  667. if (response.msg === 'fail') {
  668. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  669. } else {
  670. this.$notify({ title: '', message: '删除成功', type: 'success', duration: 2000 })
  671. this.getList()
  672. }
  673. })
  674. })
  675. }
  676. },
  677. // 复制
  678. handleCopy() {
  679. console.log('点击了复制')
  680. if (this.selectList.length == 0) {
  681. this.$message({ type: 'error', message: '请选择粪便评分', duration: 2000 })
  682. } else if (this.selectList.length == 1) {
  683. MessageBox.confirm('是否确认复制此信息?', {
  684. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  685. }).then(() => {
  686. this.requestParam.name = 'copyDungscore'
  687. this.requestParam.parammaps = {}
  688. this.requestParam.parammaps.pastureid = this.selectList[0].pastureid
  689. this.requestParam.parammaps.id = this.selectList[0].id
  690. PostDataByName(this.requestParam).then(response => {
  691. if (response.msg === 'fail') {
  692. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  693. } else {
  694. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  695. this.getList()
  696. }
  697. })
  698. }).catch(() => {
  699. this.$message({ type: 'info', message: '已取消删除' })
  700. })
  701. } else {
  702. this.$message({ type: 'error', message: '请选择一条粪便评分', duration: 2000 })
  703. }
  704. },
  705. // 导出
  706. handleExport(item) {
  707. if (item == 1) {
  708. console.log('点击了导出模板')
  709. const requestParam = this.requestParam
  710. const url = process.env.VUE_APP_BASE_API + 'file/导入导出模板/栏舍生产/粪便评分导入模板.xlsx' // 请求下载文件的地址
  711. console.log(url)
  712. axios({
  713. method: 'GET',
  714. url: url,
  715. data: requestParam,
  716. headers: { token: getToken(), optname: 'insertcustomdoc' },
  717. responseType: 'blob'
  718. }).then(res => {
  719. if (!res) return
  720. this.percentage = 99
  721. setTimeout(() => {
  722. this.isPercentage = false
  723. }, 2000)
  724. const blob = new Blob([res.data], {
  725. type: 'application/octet-stream;charset=utf-8'
  726. })
  727. const url = window.URL.createObjectURL(blob)
  728. const aLink = document.createElement('a')
  729. aLink.style.display = 'none'
  730. aLink.href = url
  731. const docname = '粪便评分导入模板.xlsx'
  732. aLink.setAttribute('download', docname) // 下载的文件
  733. document.body.appendChild(aLink)
  734. aLink.click()
  735. document.body.removeChild(aLink)
  736. window.URL.revokeObjectURL(url)
  737. })
  738. } else {
  739. console.log('点击了导出数据')
  740. this.download.getdataListParm.parammaps = this.table.getdataListParm.parammaps
  741. if (this.download.getdataListParm.parammaps.inputDatetime !== '' && this.download.getdataListParm.parammaps.inputDatetime !== null) {
  742. this.download.getdataListParm.parammaps.startTime = parseTime(this.download.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  743. this.download.getdataListParm.parammaps.stopTime = parseTime(this.download.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  744. } else {
  745. this.download.getdataListParm.parammaps.inputDatetime = ''
  746. this.download.getdataListParm.parammaps.startTime = ''
  747. this.download.getdataListParm.parammaps.stopTime = ''
  748. }
  749. GetDataByName(this.download.getdataListParm).then(response => {
  750. if (response.data.list !== null) {
  751. this.download.list = response.data.list
  752. } else {
  753. this.download.list = []
  754. }
  755. var excelDatas = [
  756. {
  757. tHeader: ['栏舍名称', '标准分数(分)', '牛头数(头)', '1分(头)', '2分(头)', '3分(头)', '4分(头)', '5分(头)', '备注', '操作人', '操作日期'],
  758. filterVal: ['barname', 'standardscore', 'cowsum', 'score1', 'score2', 'score3', 'score4', 'score5', 'remark', 'emp', 'operatetime'],
  759. tableDatas: this.download.list,
  760. sheetName: 'Sheet1'
  761. }
  762. ]
  763. json2excel(excelDatas, '粪便评分', true, 'xlsx')
  764. })
  765. }
  766. },
  767. beforeImport(file) {
  768. const isLt2M = file.size / 1024 / 1024 < 2
  769. if (!isLt2M) {
  770. this.$message.error('上传文件大小不能超过 2MB!')
  771. }
  772. return isLt2M
  773. },
  774. handleImportSuccess(res, file) {
  775. this.getList()
  776. if (res.msg === 'ok') {
  777. this.$message({ title: '成功', message: '导入成功:' + res.data.success + '条!', type: 'success', duration: 2000 })
  778. if (res.data.err_count > 0) {
  779. this.$notify({ title: '失败', message: '导入失败:' + res.data.err_count + '条!', type: 'danger', duration: 2000 })
  780. import('@/vendor/Export2Excel').then(excel => {
  781. const list1 = res.data.result
  782. const tHeader = [
  783. '栏舍名称', '1分(头)', '2分(头)', '3分(头)', '4分(头)', '5分(头)', '备注', '操作人', '操作日期', '错误信息'
  784. ]
  785. const filterVal = [
  786. '栏舍名称', '1分(头)', '2分(头)', '3分(头)', '4分(头)', '5分(头)', '备注', '操作人', '操作日期', 'error_msg'
  787. ]
  788. const data1 = this.formatJson(filterVal, list1)
  789. excel.export_json_to_excel({ header: tHeader, data: data1, filename: '粪便评分导入报错信息', autoWidth: true, bookType: 'xlsx' })
  790. })
  791. }
  792. } else {
  793. this.$notify({ title: '失败', message: '上传失败', type: 'danger', duration: 2000 })
  794. }
  795. },
  796. formatJson(filterVal, jsonData) {
  797. return jsonData.map(v =>
  798. filterVal.map(j => {
  799. if (j === 'timestamp') {
  800. return parseTime(v[j])
  801. } else {
  802. return v[j]
  803. }
  804. })
  805. )
  806. }
  807. }
  808. }
  809. </script>
  810. <style lang="scss" scoped>
  811. .search{padding-top:10px;clear: both;}
  812. .table{margin-top:10px;}
  813. </style>