5a8a3ddffb3d4d4ecce354c8878ec599f97506f9.svn-base 18 KB

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