65d745bf543127f5a43afbb78edf1e2f16a587e6.svn-base 14 KB

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