f5e844436253dd473c6f294eb26fd9689e44d116.svn-base 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713
  1. <template>
  2. <div class="app-container">
  3. <div class="operation">
  4. <el-button v-if="isRoleEdit" class="success" style="float: left;margin-right:10px;" @click="handleCreate">新增</el-button>
  5. <el-button v-if="isRoleEdit" class="danger" style="float: left;margin-right:10px;" @click="handleDelete">删除</el-button>
  6. <el-button v-if="isRoleEdit" class="warning" style="float: left;margin-right:10px;" @click="handleCopy">复制</el-button>
  7. <el-button v-if="isRoleEdit" class="import" style="float: right;" @click="handleImport">导入</el-button>
  8. <el-dropdown style="float: right;margin-right: 10px;">
  9. <el-button class="export">导出</el-button>
  10. <el-dropdown-menu slot="dropdown">
  11. <el-dropdown-item @click.native="handleExport(1)">导出模板</el-dropdown-item>
  12. <el-dropdown-item @click.native="handleExport(2)">导出数据</el-dropdown-item>
  13. </el-dropdown-menu>
  14. </el-dropdown>
  15. </div>
  16. <div class="search">
  17. <el-date-picker v-model="table.getdataListParm.parammaps.inputDatetime" class="inputDatetime filter-item" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" style="width: 250px;" />
  18. <el-button class="el-icon-arrow-left elIconArrowLeft" @click="handleBefore" />
  19. <el-button class="el-icon-arrow-right elIconArrowRight" @click="handleNext" />
  20. <el-select v-model="table.getdataListParm.parammaps.barid" placeholder="栏舍名称" class="filter-item" style="width: 120px;" clearable>
  21. <el-option v-for="item in houseNameList" :key="item.id" :label="item.bname" :value="item.id" />
  22. </el-select>
  23. <el-button class="successBorder" @click="handleSearch">查询</el-button>
  24. <el-button class="successBorder" @click="handleRefresh">重置</el-button>
  25. </div>
  26. <div class="table">
  27. <el-table
  28. :key="table.tableKey"
  29. v-loading="table.listLoading"
  30. element-loading-text="给我一点时间"
  31. :data="table.list"
  32. border
  33. fit
  34. highlight-current-row
  35. style="width: 100%;"
  36. :row-style="rowStyle"
  37. :cell-style="cellStyle"
  38. class="elTable table-fixed"
  39. @selection-change="handleSelectionChange"
  40. >
  41. <el-table-column type="selection" align="center" width="50" />
  42. <el-table-column label="序号" align="center" type="index" width="50px">
  43. <template slot-scope="scope">
  44. <span>{{ scope.$index + (table.pageNum-1) * table.pageSize + 1 }}</span>
  45. </template>
  46. </el-table-column>
  47. <el-table-column label="栏舍名称" min-width="150px" align="center">
  48. <template slot-scope="scope">
  49. <span>{{ scope.row.barname }}</span>
  50. </template>
  51. </el-table-column>
  52. <el-table-column label="标准分数(分)" min-width="90px" align="center">
  53. <template slot-scope="scope">
  54. <span>{{ scope.row.standardscore }}</span>
  55. </template>
  56. </el-table-column>
  57. <el-table-column label="牛头数(头)" min-width="90px" align="center">
  58. <template slot-scope="scope">
  59. <span>{{ scope.row.cowsum }}</span>
  60. </template>
  61. </el-table-column>
  62. <el-table-column label="评分" align="center">
  63. <el-table-column label="2.75分-(头)" min-width="110px" align="center">
  64. <template slot-scope="scope">
  65. <span>{{ scope.row.score25 }}({{ scope.row.score25rate }}%)</span>
  66. </template>
  67. </el-table-column>
  68. <el-table-column label="2.75分(头)" min-width="110px" align="center">
  69. <template slot-scope="scope">
  70. <span>{{ scope.row.score275 }}({{ scope.row.score275rate }}%)</span>
  71. </template>
  72. </el-table-column>
  73. <el-table-column label="3分(头)" min-width="110px" align="center">
  74. <template slot-scope="scope">
  75. <span>{{ scope.row.score3 }}({{ scope.row.score3rate }}%)</span>
  76. </template>
  77. </el-table-column>
  78. <el-table-column label="3.25分(头)" min-width="110px" align="center">
  79. <template slot-scope="scope">
  80. <span>{{ scope.row.score325 }}({{ scope.row.score325rate }}%)</span>
  81. </template>
  82. </el-table-column>
  83. <el-table-column label="3.5分(头)" min-width="110px" align="center">
  84. <template slot-scope="scope">
  85. <span>{{ scope.row.score35 }}({{ scope.row.score35rate }}%)</span>
  86. </template>
  87. </el-table-column>
  88. <el-table-column label="3.75分(头)" min-width="110px" align="center">
  89. <template slot-scope="scope">
  90. <span>{{ scope.row.score375 }}({{ scope.row.score375rate }}%)</span>
  91. </template>
  92. </el-table-column>
  93. <el-table-column label="4分+(头)" min-width="110px" align="center">
  94. <template slot-scope="scope">
  95. <span>{{ scope.row.score4 }}({{ scope.row.score4rate }}%)</span>
  96. </template>
  97. </el-table-column>
  98. </el-table-column>
  99. <el-table-column label="备注" min-width="90px" align="center">
  100. <template slot-scope="scope">
  101. <span>{{ scope.row.remark }}</span>
  102. </template>
  103. </el-table-column>
  104. <el-table-column label="操作人" min-width="90px" align="center">
  105. <template slot-scope="scope">
  106. <span>{{ scope.row.emp }}</span>
  107. </template>
  108. </el-table-column>
  109. <el-table-column label="操作日期" min-width="90px" align="center">
  110. <template slot-scope="scope">
  111. <span>{{ scope.row.operatetime }}</span>
  112. </template>
  113. </el-table-column>
  114. <el-table-column label="操作" align="center" width="250" class-name="small-padding fixed-width" fixed="right">
  115. <template slot-scope="{row}">
  116. <el-button v-if="isRoleEdit" class="miniSuccess" @click="handleUpdate(row)">编辑</el-button>
  117. <el-button v-if="isRoleEdit" class="miniDanger" @click="handleRowDelete(row)">删除</el-button>
  118. </template>
  119. </el-table-column>
  120. </el-table>
  121. <pagination v-show="table.total>=0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="getList" />
  122. </div>
  123. <!-- 新增/编辑 -->
  124. <el-dialog :title="textMap[create.dialogStatus]" :visible.sync="create.dialogFormVisible" :close-on-click-modal="false" width="90%">
  125. <div class="app-add">
  126. <el-form ref="temp" :rules="create.rules" :model="create.temp" label-position="right" label-width="150px" style="width: 100%;margin:0 auto 50px">
  127. <el-row>
  128. <el-col :span="24">
  129. <h3 style="width: 150px;text-align: right;">栏舍信息</h3>
  130. </el-col>
  131. </el-row>
  132. <el-row>
  133. <el-col :span="6">
  134. <el-form-item label="栏舍名称:" prop="barid">
  135. <el-select ref="barid" v-model="create.temp.barid" filterable placeholder="栏舍名称" class="filter-item" style="width: 100%;" @change="changeBar">
  136. <el-option v-for="item in houseNameList" :key="item.id" :label="item.bname" :value="item.id" />
  137. </el-select>
  138. </el-form-item>
  139. </el-col>
  140. </el-row>
  141. <el-row>
  142. <el-col :span="24">
  143. <h3 style="width: 150px;text-align: right;">评分</h3>
  144. </el-col>
  145. </el-row>
  146. <el-row>
  147. <el-col :span="6">
  148. <el-form-item label="标准分数(分):" prop="standardscore">
  149. <el-input ref="standardscore" v-model="create.temp.standardscore" class="filter-item" style="width: 100%;" disabled />
  150. </el-form-item>
  151. </el-col>
  152. <el-col :span="6">
  153. <el-form-item label="牛头数(头):" prop="cowsum">
  154. <el-input ref="cowsum" v-model="create.temp.cowsum" class="filter-item" style="width: 100%;" disabled />
  155. </el-form-item>
  156. </el-col>
  157. </el-row>
  158. <el-row>
  159. <el-col :span="6">
  160. <el-form-item label="2.75分-:" prop="score25">
  161. <el-input ref="score25" v-model="create.temp.score25" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" />
  162. </el-form-item>
  163. </el-col>
  164. <el-col :span="6">
  165. <el-form-item label="2.75分:" prop="score275">
  166. <el-input ref="score275" v-model="create.temp.score275" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" />
  167. </el-form-item>
  168. </el-col>
  169. <el-col :span="6">
  170. <el-form-item label="3分:" prop="score3">
  171. <el-input ref="score3" v-model="create.temp.score3" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" />
  172. </el-form-item>
  173. </el-col>
  174. <el-col :span="6">
  175. <el-form-item label="3.25分:" prop="score325">
  176. <el-input ref="score325" v-model="create.temp.score325" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" />
  177. </el-form-item>
  178. </el-col>
  179. </el-row>
  180. <el-row>
  181. <el-col :span="6">
  182. <el-form-item label="3.5分:" prop="score35">
  183. <el-input ref="score35" v-model="create.temp.score35" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" />
  184. </el-form-item>
  185. </el-col>
  186. <el-col :span="6">
  187. <el-form-item label="3.75分:" prop="score375">
  188. <el-input ref="score375" v-model="create.temp.score375" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" />
  189. </el-form-item>
  190. </el-col>
  191. <el-col :span="6">
  192. <el-form-item label="4分+:" prop="score4">
  193. <el-input ref="score4" v-model="create.temp.score4" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" />
  194. </el-form-item>
  195. </el-col>
  196. </el-row>
  197. <el-row>
  198. <el-col :span="24">
  199. <h3 style="width: 150px;text-align: right;">操作详情</h3>
  200. </el-col>
  201. </el-row>
  202. <el-row>
  203. <el-col :span="6">
  204. <el-form-item label="操作人:" prop="emp">
  205. <el-select ref="emp" v-model="create.temp.emp" filterable placeholder="操作人" class="filter-item" style="width: 100%;" @blur="blurEmp">
  206. <el-option v-for="item in create.noteTakerList" :key="item.myId" :label="item.emp" :value="item.emp" />
  207. </el-select>
  208. </el-form-item>
  209. </el-col>
  210. <el-col :span="6">
  211. <el-form-item label="操作日期:" prop="operatetime">
  212. <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" />
  213. </el-form-item>
  214. </el-col>
  215. <el-col :span="12">
  216. <el-form-item label="备注:" prop="remark">
  217. <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%;" />
  218. </el-form-item>
  219. </el-col>
  220. </el-row>
  221. </el-form>
  222. <div slot="footer" class="dialog-footer">
  223. <el-button class="cancelClose" @click="create.dialogFormVisible = false;getList()">关闭</el-button>
  224. <el-button v-if="create.dialogStatus==='create'" class="success" :disabled="isokDisable" @click="createDataAgain()">确认新增</el-button>
  225. <el-button v-if="create.dialogStatus==='create' || create.dialogStatus==='update'" class="success" :disabled="isokDisable" @click="create.dialogStatus==='create'?createData():updateData()">确认</el-button>
  226. </div>
  227. </div>
  228. </el-dialog>
  229. </div>
  230. </template>
  231. <script>
  232. import { GetDataByName, PostDataByName, failproccess, ExecDataByConfig, GetDataByNames, checkButtons } from '@/api/common'
  233. import Cookies from 'js-cookie'
  234. import { parseTime } from '@/utils/index.js'
  235. import Pagination from '@/components/Pagination'
  236. import { MessageBox } from 'element-ui'
  237. export default {
  238. name: 'PhysicalConditionScore',
  239. components: { Pagination },
  240. data() {
  241. return {
  242. isRoleEdit: [],
  243. requestParams: [
  244. { name: 'getBarListEnable', offset: 0, pagecount: 0, parammaps: { 'pastureid': Cookies.get('pastureid') }},
  245. { name: 'getSysoptEnable', offset: 0, pagecount: 0, parammaps: { 'pastureid': Cookies.get('pastureid'), 'inforname': 'times' }}
  246. ],
  247. houseNameList: [], // 栏舍名称
  248. frequencyList: [], // 班次
  249. table: {
  250. getdataListParm: {
  251. name: 'getBodyscoreList',
  252. page: 1,
  253. offset: 1,
  254. pagecount: 10,
  255. returntype: 'Map',
  256. parammaps: {
  257. pastureid: Cookies.get('pastureid'),
  258. barid: '',
  259. times: '',
  260. startTime: '',
  261. stopTime: '',
  262. inputDatetime: ''
  263. }
  264. },
  265. tableKey: 0,
  266. list: [],
  267. total: 0,
  268. listLoading: true,
  269. temp: {}
  270. },
  271. // 新增/编辑
  272. create: {
  273. dialogFormVisible: false,
  274. dialogStatus: '',
  275. 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: '' },
  276. rules: {
  277. barid: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  278. times: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  279. score25: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  280. score275: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  281. score3: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  282. score325: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  283. score35: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  284. score375: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  285. score4: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }]
  286. },
  287. // 操作人
  288. getdataListParm: {
  289. name: 'getBodyscoreEmpHis',
  290. page: 1,
  291. offset: 1,
  292. pagecount: 10,
  293. returntype: 'Map',
  294. parammaps: {
  295. pastureid: Cookies.get('pastureid')
  296. }
  297. },
  298. // 体况评分参数
  299. getdataListParm2: {
  300. name: 'getDungAndBodyScore',
  301. page: 1,
  302. offset: 1,
  303. pagecount: 1,
  304. returntype: 'Map',
  305. parammaps: {
  306. pastureid: Cookies.get('pastureid'),
  307. barid: '',
  308. date: ''
  309. }
  310. },
  311. noteTakerList: [] // 记录人
  312. },
  313. textMap: {
  314. create: '新增',
  315. update: '编辑'
  316. },
  317. requestParam: {},
  318. isokDisable: false,
  319. selectList: [],
  320. rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
  321. cellStyle: { padding: 0 + 'px' }
  322. }
  323. },
  324. created() {
  325. this.getList()
  326. this.getDownList()
  327. this.getDownList()
  328. },
  329. methods: {
  330. getButtons() {
  331. const Edit = 'PhysicalConditionScore'
  332. const isRoleEdit = checkButtons(JSON.parse(sessionStorage.getItem('buttons')), Edit)
  333. this.isRoleEdit = isRoleEdit
  334. },
  335. getDownList() {
  336. GetDataByNames(this.requestParams).then(response => {
  337. this.houseNameList = response.data.getBarListEnable.list
  338. if (response.data.getSysoptEnable.list !== null) {
  339. for (let i = 1; i <= response.data.getSysoptEnable.list[0].inforvalue; i++) {
  340. const obj = {}
  341. obj.id = String(i)
  342. if (i == 1) { obj.name = '第一班' } else if (i == 2) { obj.name = '第二班' } else if (i == 3) { obj.name = '第三班' } else if (i == 4) { obj.name = '第四班' }
  343. this.frequencyList.push(obj)
  344. }
  345. } else {
  346. this.frequencyList = []
  347. }
  348. })
  349. },
  350. handleBefore() {
  351. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  352. var start = new Date(this.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.table.getdataListParm.parammaps.inputDatetime[0].getDate() - 1))
  353. var stop = new Date(this.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.table.getdataListParm.parammaps.inputDatetime[1].getDate() - 1))
  354. this.table.getdataListParm.parammaps.inputDatetime.length = 0
  355. this.table.getdataListParm.parammaps.inputDatetime.push(start, stop)
  356. this.$forceUpdate()
  357. }
  358. },
  359. handleNext() {
  360. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  361. var start = new Date(this.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.table.getdataListParm.parammaps.inputDatetime[0].getDate() + 1))
  362. var stop = new Date(this.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.table.getdataListParm.parammaps.inputDatetime[1].getDate() + 1))
  363. this.table.getdataListParm.parammaps.inputDatetime.length = 0
  364. this.table.getdataListParm.parammaps.inputDatetime.push(start, stop)
  365. this.$forceUpdate()
  366. }
  367. },
  368. getList() {
  369. this.table.listLoading = true
  370. GetDataByName(this.table.getdataListParm).then(response => {
  371. console.log('table数据', response.data.list)
  372. if (response.data.list !== null) {
  373. for (let i = 0; i < response.data.list.length; i++) {
  374. this.$set(response.data.list[i], 'score25rate', (parseFloat(response.data.list[i].score25) / parseFloat(response.data.list[i].cowsum) * 100).toFixed(2))
  375. this.$set(response.data.list[i], 'score275rate', (parseFloat(response.data.list[i].score275) / parseFloat(response.data.list[i].cowsum) * 100).toFixed(2))
  376. this.$set(response.data.list[i], 'score3rate', (parseFloat(response.data.list[i].score3) / parseFloat(response.data.list[i].cowsum) * 100).toFixed(2))
  377. this.$set(response.data.list[i], 'score325rate', (parseFloat(response.data.list[i].score325) / parseFloat(response.data.list[i].cowsum) * 100).toFixed(2))
  378. this.$set(response.data.list[i], 'score35rate', (parseFloat(response.data.list[i].score35) / parseFloat(response.data.list[i].cowsum) * 100).toFixed(2))
  379. this.$set(response.data.list[i], 'score375rate', (parseFloat(response.data.list[i].score375) / parseFloat(response.data.list[i].cowsum) * 100).toFixed(2))
  380. 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))
  381. }
  382. this.table.list = response.data.list
  383. this.table.pageNum = response.data.pageNum
  384. this.table.pageSize = response.data.pageSize
  385. this.table.total = response.data.total
  386. } else {
  387. this.table.list = []
  388. }
  389. setTimeout(() => {
  390. this.table.listLoading = false
  391. }, 100)
  392. })
  393. },
  394. handleSearch() {
  395. console.log('点击了查询')
  396. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  397. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  398. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  399. } else {
  400. this.table.getdataListParm.parammaps.inputDatetime = ''
  401. this.table.getdataListParm.parammaps.startTime = ''
  402. this.table.getdataListParm.parammaps.stopTime = ''
  403. }
  404. this.table.getdataListParm.offset = 1
  405. this.getList()
  406. },
  407. handleRefresh() {
  408. console.log('点击了重置')
  409. this.table.getdataListParm.parammaps.barid = ''
  410. this.table.getdataListParm.parammaps.times = ''
  411. this.table.getdataListParm.parammaps.startTime = ''
  412. this.table.getdataListParm.parammaps.stopTime = ''
  413. this.table.getdataListParm.parammaps.inputDatetime = ''
  414. this.table.getdataListParm.offset = 1
  415. this.getList()
  416. },
  417. // 新增
  418. resetTemp() {
  419. 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: '' }
  420. },
  421. blurEmp(item) {
  422. this.create.temp.emp = item.target.value
  423. },
  424. // 栏舍名称
  425. changeBar(item) {
  426. this.create.temp.barname = this.houseNameList.find(obj => obj.id === item).bname
  427. this.getRange()
  428. },
  429. changeOperatetime() {
  430. this.getRange()
  431. },
  432. // 粪便评分参数
  433. getRange() {
  434. this.create.getdataListParm2.parammaps.date = this.create.temp.operatetime
  435. this.create.getdataListParm2.parammaps.barid = this.create.temp.barid
  436. GetDataByName(this.create.getdataListParm2).then(response => {
  437. if (response.data.list !== null) {
  438. this.create.temp.standardscore = response.data.list[0].bodystandard
  439. this.create.temp.ftid = response.data.list[0].ftid
  440. this.create.temp.ftname = response.data.list[0].ftname
  441. } else {
  442. this.create.temp.standardscore = ''
  443. this.create.temp.ftid = ''
  444. this.create.temp.ftname = ''
  445. }
  446. })
  447. },
  448. // 操作人
  449. getNoteTakerList() {
  450. GetDataByName(this.create.getdataListParm).then(response => {
  451. if (response.data.list !== null) {
  452. for (let i = 0; i < response.data.list.length; i++) {
  453. response.data.list[i].myId = i
  454. }
  455. this.create.noteTakerList = response.data.list
  456. console.log('记录人数据', response.data.list)
  457. console.log(this.create.noteTakerList)
  458. } else {
  459. this.create.noteTakerList = []
  460. }
  461. })
  462. },
  463. blurScore() {
  464. 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 !== '') {
  465. 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)
  466. }
  467. },
  468. handleCreate() {
  469. console.log('点击了新增')
  470. this.resetTemp()
  471. this.getNoteTakerList()
  472. this.create.dialogStatus = 'create'
  473. this.create.dialogFormVisible = true
  474. },
  475. createData() {
  476. console.log('点击了新增保存')
  477. this.isokDisable = true
  478. setTimeout(() => {
  479. this.isokDisable = false
  480. }, 1000)
  481. this.$refs['temp'].validate(valid => {
  482. if (valid) {
  483. this.isokDisable = true
  484. setTimeout(() => {
  485. this.isokDisable = false
  486. }, 1000)
  487. const score = /^\d*$/
  488. // 2.5分-/2.75分/3分/3.25分/3.5分/3.75分/4分+
  489. 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))) {
  490. this.$message({ type: 'error', message: '牛头数请输入大于等于0的整数', duration: 2000 })
  491. return false
  492. }
  493. this.requestParam.name = 'insertBodyscore'
  494. this.requestParam.parammaps = this.create.temp
  495. if (this.create.temp.emp == '') { this.create.temp.emp = Cookies.get('employename') }
  496. PostDataByName(this.requestParam).then(response => {
  497. console.log('新增保存发送参数', this.requestParam)
  498. if (response.msg !== 'fail') {
  499. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  500. this.create.dialogFormVisible = false
  501. this.getList()
  502. } else {
  503. failproccess(response, this.$notify)
  504. }
  505. })
  506. }
  507. })
  508. },
  509. createDataAgain() {
  510. console.log('点击了新增保存')
  511. this.isokDisable = true
  512. setTimeout(() => {
  513. this.isokDisable = false
  514. }, 1000)
  515. this.$refs['temp'].validate(valid => {
  516. if (valid) {
  517. this.isokDisable = true
  518. setTimeout(() => {
  519. this.isokDisable = false
  520. }, 1000)
  521. const score = /^\d*$/
  522. // 2.5分-/2.75分/3分/3.25分/3.5分/3.75分/4分+
  523. 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))) {
  524. this.$message({ type: 'error', message: '牛头数请输入大于等于0的整数', duration: 2000 })
  525. return false
  526. }
  527. this.requestParam.name = 'insertBodyscore'
  528. this.requestParam.parammaps = this.create.temp
  529. if (this.create.temp.emp == '') { this.create.temp.emp = Cookies.get('employename') }
  530. PostDataByName(this.requestParam).then(response => {
  531. console.log('新增保存发送参数', this.requestParam)
  532. if (response.msg !== 'fail') {
  533. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  534. this.resetTemp()
  535. this.getList()
  536. this.getNoteTakerList()
  537. } else {
  538. failproccess(response, this.$notify)
  539. }
  540. })
  541. }
  542. })
  543. },
  544. // 编辑
  545. handleUpdate(row) {
  546. console.log('点击了编辑', row)
  547. row.barid = String(row.barid)
  548. row.score25 = String(row.score25)
  549. row.score275 = String(row.score275)
  550. row.score3 = String(row.score3)
  551. row.score325 = String(row.score325)
  552. row.score35 = String(row.score35)
  553. row.score375 = String(row.score375)
  554. row.score4 = String(row.score4)
  555. this.create.temp = Object.assign({}, row)
  556. this.create.temp.id = row.id
  557. this.getNoteTakerList()
  558. this.create.dialogStatus = 'update'
  559. this.create.dialogFormVisible = true
  560. },
  561. updateData() {
  562. this.isokDisable = true
  563. setTimeout(() => {
  564. this.isokDisable = false
  565. }, 1000)
  566. this.$refs['temp'].validate(valid => {
  567. if (valid) {
  568. this.isokDisable = true
  569. setTimeout(() => {
  570. this.isokDisable = false
  571. }, 1000)
  572. const score = /^\d*$/
  573. // 2.5分-/2.75分/3分/3.25分/3.5分/3.75分/4分+
  574. 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))) {
  575. this.$message({ type: 'error', message: '牛头数请输入大于等于0的整数', duration: 2000 })
  576. return false
  577. }
  578. this.requestParam.name = 'updateBodyscore'
  579. this.requestParam.parammaps = this.create.temp
  580. if (this.create.temp.emp == '') { this.create.temp.emp = Cookies.get('employename') }
  581. PostDataByName(this.requestParam).then(response => {
  582. console.log('新增保存发送参数', this.requestParam)
  583. if (response.msg !== 'fail') {
  584. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  585. this.create.dialogFormVisible = false
  586. this.getList()
  587. } else {
  588. failproccess(response, this.$notify)
  589. }
  590. })
  591. }
  592. })
  593. },
  594. // 删除
  595. handleRowDelete(row) {
  596. console.log('点击了行内删除')
  597. MessageBox.confirm('是否确认删除此信息?', {
  598. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  599. }).then(() => {
  600. this.selectList = []
  601. this.requestParam.name = 'deleteBodyscore'
  602. this.requestParam.parammaps = {}
  603. this.requestParam.parammaps.pastureid = row.pastureid
  604. this.requestParam.parammaps.id = row.id
  605. PostDataByName(this.requestParam).then(response => {
  606. if (response.msg === 'fail') {
  607. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  608. } else {
  609. this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
  610. this.getList()
  611. }
  612. })
  613. }).catch(() => {
  614. this.$message({ type: 'info', message: '已取消删除' })
  615. })
  616. },
  617. handleSelectionChange(val) {
  618. console.log('勾选数据', val)
  619. this.selectList = val
  620. },
  621. handleDelete() {
  622. console.log('点击了删除')
  623. if (this.selectList.length == 0) {
  624. this.$message({ type: 'error', message: '请选择体况评分', duration: 2000 })
  625. } else {
  626. MessageBox.confirm('当前选中' + this.selectList.length + '条信息,是否删除?', {
  627. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  628. }).then(() => {
  629. console.log(this.selectList)
  630. this.requestParam.common = { 'returnmap': '0' }
  631. this.requestParam.data = []
  632. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }}
  633. this.requestParam.data[0].children = []
  634. this.requestParam.data[0].children[0] = { 'name': 'deleteBodyscore', 'type': 'e', 'parammaps': {
  635. id: '@insertSpotList.id',
  636. pastureid: '@insertSpotList.pastureid'
  637. }}
  638. ExecDataByConfig(this.requestParam).then(response => {
  639. console.log('删除保存发送参数', this.requestParam)
  640. if (response.msg === 'fail') {
  641. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  642. } else {
  643. this.$notify({ title: '', message: '删除成功', type: 'success', duration: 2000 })
  644. this.getList()
  645. }
  646. })
  647. })
  648. }
  649. },
  650. // 复制
  651. handleCopy() {
  652. console.log('点击了复制')
  653. if (this.selectList.length == 0) {
  654. this.$message({ type: 'error', message: '请选择体况评分', duration: 2000 })
  655. } else if (this.selectList.length == 1) {
  656. MessageBox.confirm('是否确认复制此信息?', {
  657. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  658. }).then(() => {
  659. this.requestParam.name = 'copyBodyscore'
  660. this.requestParam.parammaps = {}
  661. this.requestParam.parammaps.pastureid = this.selectList[0].pastureid
  662. this.requestParam.parammaps.id = this.selectList[0].id
  663. PostDataByName(this.requestParam).then(response => {
  664. if (response.msg === 'fail') {
  665. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  666. } else {
  667. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  668. this.getList()
  669. }
  670. })
  671. }).catch(() => {
  672. this.$message({ type: 'info', message: '已取消删除' })
  673. })
  674. } else {
  675. this.$message({ type: 'error', message: '请选择一条体况评分', duration: 2000 })
  676. }
  677. },
  678. // 导出
  679. handleExport(item) {
  680. if (item == 1) {
  681. console.log('点击了导出模板')
  682. } else {
  683. console.log('点击了导出数据')
  684. }
  685. },
  686. // 导入
  687. handleImport() {
  688. console.log('点击了导入')
  689. }
  690. }
  691. }
  692. </script>
  693. <style lang="scss" scoped>
  694. .search{padding-top:10px;clear: both;}
  695. .table{margin-top:10px;}
  696. </style>