Sin Descripción

index.vue 7.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <template>
  2. <div class="app-container">
  3. <div class="filter-container" style="margin-bottom:20px">
  4. <el-input style="width: 200px;" class="filter-item" placeholder="账号" v-model="listQuery.account">
  5. </el-input>
  6. <el-input style="width: 200px;" class="filter-item" placeholder="用户姓名" v-model="listQuery.name">
  7. </el-input>
  8. <el-input style="width: 250px;" class="filter-item" placeholder="所在机构" v-model="listQuery.comp">
  9. </el-input>
  10. <el-button v-waves class="filter-item" style="margin-left: 10px;" @click="handleFilter" type="primary" icon="el-icon-search">查找</el-button>
  11. <el-button v-waves class="filter-item" style="margin-left: 10px;" @click="handleCreate" type="primary" icon="el-icon-edit">添加用户</el-button>
  12. </div>
  13. <el-table :key='tableKey' :data="list" v-loading="listLoading" border fit highlight-current-row
  14. style="width: 100%;min-height:550px;">
  15. <el-table-column width="110px" align="center" label="账号">
  16. <template slot-scope="scope">
  17. <span>{{scope.row.account}}</span>
  18. </template>
  19. </el-table-column>
  20. <el-table-column width="80px" align="center" label="用户姓名">
  21. <template slot-scope="scope">
  22. <span>{{scope.row.name}}</span>
  23. </template>
  24. </el-table-column>
  25. <el-table-column width="200px" align="center" label="职位">
  26. <template slot-scope="scope">
  27. <span>{{scope.row.job}}</span>
  28. </template>
  29. </el-table-column>
  30. <el-table-column width="110px" align="center" label="联系电话">
  31. <template slot-scope="scope">
  32. <span>{{scope.row.phone}}</span>
  33. </template>
  34. </el-table-column>
  35. <el-table-column width="100px" align="center" label="用户类型">
  36. <template slot-scope="scope">
  37. <span>{{(scope.row.type) ? '管理员' : '普通用户'}}</span>
  38. </template>
  39. </el-table-column>
  40. <el-table-column width="100px" align="center" label="账户状态">
  41. <template slot-scope="scope">
  42. <span :class="{ active: !scope.row.active}">{{(scope.row.active) ? '未停用' : '已停用'}}</span>
  43. </template>
  44. </el-table-column>
  45. <el-table-column min-width="200px" align="center" label="所在机构">
  46. <template slot-scope="scope">
  47. <span>{{scope.row.comp}}</span>
  48. </template>
  49. </el-table-column>
  50. <el-table-column min-width="200px" align="center" label="负责桥梁">
  51. <template slot-scope="scope">
  52. <span>{{scope.row.bridgeName}}</span>
  53. </template>
  54. </el-table-column>
  55. <el-table-column align="center" label="操作" width="260px" class-name="small-padding fixed-width">
  56. <template slot-scope="scope">
  57. <el-button v-waves :type="((!scope.row.active) ? 'info' : 'primary')" size="mini" @click="handleUpdate(scope.row)" :disabled='!scope.row.active'>编辑</el-button>
  58. <el-button v-waves size="mini" :type="((!scope.row.active) ? 'info' : 'danger')" @click="handleModifyStatus(scope.row,'deleted')" :disabled='!scope.row.active'>停用
  59. </el-button>
  60. <el-button v-waves size="mini" :type="((!scope.row.active) ? 'info' : 'primary')" @click="distribution(scope.row)" :disabled='!scope.row.active'>分配权限
  61. </el-button>
  62. </template>
  63. </el-table-column>
  64. </el-table>
  65. <editUser :dialog="dialogTableVisible" @chilF='chilF' :id='edit'></editUser>
  66. <editUserPermissions :dialog='dialogPerssion' @chilF='chilF' :id='edit'></editUserPermissions>
  67. <div class="pagination-container" style="text-align:center;">
  68. <el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="listQuery.page" :page-size="listQuery.limit" layout="prev, pager, next, jumper" :total="total">
  69. </el-pagination>
  70. </div>
  71. </div>
  72. </template>
  73. <script>
  74. import { deleteUser, queryResponsibleBridge, pageQueryUser } from '@/api/userManagemen'
  75. import waves from '@/directive/waves'
  76. import editUser from './editUser'
  77. import editUserPermissions from './editUserPermissions'
  78. export default {
  79. name: 'complexTable',
  80. directives: {
  81. waves
  82. },
  83. data() {
  84. return {
  85. edit: '',
  86. tableKey: 0,
  87. list: null,
  88. total: null,
  89. listLoading: true,
  90. dialogPerssion: false,
  91. dialogTableVisible: false,
  92. listQuery: {
  93. account: '',
  94. name: '',
  95. comp: '',
  96. pageSize: 10,
  97. pageNo: 1
  98. }
  99. }
  100. },
  101. filters: {
  102. typeFilter(type) {
  103. }
  104. },
  105. created() {
  106. this.getList()
  107. },
  108. components: {
  109. editUser,
  110. editUserPermissions
  111. },
  112. methods: {
  113. getList() {
  114. this.listLoading = true
  115. pageQueryUser(this.listQuery).then(response => {
  116. if (response.success) {
  117. if (response.data === null) {
  118. this.list = []
  119. this.total = 0
  120. setTimeout(() => {
  121. this.listLoading = false
  122. }, 1.5 * 1000)
  123. return
  124. }
  125. const $data = response.data.data
  126. for (let i = 0; i < $data.length; i++) {
  127. $data[i].bridgeName = ''
  128. queryResponsibleBridge({ uid: $data[i].id, active: 1 }).then(response => {
  129. if (response.success) {
  130. const arr = []
  131. const $info = response.data
  132. for (let j = 0; j < $info.length; j++) {
  133. arr.push($info[j].shortName)
  134. }
  135. $data[i].bridgeName = arr.join(',')
  136. }
  137. })
  138. }
  139. this.list = $data
  140. this.total = response.data.total
  141. setTimeout(() => {
  142. this.listLoading = false
  143. }, 1.5 * 1000)
  144. }
  145. })
  146. },
  147. handleFilter() {
  148. this.listQuery.pageNo = 1
  149. this.getList()
  150. },
  151. handleSizeChange(val) {
  152. this.listQuery.pageNo = val
  153. this.getList()
  154. },
  155. chilF(val) {
  156. if (!val) {
  157. this.getList()
  158. }
  159. this.edit = ''
  160. },
  161. handleCurrentChange(val) {
  162. this.listQuery.pageNo = val
  163. this.getList()
  164. },
  165. handleModifyStatus(row, status) {
  166. this.$confirm('确实要停用:用户' + row.name + '吗?', '提示', {
  167. confirmButtonText: '确定',
  168. cancelButtonText: '取消',
  169. type: 'warning',
  170. center: true
  171. }).then(() => {
  172. deleteUser({ id: row.id }).then(response => {
  173. if (response.success) {
  174. this.getList()
  175. this.pop('已成功停用该用户')
  176. }
  177. })
  178. }).catch(() => {
  179. })
  180. },
  181. handleCreate() {
  182. this.dialogTableVisible = !this.dialogTableVisible
  183. },
  184. handleUpdate(row) {
  185. this.edit = row.id
  186. this.dialogTableVisible = !this.dialogTableVisible
  187. },
  188. distribution(row) {
  189. this.edit = row.id
  190. this.dialogPerssion = !this.dialogPerssion
  191. }
  192. }
  193. }
  194. </script>
  195. <style rel="stylesheet/scss" lang="scss" scoped>
  196. .el-autocomplete{
  197. display: block
  198. }
  199. .el-btn-col{
  200. margin-top: 45px
  201. }
  202. .editTe{
  203. margin: 10px 0 0 22px
  204. }
  205. .active{
  206. color: red
  207. }
  208. </style>