<template> <div class="app-container"> <div class="operation"> <el-button class="success" style="float: left;margin-right:10px;" @click="handleCreate">新增</el-button> <el-button class="danger" style="float: left;margin-right:10px;" @click="handleDelete">删除</el-button> <el-button class="warning" style="float: left;margin-right:10px;" @click="handleCopy">复制</el-button> <el-button class="import" style="float: right;" @click="handleImport">导入</el-button> <el-button class="export" style="float: right;margin-right: 10px;" @click="handleExport">导出</el-button> </div> <div class="search"> <el-date-picker v-model="table.getdataListParm.parammaps.inputDatetime" class="inputDatetime filter-item" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" style="width: 250px;" /> <el-select v-model="table.getdataListParm.parammaps.barid" placeholder="栏舍名称" class="filter-item" style="width: 120px;" clearable> <el-option v-for="item in houseNameList" :key="item.id" :label="item.bname" :value="item.id" /> </el-select> <el-select v-model="table.getdataListParm.parammaps.times" filterable placeholder="班次" class="filter-item" style="width: 120px;" clearable> <el-option v-for="item in frequencyList" :key="item.id" :label="item.name" :value="item.id" /> </el-select> <el-button class="successBorder" @click="handleSearch">查询</el-button> <el-button class="successBorder" @click="handleRefresh">重置</el-button> </div> <div class="table"> <el-table :key="table.tableKey" v-loading="table.listLoading" element-loading-text="给我一点时间" :data="table.list" border fit highlight-current-row style="width: 100%;" :row-style="rowStyle" :cell-style="cellStyle" class="elTable table-fixed" @selection-change="handleSelectionChange" > <el-table-column type="selection" align="center" width="50" /> <el-table-column label="序号" align="center" type="index" width="50px"> <template slot-scope="scope"> <span>{{ scope.$index + (table.pageNum-1) * table.pageSize + 1 }}</span> </template> </el-table-column> <el-table-column label="栏舍名称" min-width="150px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.barname }}</span> </template> </el-table-column> <el-table-column label="标准分数(分)" min-width="90px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.times }}</span> </template> </el-table-column> <el-table-column label="牛头数(牛)" min-width="90px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.cowsum }}</span> </template> </el-table-column> <el-table-column label="评分" align="center"> <el-table-column prop="score1" label="1分(头)" min-width="90px" align="center" /> <el-table-column prop="score2" label="2分(头)" min-width="90px" align="center" /> <el-table-column prop="score3" label="3分(头)" min-width="90px" align="center" /> <el-table-column prop="score4" label="4分(头)" min-width="90px" align="center" /> <el-table-column prop="score5" label="5分(头)" min-width="90px" align="center" /> </el-table-column> <el-table-column label="备注" min-width="90px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.remark }}</span> </template> </el-table-column> <el-table-column label="操作人" min-width="90px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.emp }}</span> </template> </el-table-column> <el-table-column label="操作日期" min-width="90px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.operatetime }}</span> </template> </el-table-column> <el-table-column label="操作" align="center" width="250" class-name="small-padding fixed-width" fixed="right"> <template slot-scope="{row}"> <el-button class="miniSuccess" @click="handleUpdate(row)">编辑</el-button> <el-button class="miniDanger" @click="handleRowDelete(row)">删除</el-button> </template> </el-table-column> </el-table> <pagination v-show="table.total>=0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="getList" /> </div> <!-- 新增/编辑 --> <el-dialog :title="textMap[create.dialogStatus]" :visible.sync="create.dialogFormVisible" :close-on-click-modal="false" width="90%"> <div class="app-add"> <el-form ref="temp" :rules="create.rules" :model="create.temp" label-position="right" label-width="150px" style="width: 100%;margin:0 auto 50px"> <el-row> <el-col :span="24"> <h3 style="width: 150px;text-align: right;">栏舍信息</h3> </el-col> </el-row> <el-row> <el-col :span="6"> <el-form-item label="栏舍名称:" prop="barid"> <el-select ref="barid" v-model="create.temp.barid" filterable placeholder="栏舍名称" class="filter-item" style="width: 100%;" @change="changeBar"> <el-option v-for="item in houseNameList" :key="item.id" :label="item.bname" :value="item.id" /> </el-select> </el-form-item> </el-col> <el-col :span="6"> <el-form-item label="班次:" prop="times"> <el-select ref="times" v-model="create.temp.times" filterable placeholder="班次" class="filter-item" style="width: 100%;"> <el-option v-for="item in frequencyList" :key="item.id" :label="item.name" :value="item.id" /> </el-select> </el-form-item> </el-col> </el-row> <el-row> <el-col :span="24"> <h3 style="width: 150px;text-align: right;">评分</h3> </el-col> </el-row> <el-row> <el-col :span="6"> <el-form-item label="标准分数(分):" prop="standardscore"> <el-input ref="standardscore" v-model="create.temp.standardscore" class="filter-item" style="width: 100%;" disabled /> </el-form-item> </el-col> <el-col :span="6"> <el-form-item label="牛头数(头):" prop="cowsum"> <el-input ref="cowsum" v-model="create.temp.cowsum" class="filter-item" style="width: 100%;" disabled /> </el-form-item> </el-col> <el-col :span="6"> <el-form-item label="1分" prop="score1"> <el-input ref="score1" v-model="create.temp.score1" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" /> </el-form-item> </el-col> <el-col :span="6"> <el-form-item label="2分" prop="score2"> <el-input ref="score2" v-model="create.temp.score2" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" /> </el-form-item> </el-col> </el-row> <el-row> <el-col :span="6"> <el-form-item label="3分" prop="score3"> <el-input ref="score3" v-model="create.temp.score3" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" /> </el-form-item> </el-col> <el-col :span="6"> <el-form-item label="4分" prop="score4"> <el-input ref="score4" v-model="create.temp.score4" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" /> </el-form-item> </el-col> <el-col :span="6"> <el-form-item label="5分" prop="score5"> <el-input ref="score5" v-model="create.temp.score5" class="filter-item" placeholder="牛头数" type="number" style="width: 100%;" @blur="blurScore" /> </el-form-item> </el-col> </el-row> <el-row> <el-col :span="24"> <h3 style="width: 150px;text-align: right;">操作详情</h3> </el-col> </el-row> <el-row> <el-col :span="6"> <el-form-item label="操作人:" prop="emp"> <el-select ref="emp" v-model="create.temp.emp" filterable placeholder="操作人" class="filter-item" style="width: 100%;" @blur="blurEmp"> <el-option v-for="item in create.noteTakerList" :key="item.myId" :label="item.emp" :value="item.emp" /> </el-select> </el-form-item> </el-col> <el-col :span="6"> <el-form-item label="操作日期:" prop="operatetime"> <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" /> </el-form-item> </el-col> <el-col :span="12"> <el-form-item label="备注:" prop="remark"> <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%;" /> </el-form-item> </el-col> </el-row> </el-form> <div slot="footer" class="dialog-footer"> <el-button class="cancel" @click="create.dialogFormVisible = false;getList()">关闭</el-button> <el-button v-if="create.dialogStatus==='create'" class="success" :disabled="isokDisable" @click="createDataAgain()">确认新增</el-button> <el-button v-if="create.dialogStatus==='create' || create.dialogStatus==='update'" class="success" :disabled="isokDisable" @click="create.dialogStatus==='create'?createData():updateData()">确认</el-button> </div> </div> </el-dialog> </div> </template> <script> import { GetDataByName, PostDataByName, failproccess, ExecDataByConfig, GetDataByNames } from '@/api/common' import Cookies from 'js-cookie' import { parseTime } from '@/utils/index.js' import Pagination from '@/components/Pagination' import { MessageBox } from 'element-ui' export default { name: 'DungScores', components: { Pagination }, data() { return { requestParams: [ { name: 'getBarListEnable', offset: 0, pagecount: 0, parammaps: { 'pastureid': Cookies.get('pastureid') }}, { name: 'getSysoptEnable', offset: 0, pagecount: 0, parammaps: { 'pastureid': Cookies.get('pastureid'), 'inforname': 'times' }} ], houseNameList: [], // 栏舍名称 frequencyList: [], // 班次 table: { getdataListParm: { name: 'getDungscoreList', page: 1, offset: 1, pagecount: 10, returntype: 'Map', parammaps: { pastureid: Cookies.get('pastureid'), barid: '', times: '', startTime: '', stopTime: '', inputDatetime: '' } }, tableKey: 0, list: [], total: 0, listLoading: true, temp: {} }, // 新增/编辑 create: { dialogFormVisible: false, dialogStatus: '', 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: '' }, rules: { barid: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }], times: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }], score1: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }], score2: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }], score3: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }], score4: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }], score5: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }] }, // 操作人 getdataListParm: { name: 'getDungscoreEmpHis', page: 1, offset: 1, pagecount: 10, returntype: 'Map', parammaps: { pastureid: Cookies.get('pastureid') } }, // 粪便评分参数 getdataListParm2: { name: 'getDungAndBodyScore', page: 1, offset: 1, pagecount: 1, returntype: 'Map', parammaps: { pastureid: Cookies.get('pastureid'), barid: '', date: '' } }, noteTakerList: [] // 记录人 }, textMap: { create: '新增', update: '编辑' }, requestParam: {}, isokDisable: false, selectList: [], rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' }, cellStyle: { padding: 0 + 'px' } } }, created() { this.getList() this.getDownList() }, methods: { getDownList() { GetDataByNames(this.requestParams).then(response => { this.houseNameList = response.data.getBarListEnable.list if (response.data.getSysoptEnable.list !== null) { for (let i = 1; i <= response.data.getSysoptEnable.list[0].inforvalue; i++) { const obj = {} obj.id = String(i) if (i == 1) { obj.name = '第一班' } else if (i == 2) { obj.name = '第二班' } else if (i == 3) { obj.name = '第三班' } else if (i == 4) { obj.name = '第四班' } this.frequencyList.push(obj) } } else { this.frequencyList = [] } }) }, getList() { this.table.listLoading = true GetDataByName(this.table.getdataListParm).then(response => { console.log('table数据', response.data.list) if (response.data.list !== null) { this.table.list = response.data.list this.table.pageNum = response.data.pageNum this.table.pageSize = response.data.pageSize this.table.total = response.data.total } else { this.table.list = [] } setTimeout(() => { this.table.listLoading = false }, 100) }) }, handleSearch() { console.log('点击了查询') if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) { this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}') this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}') } else { this.table.getdataListParm.parammaps.inputDatetime = '' this.table.getdataListParm.parammaps.startTime = '' this.table.getdataListParm.parammaps.stopTime = '' } this.table.getdataListParm.offset = 1 this.getList() }, handleRefresh() { console.log('点击了重置') this.table.getdataListParm.parammaps.barid = '' this.table.getdataListParm.parammaps.times = '' this.table.getdataListParm.parammaps.startTime = '' this.table.getdataListParm.parammaps.stopTime = '' this.table.getdataListParm.parammaps.inputDatetime = '' this.table.getdataListParm.offset = 1 this.getList() }, // 新增 resetTemp() { 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: '' } }, blurEmp(item) { this.create.temp.emp = item.target.value }, // 栏舍名称 changeBar(item) { this.create.temp.barname = this.houseNameList.find(obj => obj.id === item).bname this.getRange() }, changeOperatetime() { this.getRange() }, // 粪便评分参数 getRange() { this.create.getdataListParm2.parammaps.date = this.create.temp.operatetime this.create.getdataListParm2.parammaps.barid = this.create.temp.barid GetDataByName(this.create.getdataListParm2).then(response => { if (response.data.list !== null) { this.create.temp.standardscore = response.data.list[0].dungstandard this.create.temp.ftid = response.data.list[0].ftid this.create.temp.ftname = response.data.list[0].ftname } else { this.create.temp.standardscore = '' this.create.temp.ftid = '' this.create.temp.ftname = '' } }) }, // 操作人 getNoteTakerList() { GetDataByName(this.create.getdataListParm).then(response => { if (response.data.list !== null) { for (let i = 0; i < response.data.list.length; i++) { response.data.list[i].myId = i } this.create.noteTakerList = response.data.list console.log('记录人数据', response.data.list) console.log(this.create.noteTakerList) } else { this.create.noteTakerList = [] } }) }, blurScore() { if (this.create.temp.score1 !== '' && this.create.temp.score2 !== '' && this.create.temp.score3 !== '' && this.create.temp.score4 !== '' && this.create.temp.score5 !== '') { 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) } }, handleCreate() { console.log('点击了新增') this.resetTemp() this.getNoteTakerList() this.create.dialogStatus = 'create' this.create.dialogFormVisible = true }, createData() { console.log('点击了新增保存') this.isokDisable = true setTimeout(() => { this.isokDisable = false }, 1000) this.$refs['temp'].validate(valid => { if (valid) { this.isokDisable = true setTimeout(() => { this.isokDisable = false }, 1000) const score = /^[1-9]\d*$/ // 1分/2分/3分/4分/5分 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))) { this.$message({ type: 'error', message: '牛头数请输入大于等于0的整数', duration: 2000 }) return false } this.requestParam.name = 'insertDungscore' this.requestParam.parammaps = this.create.temp if (this.create.temp.emp == '') { this.create.temp.emp = Cookies.get('employename') } PostDataByName(this.requestParam).then(response => { console.log('新增保存发送参数', this.requestParam) if (response.msg !== 'fail') { this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 }) this.create.dialogFormVisible = false this.getList() } else { failproccess(response, this.$notify) } }) } }) }, createDataAgain() { console.log('点击了新增保存') this.isokDisable = true setTimeout(() => { this.isokDisable = false }, 1000) this.$refs['temp'].validate(valid => { if (valid) { this.isokDisable = true setTimeout(() => { this.isokDisable = false }, 1000) const score = /^[1-9]\d*$/ // 1分/2分/3分/4分/5分 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))) { this.$message({ type: 'error', message: '牛头数请输入大于等于0的整数', duration: 2000 }) return false } this.requestParam.name = 'insertDungscore' this.requestParam.parammaps = this.create.temp if (this.create.temp.emp == '') { this.create.temp.emp = Cookies.get('employename') } PostDataByName(this.requestParam).then(response => { console.log('新增保存发送参数', this.requestParam) if (response.msg !== 'fail') { this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 }) this.resetTemp() this.getList() this.getNoteTakerList() } else { failproccess(response, this.$notify) } }) } }) }, // 编辑 handleUpdate(row) { console.log('点击了编辑', row) row.barid = String(row.barid) row.score1 = String(row.score1) row.score2 = String(row.score2) row.score3 = String(row.score3) row.score4 = String(row.score4) row.score5 = String(row.score5) this.create.temp = Object.assign({}, row) this.create.temp.id = row.id this.getNoteTakerList() this.create.dialogStatus = 'update' this.create.dialogFormVisible = true }, updateData() { this.isokDisable = true setTimeout(() => { this.isokDisable = false }, 1000) this.$refs['temp'].validate(valid => { if (valid) { this.isokDisable = true setTimeout(() => { this.isokDisable = false }, 1000) const score = /^[1-9]\d*$/ // 1分/2分/3分/4分/5分 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))) { this.$message({ type: 'error', message: '牛头数请输入大于等于0的整数', duration: 2000 }) return false } this.requestParam.name = 'updateDungscore' this.requestParam.parammaps = this.create.temp if (this.create.temp.emp == '') { this.create.temp.emp = Cookies.get('employename') } PostDataByName(this.requestParam).then(response => { console.log('新增保存发送参数', this.requestParam) if (response.msg !== 'fail') { this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 }) this.create.dialogFormVisible = false this.getList() } else { failproccess(response, this.$notify) } }) } }) }, // 删除 handleRowDelete(row) { console.log('点击了行内删除') MessageBox.confirm('是否确认删除此信息?', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning' }).then(() => { this.selectList = [] this.requestParam.name = 'deleteDungscore' this.requestParam.parammaps = {} this.requestParam.parammaps.pastureid = row.pastureid this.requestParam.parammaps.id = row.id PostDataByName(this.requestParam).then(response => { if (response.msg === 'fail') { this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 }) } else { this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 }) this.getList() } }) }).catch(() => { this.$message({ type: 'info', message: '已取消删除' }) }) }, handleSelectionChange(val) { console.log('勾选数据', val) this.selectList = val }, handleDelete() { console.log('点击了删除') if (this.selectList.length == 0) { this.$message({ type: 'error', message: '请选择粪便评分', duration: 2000 }) } else { MessageBox.confirm('是否确认删除此信息?', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning' }).then(() => { console.log(this.selectList) this.requestParam.common = { 'returnmap': '0' } this.requestParam.data = [] this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }} this.requestParam.data[0].children = [] this.requestParam.data[0].children[0] = { 'name': 'deleteDungscore', 'type': 'e', 'parammaps': { id: '@insertSpotList.id', pastureid: '@insertSpotList.pastureid' }} ExecDataByConfig(this.requestParam).then(response => { console.log('删除保存发送参数', this.requestParam) if (response.msg === 'fail') { this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 }) } else { this.$notify({ title: '', message: '删除成功', type: 'success', duration: 2000 }) this.getList() } }) }) } }, // 复制 handleCopy() { console.log('点击了复制') if (this.selectList.length == 0) { this.$message({ type: 'error', message: '请选择粪便评分', duration: 2000 }) } else if (this.selectList.length == 1) { MessageBox.confirm('是否确认复制此信息?', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning' }).then(() => { this.requestParam.name = 'copyDungscore' this.requestParam.parammaps = {} this.requestParam.parammaps.pastureid = this.selectList[0].pastureid this.requestParam.parammaps.id = this.selectList[0].id PostDataByName(this.requestParam).then(response => { if (response.msg === 'fail') { this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 }) } else { this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 }) this.getList() } }) }).catch(() => { this.$message({ type: 'info', message: '已取消删除' }) }) } else { this.$message({ type: 'error', message: '请选择一条粪便评分', duration: 2000 }) } }, // 导出 handleExport() { console.log('点击了导出') }, // 导入 handleImport() { console.log('点击了导入') } } } </script> <style lang="scss" scoped> .search{padding-top:10px;clear: both;} .table{margin-top:10px;} </style>