990a44954f46e7367efe5c9755b7d1429316e4b4.svn-base 20 KB

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