index.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. <template>
  2. <div class="app-container">
  3. <div class="search">
  4. <el-select v-model="table.getdataListParm.parammaps.bigfeedclassname" filterable :placeholder="$t('feedChart.sldl')" class="filter-item" style="width: 120px;" clearable>
  5. <el-option v-for="item in feedCategoryList" :key="item.value" :label="item.label" :value="item.label" />
  6. </el-select>
  7. <el-input v-model="table.getdataListParm.parammaps.fcname" :placeholder="$t('feedChart.slflmc')" style="width: 180px;" class="filter-item" clearable />
  8. <el-input v-model="table.getdataListParm.parammaps.fccode" :placeholder="$t('feedChart.slflbh')" style="width: 180px;" class="filter-item" clearable />
  9. <el-select v-model="table.getdataListParm.parammaps.enable" filterable :placeholder="$t('formulationEvaluation.sfqy')" class="filter-item" style="width: 120px;" clearable>
  10. <el-option v-for="item in enableList" :key="item.id" :label="item.name" :value="item.id" />
  11. </el-select>
  12. <el-button class="successBorder" @click="form_search">{{$t('common.query')}}</el-button>
  13. <el-button class="successBorder" @click="handleRefresh">{{$t('common.reset')}}</el-button>
  14. </div>
  15. <div class="operation">
  16. <el-button v-if="isRoleEdit" class="success" icon="el-icon-plus" @click="handleCreate">{{$t('formulationEvaluation.add')}}</el-button>
  17. <el-button v-if="isRoleEdit" class="danger" icon="el-icon-delete" @click="form_delete">{{$t('formulationEvaluation.del')}}</el-button>
  18. </div>
  19. <div class="table">
  20. <el-table
  21. :key="table.tableKey"
  22. v-loading="table.listLoading"
  23. :element-loading-text="$t('common.tableMsg')"
  24. :data="table.list"
  25. border
  26. fit
  27. highlight-current-row
  28. style="width: 100%;"
  29. :row-style="rowStyle"
  30. :cell-style="cellStyle"
  31. class="elTable table-fixed"
  32. @selection-change="handleSelectionChange"
  33. >
  34. <el-table-column type="selection" align="center" width="50" />
  35. <el-table-column :label="$t('formulationEvaluation.xh')" align="center" type="index" width="50px">
  36. <template slot-scope="scope">
  37. <span v-if="table.pageNum">{{ scope.$index + (table.pageNum-1) * table.pageSize + 1 }}</span>
  38. <span v-else>1</span>
  39. </template>
  40. </el-table-column>
  41. <el-table-column :label="$t('feedChart.sldl')" min-width="130px" align="center">
  42. <template slot-scope="scope">
  43. <span v-if="scope.row.NoEdit">{{ scope.row.bigfeedclassname }}</span>
  44. <el-select v-if="scope.row.Edit" v-model="scope.row.bigfeedclassid" filterable :placeholder="$t('feedChart.sldl')" class="filter-item" style="width:95%;padding:10px 0;" @change="changeBigfeedclass">
  45. <el-option v-for="item in feedCategoryList" :key="item.value" :label="item.label" :value="item.value" />
  46. </el-select>
  47. </template>
  48. </el-table-column>
  49. <el-table-column :label="$t('feedChart.slflmc')" min-width="130px" align="center">
  50. <template slot-scope="scope">
  51. <span v-if="scope.row.NoEdit">{{ scope.row.fcname }}</span>
  52. <el-input v-if="scope.row.Edit" v-model="scope.row.fcname" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" style="width:95%;padding:10px 0;" maxlength="32" />
  53. </template>
  54. </el-table-column>
  55. <el-table-column :label="$t('feedChart.slflbh')" min-width="110px" align="center">
  56. <template slot-scope="scope">
  57. <span v-if="scope.row.NoEdit">{{ scope.row.fccode }}</span>
  58. <el-input v-if="scope.row.Edit" v-model="scope.row.fccode" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" style="width:95%;padding:10px 0;" maxlength="32" />
  59. </template>
  60. </el-table-column>
  61. <el-table-column :label="$t('formulationEvaluation.sfqy')" min-width="110px" align="center">
  62. <template slot-scope="scope">
  63. <el-switch v-model="scope.row.enable" :disabled="scope.row.NoEdit==true" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" @change="handleEnableChange(scope.$index, scope.row)" />
  64. </template>
  65. </el-table-column>
  66. <el-table-column :label="$t('errorAnalysis.cz')" align="center" width="80" class-name="small-padding fixed-width" fixed="right">
  67. <template slot-scope="{row}">
  68. <!-- 新增 -->
  69. <el-button v-if="row.isCreate" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="createData(row)" />
  70. <span v-if="row.isCreate" class="centerSpan">|</span>
  71. <el-button v-if="row.isCreate" class="minCancel" icon="el-icon-close" @click="createCancel(row)" />
  72. <!-- 编辑 -->
  73. <el-button v-if="row.isUpdate && isRoleEdit" class="miniSuccess" icon="el-icon-edit-outline" @click="handleUpdate(row)" />
  74. <span v-if="row.isUpdate && isRoleEdit" class="centerSpan">|</span>
  75. <el-button v-if="row.isUpdate && isRoleEdit" class="miniDanger" icon="el-icon-delete" @click="handleRowDelete(row)" />
  76. <!-- 编辑保存 -->
  77. <el-button v-if="row.isUpdateSave" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="updateData(row)" />
  78. <span v-if="row.isUpdateSave" class="centerSpan">|</span>
  79. <el-button v-if="row.isUpdateSave" class="minCancel" icon="el-icon-close" @click="updateCancel(row)" />
  80. </template>
  81. </el-table-column>
  82. </el-table>
  83. <pagination v-show="table.total>=0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="getList" />
  84. </div>
  85. </div>
  86. </template>
  87. <script>
  88. import { GetDataByName, PostDataByName, failproccess, ExecDataByConfig, GetDataByNames, checkButtons } from '@/api/common'
  89. import Cookies from 'js-cookie'
  90. import Pagination from '@/components/Pagination'
  91. import { MessageBox } from 'element-ui'
  92. export default {
  93. name: 'FeedClassification',
  94. components: { Pagination },
  95. data() {
  96. return {
  97. isRoleEdit: [],
  98. requestParams: [
  99. { name: 'getDictByName', offset: 0, pagecount: 0, params: ['饲料大类'] }
  100. ],
  101. enableList: [{ id: 1,
  102. name:this.$t('supplier.yes')}, { id: 0, name: '否' }],
  103. feedCategoryList: [],
  104. table: {
  105. getdataListParm: {
  106. name: 'getFeedclassList',
  107. page: 1,
  108. offset: 1,
  109. pagecount: parseInt(Cookies.get('pageCount')),
  110. returntype: 'Map',
  111. parammaps: {
  112. pastureid: Cookies.get('pastureid'),
  113. fccode: '',
  114. fcname: '',
  115. bigfeedclassname: '',
  116. enable: ''
  117. }
  118. },
  119. tableKey: 0,
  120. list: [],
  121. total: 0,
  122. listLoading: true,
  123. temp: {}
  124. },
  125. requestParam: {},
  126. isokDisable: false,
  127. selectList: [],
  128. rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
  129. cellStyle: { padding: 0 + 'px' }
  130. }
  131. },
  132. created() {
  133. this.getList()
  134. this.getDownList()
  135. this.getButtons()
  136. },
  137. methods: {
  138. getButtons() {
  139. const Edit = 'FeedClassification'
  140. const isRoleEdit = checkButtons(JSON.parse(sessionStorage.getItem('buttons')), Edit)
  141. this.isRoleEdit = isRoleEdit
  142. },
  143. getDownList() {
  144. GetDataByNames(this.requestParams).then(response => {
  145. this.feedCategoryList = response.data.getDictByName.list
  146. })
  147. },
  148. getList() {
  149. this.table.listLoading = true
  150. GetDataByName(this.table.getdataListParm).then(response => {
  151. console.log('table数据', response.data.list)
  152. if (response.data.list !== null) {
  153. for (let i = 0; i < response.data.list.length; i++) {
  154. this.$set(response.data.list[i], 'Edit', false) // 编辑
  155. this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入
  156. this.$set(response.data.list[i], 'isCreate', false) // 新增操作
  157. this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作
  158. this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存
  159. }
  160. this.table.list = response.data.list
  161. this.table.pageNum = response.data.pageNum
  162. this.table.pageSize = response.data.pageSize
  163. } else {
  164. this.table.list = []
  165. }
  166. this.table.total = response.data.total
  167. setTimeout(() => {
  168. this.table.listLoading = false
  169. }, 100)
  170. })
  171. },
  172. handleEnableChange() {
  173. console.log('点击了是否启用')
  174. },
  175. form_search() {
  176. console.log('点击了查询')
  177. this.table.getdataListParm.offset = 1
  178. this.getList()
  179. },
  180. handleRefresh() {
  181. console.log('点击了重置')
  182. this.table.getdataListParm.parammaps.bigfeedclassname = ''
  183. this.table.getdataListParm.parammaps.fccode = ''
  184. this.table.getdataListParm.parammaps.fcname = ''
  185. this.table.getdataListParm.parammaps.enable = ''
  186. this.table.getdataListParm.offset = 1
  187. this.getList()
  188. },
  189. changeBigfeedclass(item) {
  190. this.table.temp.bigfeedclassname = this.feedCategoryList.find(obj => obj.value === item).label
  191. },
  192. handleCreate() {
  193. // 编辑true/不可编辑false
  194. // 新增操true,编辑false,编辑保存false
  195. for (let i = 0; i < this.table.list.length; i++) {
  196. if (this.table.list[i].Edit === true) {
  197. this.$message({ type: 'error', message: this.$t('driver.messageNote'), duration: 2000 })
  198. return false
  199. }
  200. }
  201. this.table.list.unshift({ 'myId': (new Date()).valueOf(), 'Edit': true, 'NoEdit': false, 'isCreate': true, 'isUpdate': false, 'isUpdateSave': false, 'enable': 1, 'bigfeedclassid': '', 'fcname': '', 'fccode': '' })
  202. },
  203. createData(row) {
  204. console.log('点击了新增保存', row)
  205. this.table.temp.pastureid = Cookies.get('pastureid')
  206. this.table.temp.fccode = row.fccode
  207. this.table.temp.fcname = row.fcname
  208. this.table.temp.bigfeedclassname = this.table.temp.bigfeedclassname
  209. this.table.temp.bigfeedclassid = row.bigfeedclassid
  210. this.table.temp.enable = row.enable
  211. // 饲料大类/饲料分类/饲料分类编号是否为空
  212. if (this.table.temp.bigfeedclassid == '' && this.table.temp.fcname == '' && this.table.temp.fccode == '') {
  213. this.$message({ type: 'error', message: this.$t('feedChart.sldlflbh'), duration: 2000 })
  214. return false
  215. } else if (this.table.temp.fcname == '' && this.table.temp.fccode == '') {
  216. this.$message({ type: 'error', message: this.$t('feedChart.slflbh'), duration: 2000 })
  217. return false
  218. } else if (this.table.temp.bigfeedclassid == '') {
  219. this.$message({ type: 'error', message: this.$t('feedChart.sldlno'), duration: 2000 })
  220. return false
  221. } else if (this.table.temp.fcname == '') {
  222. this.$message({ type: 'error', message: this.$t('feedChart.slflno'), duration: 2000 })
  223. return false
  224. } else if (this.table.temp.fccode == '') {
  225. this.$message({ type: 'error', message: this.$t('feedChart.slbhno'), duration: 2000 })
  226. return false
  227. }
  228. const pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]")
  229. if (pattern.test(this.table.temp.fccode)) {
  230. this.$message({ type: 'error', message: this.$t('feedChart.slfltszi'), duration: 2000 })
  231. return false
  232. }
  233. if (pattern.test(this.table.temp.fcname)) {
  234. this.$message({ type: 'error', message: this.$t('feedChart.slfltszi'), duration: 2000 })
  235. return false
  236. }
  237. this.isokDisable = true
  238. setTimeout(() => {
  239. this.isokDisable = false
  240. }, 1000)
  241. this.requestParam.name = 'insertFeedclass'
  242. this.requestParam.parammaps = this.table.temp
  243. PostDataByName(this.requestParam).then(response => {
  244. console.log('新增保存发送参数', this.requestParam)
  245. if (response.msg !== 'fail') {
  246. this.$notify({ title: this.$t('common.succes'), message: this.$t('driver.saveSuccess'), type: 'success', duration: 2000 })
  247. this.getList()
  248. } else {
  249. this.$notify({ title: this.$t('driver.saveFail'), message: response.data, type: 'warning', duration: 2000 })
  250. }
  251. })
  252. },
  253. createCancel(row) {
  254. console.log('点击了新增取消')
  255. for (let i = 0; i < this.table.list.length; i++) {
  256. if (row.myId === this.table.list[i].myId) {
  257. var listIndex = this.table.list.indexOf(this.table.list[i])
  258. }
  259. if (listIndex > -1) {
  260. this.table.list.splice(listIndex, 1)
  261. return
  262. }
  263. }
  264. },
  265. handleUpdate(row) {
  266. for (let i = 0; i < this.table.list.length; i++) {
  267. if (this.table.list[i].Edit == true) {
  268. this.$message({ type: 'error', message: this.$t('driver.messageNote'), duration: 2000 })
  269. return false
  270. }
  271. }
  272. // 编辑true,不可编辑false
  273. row.Edit = true
  274. row.NoEdit = false
  275. // 新增false,编辑false,编辑保存true
  276. row.isCreate = false
  277. row.isUpdate = false
  278. row.isUpdateSave = true
  279. row.bigfeedclassid = String(row.bigfeedclassid)
  280. this.table.temp.bigfeedclassid = row.bigfeedclassid
  281. this.table.temp.bigfeedclassname = row.bigfeedclassname
  282. },
  283. updateData(row) {
  284. console.log('点击了编辑保存', row)
  285. console.log('点击了新增保存', row)
  286. this.table.temp.pastureid = Cookies.get('pastureid')
  287. this.table.temp.fccode = row.fccode
  288. this.table.temp.fcname = row.fcname
  289. this.table.temp.bigfeedclassname = this.table.temp.bigfeedclassname
  290. this.table.temp.bigfeedclassid = row.bigfeedclassid
  291. this.table.temp.enable = row.enable
  292. this.table.temp.id = row.id
  293. // 饲料大类/饲料分类/饲料分类编号是否为空
  294. if (this.table.temp.bigfeedclassid == '' && this.table.temp.fcname == '' && this.table.temp.fccode == '') {
  295. this.$message({ type: 'error', message: this.$t('feedChart.sldlflbh'), duration: 2000 })
  296. return false
  297. } else if (this.table.temp.fcname == '' && this.table.temp.fccode == '') {
  298. this.$message({ type: 'error', message: this.$t('feedChart.slflbh'), duration: 2000 })
  299. return false
  300. } else if (this.table.temp.bigfeedclassid == '') {
  301. this.$message({ type: 'error', message: this.$t('feedChart.sldlno'), duration: 2000 })
  302. return false
  303. } else if (this.table.temp.fcname == '') {
  304. this.$message({ type: 'error', message: this.$t('feedChart.slflno'), duration: 2000 })
  305. return false
  306. } else if (this.table.temp.fccode == '') {
  307. this.$message({ type: 'error', message: this.$t('feedChart.slbhno'), duration: 2000 })
  308. return false
  309. }
  310. const pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]")
  311. if (pattern.test(this.table.temp.fccode)) {
  312. this.$message({ type: 'error', message: this.$t('feedChart.slfltszi'), duration: 2000 })
  313. return false
  314. }
  315. if (pattern.test(this.table.temp.fcname)) {
  316. this.$message({ type: 'error', message: this.$t('feedChart.slfltszi'), duration: 2000 })
  317. return false
  318. }
  319. this.isokDisable = true
  320. setTimeout(() => {
  321. this.isokDisable = false
  322. }, 1000)
  323. this.requestParam.name = 'updateFeedclass'
  324. this.requestParam.parammaps = this.table.temp
  325. PostDataByName(this.requestParam).then(response => {
  326. console.log('新增保存发送参数', this.requestParam)
  327. if (response.msg !== 'fail') {
  328. this.$notify({ title: this.$t('common.succes'), message: this.$t('driver.saveSuccess'), type: 'success', duration: 2000 })
  329. this.getList()
  330. } else {
  331. this.$notify({ title: this.$t('driver.saveFail'), message: response.data, type: 'warning', duration: 2000 })
  332. }
  333. })
  334. },
  335. updateCancel(row) {
  336. console.log('点击了编辑取消')
  337. // 编辑false,不可编辑true
  338. row.Edit = false
  339. row.NoEdit = true
  340. // 新增false,编辑true,编辑保存false
  341. row.isCreate = false
  342. row.isUpdate = true
  343. row.isUpdateSave = false
  344. this.getList()
  345. },
  346. handleRowDelete(row) {
  347. console.log('点击了行内删除')
  348. MessageBox.confirm( this.$t('common.delMsg'), {
  349. confirmButtonText: this.$t('common.confirm'), confirmButtonText: this.$t('common.cancel'), type: 'warning'
  350. }).then(() => {
  351. this.selectList = []
  352. this.requestParam = {}
  353. this.requestParam.common = { 'returnmap': '0' }
  354. this.requestParam.data = []
  355. this.requestParam.data[0] = { 'name': 'checkDeleteFC', 'type': 'v', 'parammaps': {
  356. 'pastureid': row.pastureid,
  357. 'id': row.id
  358. }}
  359. this.requestParam.data[1] = { 'name': 'deleteFeedclass', 'type': 'e', 'parammaps': {
  360. 'pastureid': row.pastureid,
  361. 'id': row.id
  362. }}
  363. ExecDataByConfig(this.requestParam).then(response => {
  364. console.log('删除保存发送参数', this.requestParam)
  365. if (response.msg === 'fail') {
  366. this.$notify({ title: this.$t('common.delfail'), message: response.data, type: 'warning', duration: 2000 })
  367. } else {
  368. this.$notify({ title: '',message: this.$t('common.delSuccess'), type: 'success', duration: 2000 })
  369. this.getList()
  370. }
  371. })
  372. }).catch(() => {
  373. this.$message({ type: 'info', message: this.$t('common.cancelMsg') })
  374. })
  375. },
  376. handleSelectionChange(val) {
  377. console.log('勾选数据', val)
  378. this.selectList = val
  379. },
  380. form_delete() {
  381. console.log('点击了删除')
  382. if (this.selectList.length == 0) {
  383. this.$message({ type: 'error',message: this.$t('feedChart.slflxx'), duration: 2000 })
  384. } else {
  385. MessageBox.confirm('当前选中' + this.selectList.length + '条信息,是否删除?', {
  386. confirmButtonText: this.$t('common.confirm'), confirmButtonText: this.$t('common.cancel'), type: 'warning'
  387. }).then(() => {
  388. console.log(this.selectList)
  389. this.requestParam = {}
  390. this.requestParam.common = { 'returnmap': '0' }
  391. this.requestParam.data = []
  392. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }}
  393. this.requestParam.data[0].children = []
  394. this.requestParam.data[0].children[0] = { 'name': 'checkDeleteFC', 'type': 'v', 'parammaps': {
  395. id: '@insertSpotList.id',
  396. pastureid: '@insertSpotList.pastureid'
  397. }}
  398. this.requestParam.data[0].children[1] = { 'name': 'deleteFeedclass', 'type': 'e', 'parammaps': {
  399. id: '@insertSpotList.id',
  400. pastureid: '@insertSpotList.pastureid'
  401. }}
  402. ExecDataByConfig(this.requestParam).then(response => {
  403. console.log('删除保存发送参数', this.requestParam)
  404. if (response.msg === 'fail') {
  405. this.$notify({ title: this.$t('common.delfail'), message: response.data, type: 'warning', duration: 2000 })
  406. } else {
  407. this.$notify({ title: '',message: this.$t('common.delSuccess'), type: 'success', duration: 2000 })
  408. this.getList()
  409. }
  410. })
  411. })
  412. }
  413. }
  414. }
  415. }
  416. </script>
  417. <style lang="scss" scoped>
  418. .search{margin-top:10px;}
  419. </style>