7edd59994f564ecf00b81eecd349c06125d390c4.svn-base 41 KB

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