authUser.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" v-show="showSearch" :inline="true">
  4. <el-form-item label="用户名称" prop="userName">
  5. <el-input
  6. v-model="queryParams.userName"
  7. placeholder="请输入用户名称"
  8. clearable
  9. size="small"
  10. style="width: 240px"
  11. @keyup.enter.native="handleQuery"
  12. />
  13. </el-form-item>
  14. <el-form-item label="手机号码" prop="phonenumber">
  15. <el-input
  16. v-model="queryParams.phonenumber"
  17. placeholder="请输入手机号码"
  18. clearable
  19. size="small"
  20. style="width: 240px"
  21. @keyup.enter.native="handleQuery"
  22. />
  23. </el-form-item>
  24. <el-form-item>
  25. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  26. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  27. </el-form-item>
  28. </el-form>
  29. <el-row :gutter="10" class="mb8">
  30. <el-col :span="1.5">
  31. <el-button
  32. type="primary"
  33. plain
  34. icon="el-icon-plus"
  35. size="mini"
  36. @click="openSelectUser"
  37. v-hasPermi="['system:role:add']"
  38. >添加用户</el-button>
  39. </el-col>
  40. <el-col :span="1.5">
  41. <el-button
  42. type="danger"
  43. plain
  44. icon="el-icon-circle-close"
  45. size="mini"
  46. :disabled="multiple"
  47. @click="cancelAuthUserAll"
  48. v-hasPermi="['system:role:remove']"
  49. >批量取消授权</el-button>
  50. </el-col>
  51. <el-col :span="1.5">
  52. <el-button
  53. type="warning"
  54. plain
  55. icon="el-icon-close"
  56. size="mini"
  57. @click="handleClose"
  58. >关闭</el-button>
  59. </el-col>
  60. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  61. </el-row>
  62. <el-table v-loading="loading" :data="userList" @selection-change="handleSelectionChange">
  63. <el-table-column type="selection" width="55" align="center" />
  64. <el-table-column label="用户名称" prop="userName" :show-overflow-tooltip="true" />
  65. <el-table-column label="用户昵称" prop="nickName" :show-overflow-tooltip="true" />
  66. <el-table-column label="邮箱" prop="email" :show-overflow-tooltip="true" />
  67. <el-table-column label="手机" prop="phonenumber" :show-overflow-tooltip="true" />
  68. <el-table-column label="状态" align="center" prop="status">
  69. <template slot-scope="scope">
  70. <dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/>
  71. </template>
  72. </el-table-column>
  73. <el-table-column label="创建时间" align="center" prop="createTime" width="180">
  74. <template slot-scope="scope">
  75. <span>{{ parseTime(scope.row.createTime) }}</span>
  76. </template>
  77. </el-table-column>
  78. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  79. <template slot-scope="scope">
  80. <el-button
  81. size="mini"
  82. type="text"
  83. icon="el-icon-circle-close"
  84. @click="cancelAuthUser(scope.row)"
  85. v-hasPermi="['system:role:remove']"
  86. >取消授权</el-button>
  87. </template>
  88. </el-table-column>
  89. </el-table>
  90. <pagination
  91. v-show="total>0"
  92. :total="total"
  93. :page.sync="queryParams.pageNum"
  94. :limit.sync="queryParams.pageSize"
  95. @pagination="getList"
  96. />
  97. <select-user ref="select" :roleId="queryParams.roleId" @ok="handleQuery" />
  98. </div>
  99. </template>
  100. <script>
  101. import { allocatedUserList, authUserCancel, authUserCancelAll } from "@/api/system/role";
  102. import selectUser from "./selectUser";
  103. export default {
  104. name: "AuthUser",
  105. dicts: ['sys_normal_disable'],
  106. components: { selectUser },
  107. data() {
  108. return {
  109. // 遮罩层
  110. loading: true,
  111. // 选中用户组
  112. userIds: [],
  113. // 非多个禁用
  114. multiple: true,
  115. // 显示搜索条件
  116. showSearch: true,
  117. // 总条数
  118. total: 0,
  119. // 用户表格数据
  120. userList: [],
  121. // 查询参数
  122. queryParams: {
  123. pageNum: 1,
  124. pageSize: 10,
  125. roleId: undefined,
  126. userName: undefined,
  127. phonenumber: undefined
  128. }
  129. };
  130. },
  131. created() {
  132. const roleId = this.$route.params && this.$route.params.roleId;
  133. if (roleId) {
  134. this.queryParams.roleId = roleId;
  135. this.getList();
  136. }
  137. },
  138. methods: {
  139. /** 查询授权用户列表 */
  140. getList() {
  141. this.loading = true;
  142. allocatedUserList(this.queryParams).then(response => {
  143. this.userList = response.rows;
  144. this.total = response.total;
  145. this.loading = false;
  146. }
  147. );
  148. },
  149. // 返回按钮
  150. handleClose() {
  151. const obj = { path: "/system/role" };
  152. this.$tab.closeOpenPage(obj);
  153. },
  154. /** 搜索按钮操作 */
  155. handleQuery() {
  156. this.queryParams.pageNum = 1;
  157. this.getList();
  158. },
  159. /** 重置按钮操作 */
  160. resetQuery() {
  161. this.resetForm("queryForm");
  162. this.handleQuery();
  163. },
  164. // 多选框选中数据
  165. handleSelectionChange(selection) {
  166. this.userIds = selection.map(item => item.userId)
  167. this.multiple = !selection.length
  168. },
  169. /** 打开授权用户表弹窗 */
  170. openSelectUser() {
  171. this.$refs.select.show();
  172. },
  173. /** 取消授权按钮操作 */
  174. cancelAuthUser(row) {
  175. const roleId = this.queryParams.roleId;
  176. this.$modal.confirm('确认要取消该用户"' + row.userName + '"角色吗?').then(function() {
  177. return authUserCancel({ userId: row.userId, roleId: roleId });
  178. }).then(() => {
  179. this.getList();
  180. this.$modal.msgSuccess("取消授权成功");
  181. }).catch(() => {});
  182. },
  183. /** 批量取消授权按钮操作 */
  184. cancelAuthUserAll(row) {
  185. const roleId = this.queryParams.roleId;
  186. const userIds = this.userIds.join(",");
  187. this.$modal.confirm('是否取消选中用户授权数据项?').then(function() {
  188. return authUserCancelAll({ roleId: roleId, userIds: userIds });
  189. }).then(() => {
  190. this.getList();
  191. this.$modal.msgSuccess("取消授权成功");
  192. }).catch(() => {});
  193. }
  194. }
  195. };
  196. </script>