cc34fad854f21a88412d5d20b9cf693c18a54bf3.svn-base 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. <template>
  2. <div class="app-container">
  3. <div class="search">
  4. <el-input v-model="table.getdataListParm.parammaps.drivername" placeholder="驾驶员名称" style="width: 180px;" class="filter-item" clearable />
  5. <el-input v-model="table.getdataListParm.parammaps.drivercode" 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-table
  18. :key="table.tableKey"
  19. v-loading="table.listLoading"
  20. element-loading-text="给我一点时间"
  21. :data="table.list"
  22. border
  23. fit
  24. highlight-current-row
  25. style="width: 100%;"
  26. :row-style="rowStyle"
  27. :cell-style="cellStyle"
  28. class="elTable table-fixed"
  29. @selection-change="handleSelectionChange"
  30. >
  31. <el-table-column type="selection" align="center" width="50" />
  32. <el-table-column label="序号" align="center" type="index" width="50px">
  33. <template slot-scope="scope">
  34. <span v-if="table.pageNum">{{ scope.$index + (table.pageNum-1) * table.pageSize + 1 }}</span>
  35. <span v-else>1</span>
  36. </template>
  37. </el-table-column>
  38. <el-table-column label="驾驶员编号" min-width="130px" align="center">
  39. <template slot-scope="scope">
  40. <span v-if="scope.row.NoEdit">{{ scope.row.drivercode }}</span>
  41. <el-input v-if="scope.row.Edit" v-model="scope.row.drivercode" placeholder="1-32个字符" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:95%;padding:10px 0;" />
  42. </template>
  43. </el-table-column>
  44. <el-table-column label="驾驶员名称" min-width="130px" align="center">
  45. <template slot-scope="scope">
  46. <span v-if="scope.row.NoEdit">{{ scope.row.drivername }}</span>
  47. <el-input v-if="scope.row.Edit" v-model="scope.row.drivername" placeholder="1-32个字符" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:95%;padding:10px 0;" />
  48. </template>
  49. </el-table-column>
  50. <el-table-column label="是否启用" min-width="110px" align="center">
  51. <template slot-scope="scope">
  52. <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)" />
  53. </template>
  54. </el-table-column>
  55. <el-table-column label="操作" align="center" width="80" class-name="small-padding fixed-width" fixed="right">
  56. <template slot-scope="{row}">
  57. <!-- 新增 -->
  58. <el-button v-if="row.isCreate" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="createData(row)" />
  59. <span v-if="row.isCreate" class="centerSpan">|</span>
  60. <el-button v-if="row.isCreate" class="minCancel" icon="el-icon-close" @click="createCancel(row)" />
  61. <!-- 编辑 -->
  62. <el-button v-if="row.isUpdate && isRoleEdit" class="miniSuccess" icon="el-icon-edit-outline" @click="handleUpdate(row)" />
  63. <span v-if="row.isUpdate && isRoleEdit" class="centerSpan">|</span>
  64. <el-button v-if="row.isUpdate && isRoleEdit" class="miniDanger" icon="el-icon-delete" @click="handleRowDelete(row)" />
  65. <!-- 编辑保存 -->
  66. <el-button v-if="row.isUpdateSave" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="updateData(row)" />
  67. <span v-if="row.isUpdateSave" class="centerSpan">|</span>
  68. <el-button v-if="row.isUpdateSave" class="minCancel" icon="el-icon-close" @click="updateCancel(row)" />
  69. </template>
  70. </el-table-column>
  71. </el-table>
  72. <pagination v-show="table.total>0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="getList" />
  73. </div>
  74. </div>
  75. </template>
  76. <script>
  77. import { GetDataByName, PostDataByName, failproccess, ExecDataByConfig, checkButtons } from '@/api/common'
  78. import Cookies from 'js-cookie'
  79. import Pagination from '@/components/Pagination'
  80. import { MessageBox } from 'element-ui'
  81. export default {
  82. name: 'Driver',
  83. components: { Pagination },
  84. data() {
  85. return {
  86. isRoleEdit: [],
  87. enableList: [{ id: 1, name: '是' }, { id: 0, name: '否' }], // 是否启用
  88. table: {
  89. getdataListParm: {
  90. name: 'getDriverList',
  91. page: 1,
  92. offset: 1,
  93. pagecount: parseInt(Cookies.get('pageCount')),
  94. returntype: 'Map',
  95. parammaps: {
  96. pastureid: Cookies.get('pastureid'),
  97. enable: '',
  98. drivername: '',
  99. drivercode: ''
  100. }
  101. },
  102. tableKey: 0,
  103. list: [],
  104. total: 0,
  105. listLoading: true,
  106. temp: {}
  107. },
  108. requestParam: {},
  109. isokDisable: false,
  110. selectList: [],
  111. rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
  112. cellStyle: { padding: 0 + 'px' }
  113. }
  114. },
  115. created() {
  116. // console.log(VUE_APP_BASE_pageCount)
  117. console.log(this.VUE_APP_BASE_pageCount, 'this.VUE_APP_BASE_pageCount')
  118. this.getList()
  119. this.getButtons()
  120. },
  121. methods: {
  122. getButtons() {
  123. const Edit = 'Driver'
  124. const isRoleEdit = checkButtons(JSON.parse(sessionStorage.getItem('buttons')), Edit)
  125. this.isRoleEdit = isRoleEdit
  126. },
  127. getList() {
  128. this.table.listLoading = true
  129. GetDataByName(this.table.getdataListParm).then(response => {
  130. console.log('table数据', response.data.list)
  131. if (response.data.list !== null) {
  132. for (let i = 0; i < response.data.list.length; i++) {
  133. this.$set(response.data.list[i], 'Edit', false) // 编辑
  134. this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入
  135. this.$set(response.data.list[i], 'isCreate', false) // 新增操作
  136. this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作
  137. this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存
  138. }
  139. this.table.list = response.data.list
  140. this.table.pageNum = response.data.pageNum
  141. this.table.pageSize = response.data.pageSize
  142. this.table.total = response.data.total
  143. } else {
  144. this.table.list = []
  145. }
  146. setTimeout(() => {
  147. this.table.listLoading = false
  148. }, 100)
  149. })
  150. },
  151. handleEnableChange() {
  152. console.log('点击了是否启用')
  153. },
  154. handleSearch() {
  155. console.log('点击了查询')
  156. this.table.getdataListParm.offset = 1
  157. this.getList()
  158. },
  159. handleRefresh() {
  160. console.log('点击了重置')
  161. this.table.getdataListParm.parammaps.drivername = ''
  162. this.table.getdataListParm.parammaps.enable = ''
  163. this.table.getdataListParm.parammaps.drivercode = ''
  164. this.table.getdataListParm.offset = 1
  165. this.getList()
  166. },
  167. handleCreate() {
  168. // 编辑true/不可编辑false
  169. // 新增操true,编辑false,编辑保存false
  170. for (let i = 0; i < this.table.list.length; i++) {
  171. if (this.table.list[i].Edit === true) {
  172. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  173. return false
  174. }
  175. }
  176. this.table.list.unshift({ 'myId': (new Date()).valueOf(), 'Edit': true, 'NoEdit': false, 'isCreate': true, 'isUpdate': false, 'isUpdateSave': false, 'enable': 1, 'drivercode': '', 'drivername': '' })
  177. },
  178. createData(row) {
  179. console.log('点击了新增保存', row)
  180. this.table.temp.pastureid = Cookies.get('pastureid')
  181. this.table.temp.drivercode = row.drivercode
  182. this.table.temp.drivername = row.drivername
  183. this.table.temp.enable = row.enable
  184. // 检验用户名称/角色是否为空
  185. if (this.table.temp.drivercode == '' && this.table.temp.drivername == '') {
  186. this.$message({ type: 'error', message: '驾驶员编号/驾驶员名称不能为空', duration: 2000 })
  187. return false
  188. } else if (this.table.temp.drivercode == '') {
  189. this.$message({ type: 'error', message: '驾驶员编号不能为空', duration: 2000 })
  190. return false
  191. } else if (this.table.temp.drivername == '') {
  192. this.$message({ type: 'error', message: '驾驶员名称不能为空', duration: 2000 })
  193. return false
  194. }
  195. this.isokDisable = true
  196. setTimeout(() => {
  197. this.isokDisable = false
  198. }, 1000)
  199. this.requestParam.name = 'insertDriver'
  200. this.requestParam.parammaps = this.table.temp
  201. PostDataByName(this.requestParam).then(response => {
  202. console.log('新增保存发送参数', this.requestParam)
  203. if (response.msg !== 'fail') {
  204. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  205. this.getList()
  206. } else {
  207. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  208. }
  209. })
  210. },
  211. createCancel(row) {
  212. console.log('点击了新增取消')
  213. for (let i = 0; i < this.table.list.length; i++) {
  214. if (row.myId === this.table.list[i].myId) {
  215. var listIndex = this.table.list.indexOf(this.table.list[i])
  216. }
  217. if (listIndex > -1) {
  218. this.table.list.splice(listIndex, 1)
  219. return
  220. }
  221. }
  222. },
  223. handleUpdate(row) {
  224. for (let i = 0; i < this.table.list.length; i++) {
  225. if (this.table.list[i].Edit == true) {
  226. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  227. return false
  228. }
  229. }
  230. // 编辑true,不可编辑false
  231. row.Edit = true
  232. row.NoEdit = false
  233. // 新增false,编辑false,编辑保存true
  234. row.isCreate = false
  235. row.isUpdate = false
  236. row.isUpdateSave = true
  237. },
  238. updateData(row) {
  239. console.log('点击了编辑保存', row)
  240. this.table.temp.pastureid = row.pastureid
  241. this.table.temp.drivercode = row.drivercode
  242. this.table.temp.drivername = row.drivername
  243. this.table.temp.enable = row.enable
  244. this.table.temp.id = row.id
  245. // 检验用户名称/角色是否为空
  246. console.log(this.table.temp.drivercode)
  247. console.log(this.table.temp.drivername)
  248. if (this.table.temp.drivercode == '' && this.table.temp.drivername == '') {
  249. this.$message({ type: 'error', message: '驾驶员编号/驾驶员名称不能为空', duration: 2000 })
  250. return false
  251. } else if (this.table.temp.drivercode == undefined || this.table.temp.drivercode == '') {
  252. this.$message({ type: 'error', message: '驾驶员编号不能为空', duration: 2000 })
  253. return false
  254. } else if (this.table.temp.drivername == undefined || this.table.temp.drivername == '') {
  255. this.$message({ type: 'error', message: '驾驶员名称不能为空', duration: 2000 })
  256. return false
  257. }
  258. this.isokDisable = true
  259. setTimeout(() => {
  260. this.isokDisable = false
  261. }, 1000)
  262. this.requestParam.name = 'updateDriver'
  263. this.requestParam.parammaps = this.table.temp
  264. PostDataByName(this.requestParam).then(response => {
  265. console.log('编辑保存发送参数', this.requestParam)
  266. if (response.msg !== 'fail') {
  267. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  268. this.getList()
  269. } else {
  270. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  271. }
  272. })
  273. },
  274. updateCancel(row) {
  275. console.log('点击了编辑取消')
  276. // 编辑false,不可编辑true
  277. row.Edit = false
  278. row.NoEdit = true
  279. // 新增false,编辑true,编辑保存false
  280. row.isCreate = false
  281. row.isUpdate = true
  282. row.isUpdateSave = false
  283. this.getList()
  284. },
  285. handleRowDelete(row) {
  286. console.log('点击了行内删除')
  287. MessageBox.confirm('是否确认删除此信息?', {
  288. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  289. }).then(() => {
  290. this.selectList = []
  291. this.requestParam.name = 'deleteDriver'
  292. this.requestParam.parammaps = {}
  293. this.requestParam.parammaps.pastureid = row.pastureid
  294. this.requestParam.parammaps.id = row.id
  295. PostDataByName(this.requestParam).then(response => {
  296. if (response.msg === 'fail') {
  297. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  298. } else {
  299. this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
  300. this.getList()
  301. }
  302. })
  303. }).catch(() => {
  304. this.$message({ type: 'info', message: '已取消删除' })
  305. })
  306. },
  307. handleSelectionChange(val) {
  308. console.log('勾选数据', val)
  309. this.selectList = val
  310. },
  311. handleDelete() {
  312. console.log('点击了删除')
  313. if (this.selectList.length == 0) {
  314. this.$message({ type: 'error', message: '请选择驾驶员信息', duration: 2000 })
  315. } else {
  316. MessageBox.confirm('当前选中' + this.selectList.length + '条信息,是否删除?', {
  317. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  318. }).then(() => {
  319. console.log(this.selectList)
  320. this.requestParam.common = { 'returnmap': '0' }
  321. this.requestParam.data = []
  322. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }}
  323. this.requestParam.data[0].children = []
  324. this.requestParam.data[0].children[0] = { 'name': 'deleteDriver', 'type': 'e', 'parammaps': {
  325. id: '@insertSpotList.id',
  326. pastureid: '@insertSpotList.pastureid'
  327. }}
  328. ExecDataByConfig(this.requestParam).then(response => {
  329. console.log('删除保存发送参数', this.requestParam)
  330. if (response.msg === 'fail') {
  331. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  332. } else {
  333. this.$notify({ title: '', message: '删除成功', type: 'success', duration: 2000 })
  334. this.getList()
  335. }
  336. })
  337. })
  338. }
  339. }
  340. }
  341. }
  342. </script>
  343. <style lang="scss" scoped>
  344. .search{margin-top:10px;}
  345. .table{margin-top:10px;}
  346. </style>