8a16527a84c2dd310fba593f6205433e76041b88.svn-base 15 KB

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