fc8f07ea5514c21d979032e29f57927a6401a0d7.svn-base 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  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.empCode" placeholder="用户名称" style="width: 180px;" class="filter-item" clearable />
  9. <el-input v-model="table.getdataListParm.parammaps.empname" placeholder="员工姓名" style="width: 180px;" class="filter-item" clearable />
  10. <el-select v-model="table.getdataListParm.parammaps.enable" 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-date-picker v-model="table.getdataListParm.parammaps.inputDatetime" class="inputDatetime filter-item" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" style="width: 250px;" />
  14. <el-button class="successBorder" @click="handleSearch">查询</el-button>
  15. <el-button class="successBorder" @click="handleRefresh">重置</el-button>
  16. </div>
  17. <div class="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="180px" align="center">
  39. <template slot-scope="scope">
  40. <span v-if="scope.row.NoEdit">{{ scope.row.username }}</span>
  41. <el-input v-if="scope.row.Edit" v-model.trim="scope.row.username" placeholder="建议使用手机号" 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.empname }}</span>
  47. <el-input v-if="scope.row.Edit" v-model.trim="scope.row.empname" 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="180px" align="center">
  51. <template slot-scope="scope">
  52. <span v-if="scope.row.NoEdit">{{ scope.row.phone }}</span>
  53. <el-input v-if="scope.row.Edit" v-model.trim="scope.row.phone" placeholder="请输入11位手机号" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="11" style="width:95%;padding:10px 0;" />
  54. </template>
  55. </el-table-column>
  56. <el-table-column label="角色" min-width="150px" align="center">
  57. <template slot-scope="scope">
  58. <span v-if="scope.row.NoEdit">{{ scope.row.rolename }}</span>
  59. <el-select v-if="scope.row.Edit" v-model="scope.row.roleid" placeholder="角色" class="filter-item" style="width:90%;padding:10px 0;" filterable @change="changeRolename">
  60. <el-option v-for="item in roleList" :key="item.id" :label="item.rolename" :value="item.id" />
  61. </el-select>
  62. </template>
  63. </el-table-column>
  64. <el-table-column label="创建时间" min-width="110px" align="center">
  65. <template slot-scope="scope">
  66. <span>{{ scope.row.createdtime }}</span>
  67. </template>
  68. </el-table-column>
  69. <el-table-column label="创建人" min-width="110px" align="center">
  70. <template slot-scope="scope">
  71. <span>{{ scope.row.createmp }}</span>
  72. </template>
  73. </el-table-column>
  74. <el-table-column label="是否启用" min-width="110px" align="center">
  75. <template slot-scope="scope">
  76. <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)" />
  77. </template>
  78. </el-table-column>
  79. <el-table-column label="操作" align="center" width="250" class-name="small-padding fixed-width" fixed="right">
  80. <template slot-scope="{row}">
  81. <!-- 新增 -->
  82. <el-button v-if="row.isCreate && isRoleEdit" :disabled="isokDisable" class="miniSuccess" @click="createData(row)">保存</el-button>
  83. <el-button v-if="row.isCreate && isRoleEdit" class="minCancel" @click="createCancel(row)">取消</el-button>
  84. <!-- 重置密码 -->
  85. <el-button v-if="row.isUpdate && isRoleEdit" class="miniSuccess" size="mini" style="width: 80px;" @click="handleResetPassword(row)"> 重置密码 </el-button>
  86. <!-- 编辑 -->
  87. <el-button v-if="row.isUpdate && isRoleEdit" class="miniSuccess" @click="handleUpdate(row)">编辑</el-button>
  88. <el-button v-if="row.isUpdate && isRoleEdit" class="miniDanger" @click="handleRowDelete(row)">删除</el-button>
  89. <!-- 编辑保存 -->
  90. <el-button v-if="row.isUpdateSave && isRoleEdit" :disabled="isokDisable" class="miniSuccess" @click="updateData(row)">保存</el-button>
  91. <el-button v-if="row.isUpdateSave && isRoleEdit" class="minCancel" @click="updateCancel(row)">取消</el-button>
  92. </template>
  93. </el-table-column>
  94. </el-table>
  95. <pagination v-show="table.total>0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="getList" />
  96. </div>
  97. </div>
  98. </template>
  99. <script>
  100. import { GetDataByName, PostDataByName, failproccess, GetDataByNames, ExecDataByConfig, checkButtons } from '@/api/common'
  101. import Cookies from 'js-cookie'
  102. import { parseTime } from '@/utils/index.js'
  103. import { MessageBox } from 'element-ui'
  104. import Pagination from '@/components/Pagination'
  105. export default {
  106. name: 'User',
  107. components: { Pagination },
  108. data() {
  109. return {
  110. isRoleEdit: [],
  111. requestParams: [
  112. { name: 'getRoleAll', offset: 0, pagecount: 0, parammaps: { 'pastureid': Cookies.get('pastureid') }}
  113. ],
  114. enableList: [{ id: 1, name: '是' }, { id: 0, name: '否' }], // 是否启用
  115. roleList: [], // 角色
  116. table: {
  117. getdataListParm: {
  118. name: 'getuserallL',
  119. page: 1,
  120. offset: 1,
  121. pagecount: 10,
  122. returntype: 'Map',
  123. parammaps: {
  124. pastureid: Cookies.get('pastureid'),
  125. empCode: '',
  126. empname: '',
  127. enable: '',
  128. startTime: '',
  129. stopTime: '',
  130. inputDatetime: ''
  131. }
  132. },
  133. tableKey: 0,
  134. list: [],
  135. total: 0,
  136. listLoading: true,
  137. temp: {}
  138. },
  139. requestParam: {},
  140. isokDisable: false,
  141. selectList: [],
  142. rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
  143. cellStyle: { padding: 0 + 'px' }
  144. }
  145. },
  146. created() {
  147. this.getList()
  148. this.getDownList()
  149. this.getButtons()
  150. },
  151. methods: {
  152. getButtons() {
  153. const Edit = 'User'
  154. const isRoleEdit = checkButtons(JSON.parse(sessionStorage.getItem('buttons')), Edit)
  155. this.isRoleEdit = isRoleEdit
  156. },
  157. getDownList() {
  158. GetDataByNames(this.requestParams).then(response => {
  159. this.roleList = response.data.getRoleAll.list
  160. })
  161. },
  162. getList() {
  163. this.table.listLoading = true
  164. GetDataByName(this.table.getdataListParm).then(response => {
  165. console.log('table数据', response.data.list)
  166. if (response.data.list !== null) {
  167. for (let i = 0; i < response.data.list.length; i++) {
  168. this.$set(response.data.list[i], 'Edit', false) // 编辑
  169. this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入
  170. this.$set(response.data.list[i], 'isCreate', false) // 新增操作
  171. this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作
  172. this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存
  173. }
  174. this.table.list = response.data.list
  175. this.table.pageNum = response.data.pageNum
  176. this.table.pageSize = response.data.pageSize
  177. this.table.total = response.data.total
  178. } else {
  179. this.table.list = []
  180. }
  181. setTimeout(() => {
  182. this.table.listLoading = false
  183. }, 100)
  184. })
  185. },
  186. handleEnableChange() {
  187. console.log('点击了是否启用')
  188. },
  189. handleSearch() {
  190. console.log('点击了查询')
  191. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  192. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  193. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  194. } else {
  195. this.table.getdataListParm.parammaps.inputDatetime = ''
  196. this.table.getdataListParm.parammaps.startTime = ''
  197. this.table.getdataListParm.parammaps.stopTime = ''
  198. }
  199. this.table.getdataListParm.offset = 1
  200. this.getList()
  201. },
  202. handleRefresh() {
  203. console.log('点击了重置')
  204. this.table.getdataListParm.parammaps.empCode = ''
  205. this.table.getdataListParm.parammaps.empname = ''
  206. this.table.getdataListParm.parammaps.enable = ''
  207. this.table.getdataListParm.parammaps.startTime = ''
  208. this.table.getdataListParm.parammaps.stopTime = ''
  209. this.table.getdataListParm.parammaps.inputDatetime = ''
  210. this.table.getdataListParm.offset = 1
  211. this.getList()
  212. },
  213. handleCreate() {
  214. // 编辑true/不可编辑false
  215. // 新增操true,编辑false,编辑保存false
  216. for (let i = 0; i < this.table.list.length; i++) {
  217. if (this.table.list[i].Edit === true) {
  218. console.log(123)
  219. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  220. return false
  221. }
  222. }
  223. this.table.list.unshift({ 'myId': (new Date()).valueOf(), 'Edit': true, 'NoEdit': false, 'isCreate': true, 'isUpdate': false, 'isUpdateSave': false, 'enable': 1, 'createdtime': parseTime(new Date(), '{y}-{m}-{d}'), 'createmp': Cookies.get('employename'), 'username': '', 'roleid': '' })
  224. },
  225. changeRolename(item) {
  226. this.table.temp.rolename = this.roleList.find(obj => obj.id === item).rolename
  227. },
  228. createData(row) {
  229. console.log('点击了新增保存', row)
  230. this.table.temp.pastureid = Cookies.get('pastureid')
  231. this.table.temp.empname = row.empname
  232. this.table.temp.username = row.username
  233. this.table.temp.phone = row.phone
  234. this.table.temp.createmp = row.createmp
  235. this.table.temp.enable = row.enable
  236. this.table.temp.roleid = row.roleid
  237. // 检验用户名称/角色是否为空
  238. if (this.table.temp.username == '' && this.table.temp.roleid == '') {
  239. this.$message({ type: 'error', message: '用户名称/角色不能为空', duration: 2000 })
  240. return false
  241. } else if (this.table.temp.username == '') {
  242. this.$message({ type: 'error', message: '用户名称不能为空', duration: 2000 })
  243. return false
  244. } else if (this.table.temp.roleid == '') {
  245. this.$message({ type: 'error', message: '角色不能为空', duration: 2000 })
  246. return false
  247. }
  248. // 检验手机号是否为11位数字
  249. if (this.table.temp.phone !== undefined && this.table.temp.phone !== '') {
  250. const phone = /^\d{11}$/
  251. if (!phone.test(this.table.temp.phone)) {
  252. this.$message({ type: 'error', message: '请输入11位手机号', duration: 2000 })
  253. return false
  254. }
  255. }
  256. this.isokDisable = true
  257. setTimeout(() => {
  258. this.isokDisable = false
  259. }, 1000)
  260. this.requestParam.name = 'createUser'
  261. this.requestParam.parammaps = this.table.temp
  262. PostDataByName(this.requestParam).then(response => {
  263. console.log('新增保存发送参数', this.requestParam)
  264. if (response.msg !== 'fail') {
  265. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  266. this.getList()
  267. } else {
  268. failproccess(response, this.$notify)
  269. }
  270. })
  271. },
  272. createCancel(row) {
  273. console.log('点击了新增取消')
  274. for (let i = 0; i < this.table.list.length; i++) {
  275. if (row.myId === this.table.list[i].myId) {
  276. var listIndex = this.table.list.indexOf(this.table.list[i])
  277. }
  278. if (listIndex > -1) {
  279. this.table.list.splice(listIndex, 1)
  280. return
  281. }
  282. }
  283. },
  284. handleUpdate(row) {
  285. for (let i = 0; i < this.table.list.length; i++) {
  286. if (this.table.list[i].Edit == true) {
  287. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  288. return false
  289. }
  290. }
  291. // 编辑true,不可编辑false
  292. row.Edit = true
  293. row.NoEdit = false
  294. // 新增false,编辑false,编辑保存true
  295. row.isCreate = false
  296. row.isUpdate = false
  297. row.isUpdateSave = true
  298. row.roleid = String(row.roleid)
  299. this.table.temp.roleid = row.roleid
  300. this.table.temp.rolename = row.rolename
  301. },
  302. updateData(row) {
  303. console.log('点击了编辑保存', row)
  304. this.table.temp.pastureid = row.pastureid
  305. this.table.temp.empname = row.empname
  306. this.table.temp.username = row.username
  307. this.table.temp.phone = row.phone
  308. this.table.temp.createmp = row.createmp
  309. this.table.temp.enable = row.enable
  310. this.table.temp.roleid = row.roleid
  311. this.table.temp.id = row.id
  312. // 校验用户名称/角色是否为空
  313. if (this.table.temp.username == '' && this.table.temp.roleid == '') {
  314. this.$message({ type: 'error', message: '用户名称/角色不能为空', duration: 2000 })
  315. return false
  316. } else if (this.table.temp.username == '') {
  317. this.$message({ type: 'error', message: '用户名称不能为空', duration: 2000 })
  318. return false
  319. } else if (this.table.temp.roleid == '') {
  320. this.$message({ type: 'error', message: '角色不能为空', duration: 2000 })
  321. return false
  322. }
  323. console.log(this.table.temp.phone)
  324. // 检验手机号是否为11位数字
  325. if (this.table.temp.phone !== undefined && this.table.temp.phone !== '') {
  326. const phone = /^\d{11}$/
  327. if (!phone.test(this.table.temp.phone)) {
  328. this.$message({ type: 'error', message: '请输入11位手机号', duration: 2000 })
  329. return false
  330. }
  331. }
  332. this.isokDisable = true
  333. setTimeout(() => {
  334. this.isokDisable = false
  335. }, 1000)
  336. this.requestParam.name = 'updateUser'
  337. this.requestParam.parammaps = this.table.temp
  338. PostDataByName(this.requestParam).then(response => {
  339. console.log('新增保存发送参数', this.requestParam)
  340. if (response.msg !== 'fail') {
  341. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  342. this.getList()
  343. } else {
  344. failproccess(response, this.$notify)
  345. }
  346. })
  347. },
  348. updateCancel(row) {
  349. console.log('点击了编辑取消')
  350. // 编辑false,不可编辑true
  351. row.Edit = false
  352. row.NoEdit = true
  353. // 新增false,编辑true,编辑保存false
  354. row.isCreate = false
  355. row.isUpdate = true
  356. row.isUpdateSave = false
  357. this.getList()
  358. },
  359. handleRowDelete(row) {
  360. console.log('点击了行内删除')
  361. MessageBox.confirm('是否确认删除此信息?', {
  362. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  363. }).then(() => {
  364. this.selectList = []
  365. this.requestParam.name = 'deleteUser'
  366. this.requestParam.parammaps = {}
  367. this.requestParam.parammaps.pastureid = row.pastureid
  368. this.requestParam.parammaps.id = row.id
  369. PostDataByName(this.requestParam).then(response => {
  370. if (response.msg === 'fail') {
  371. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  372. } else {
  373. this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
  374. this.getList()
  375. }
  376. })
  377. }).catch(() => {
  378. this.$message({ type: 'info', message: '已取消删除' })
  379. })
  380. },
  381. handleSelectionChange(val) {
  382. console.log('勾选数据', val)
  383. this.selectList = val
  384. },
  385. handleDelete() {
  386. console.log('点击了删除')
  387. if (this.selectList.length == 0) {
  388. this.$message({ type: 'error', message: '请选择用户信息', duration: 2000 })
  389. } else {
  390. MessageBox.confirm('是否确认删除此信息?', {
  391. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  392. }).then(() => {
  393. console.log(this.selectList)
  394. this.requestParam.common = { 'returnmap': '0' }
  395. this.requestParam.data = []
  396. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }}
  397. this.requestParam.data[0].children = []
  398. this.requestParam.data[0].children[0] = { 'name': 'deleteUser', 'type': 'e', 'parammaps': {
  399. id: '@insertSpotList.id',
  400. pastureid: '@insertSpotList.pastureid'
  401. }}
  402. ExecDataByConfig(this.requestParam).then(response => {
  403. console.log('删除保存发送参数', this.requestParam)
  404. if (response.msg === 'fail') {
  405. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  406. } else {
  407. this.$notify({ title: '', message: '删除成功', type: 'success', duration: 2000 })
  408. this.getList()
  409. }
  410. })
  411. })
  412. }
  413. },
  414. handleResetPassword(row) {
  415. MessageBox.confirm('是否确认将此用户密码重置为默认密码123456?', {
  416. confirmButtonText: '确认',
  417. cancelButtonText: '取消',
  418. type: 'warning'
  419. }).then(() => {
  420. this.requestParam.name = 'initPassword'
  421. this.requestParam.parammaps = {}
  422. this.requestParam.parammaps.pastureid = row.pastureid
  423. this.requestParam.parammaps.id = row.id
  424. PostDataByName(this.requestParam).then(() => {
  425. this.getList()
  426. this.resetRequestParam()
  427. this.dialogFormVisible = false
  428. this.$notify({
  429. title: '成功',
  430. message: '重置密码成功',
  431. type: 'success',
  432. duration: 2000
  433. })
  434. })
  435. })
  436. }
  437. }
  438. }
  439. </script>
  440. <style lang="scss" scoped>
  441. .search{margin-top:10px;}
  442. .table{margin-top:10px;}
  443. </style>