index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558
  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="roleName">
  5. <el-input
  6. v-model="queryParams.roleName"
  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="roleKey">
  15. <el-input
  16. v-model="queryParams.roleKey"
  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 label="状态" prop="status">
  25. <el-select
  26. v-model="queryParams.status"
  27. placeholder="角色状态"
  28. clearable
  29. size="small"
  30. style="width: 240px"
  31. >
  32. <el-option
  33. v-for="dict in statusOptions"
  34. :key="dict.dictValue"
  35. :label="dict.dictLabel"
  36. :value="dict.dictValue"
  37. />
  38. </el-select>
  39. </el-form-item>
  40. <el-form-item label="创建时间">
  41. <el-date-picker
  42. v-model="dateRange"
  43. size="small"
  44. style="width: 240px"
  45. value-format="yyyy-MM-dd"
  46. type="daterange"
  47. range-separator="-"
  48. start-placeholder="开始日期"
  49. end-placeholder="结束日期"
  50. ></el-date-picker>
  51. </el-form-item>
  52. <el-form-item>
  53. <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  54. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  55. </el-form-item>
  56. </el-form>
  57. <el-row :gutter="10" class="mb8">
  58. <el-col :span="1.5">
  59. <el-button
  60. type="primary"
  61. icon="el-icon-plus"
  62. size="mini"
  63. @click="handleAdd"
  64. v-hasPermi="['system:role:add']"
  65. >新增</el-button>
  66. </el-col>
  67. <el-col :span="1.5">
  68. <el-button
  69. type="success"
  70. icon="el-icon-edit"
  71. size="mini"
  72. :disabled="single"
  73. @click="handleUpdate"
  74. v-hasPermi="['system:role:edit']"
  75. >修改</el-button>
  76. </el-col>
  77. <el-col :span="1.5">
  78. <el-button
  79. type="danger"
  80. icon="el-icon-delete"
  81. size="mini"
  82. :disabled="multiple"
  83. @click="handleDelete"
  84. v-hasPermi="['system:role:remove']"
  85. >删除</el-button>
  86. </el-col>
  87. <el-col :span="1.5">
  88. <el-button
  89. type="warning"
  90. icon="el-icon-download"
  91. size="mini"
  92. @click="handleExport"
  93. v-hasPermi="['system:role:export']"
  94. >导出</el-button>
  95. </el-col>
  96. <div class="top-right-btn">
  97. <el-tooltip class="item" effect="dark" content="刷新" placement="top">
  98. <el-button size="mini" circle icon="el-icon-refresh" @click="handleQuery" />
  99. </el-tooltip>
  100. <el-tooltip class="item" effect="dark" :content="showSearch ? '隐藏搜索' : '显示搜索'" placement="top">
  101. <el-button size="mini" circle icon="el-icon-search" @click="showSearch=!showSearch" />
  102. </el-tooltip>
  103. </div>
  104. </el-row>
  105. <el-table v-loading="loading" :data="roleList" @selection-change="handleSelectionChange">
  106. <el-table-column type="selection" width="55" align="center" />
  107. <el-table-column label="角色编号" prop="roleId" width="120" />
  108. <el-table-column label="角色名称" prop="roleName" :show-overflow-tooltip="true" width="150" />
  109. <el-table-column label="权限字符" prop="roleKey" :show-overflow-tooltip="true" width="150" />
  110. <el-table-column label="显示顺序" prop="roleSort" width="100" />
  111. <el-table-column label="状态" align="center" width="100">
  112. <template slot-scope="scope">
  113. <el-switch
  114. v-model="scope.row.status"
  115. active-value="0"
  116. inactive-value="1"
  117. @change="handleStatusChange(scope.row)"
  118. ></el-switch>
  119. </template>
  120. </el-table-column>
  121. <el-table-column label="创建时间" align="center" prop="createTime" width="180">
  122. <template slot-scope="scope">
  123. <span>{{ parseTime(scope.row.createTime) }}</span>
  124. </template>
  125. </el-table-column>
  126. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  127. <template slot-scope="scope">
  128. <el-button
  129. size="mini"
  130. type="text"
  131. icon="el-icon-edit"
  132. @click="handleUpdate(scope.row)"
  133. v-hasPermi="['system:role:edit']"
  134. >修改</el-button>
  135. <el-button
  136. size="mini"
  137. type="text"
  138. icon="el-icon-circle-check"
  139. @click="handleDataScope(scope.row)"
  140. v-hasPermi="['system:role:edit']"
  141. >数据权限</el-button>
  142. <el-button
  143. size="mini"
  144. type="text"
  145. icon="el-icon-delete"
  146. @click="handleDelete(scope.row)"
  147. v-hasPermi="['system:role:remove']"
  148. >删除</el-button>
  149. </template>
  150. </el-table-column>
  151. </el-table>
  152. <pagination
  153. v-show="total>0"
  154. :total="total"
  155. :page.sync="queryParams.pageNum"
  156. :limit.sync="queryParams.pageSize"
  157. @pagination="getList"
  158. />
  159. <!-- 添加或修改角色配置对话框 -->
  160. <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
  161. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  162. <el-form-item label="角色名称" prop="roleName">
  163. <el-input v-model="form.roleName" placeholder="请输入角色名称" />
  164. </el-form-item>
  165. <el-form-item label="权限字符" prop="roleKey">
  166. <el-input v-model="form.roleKey" placeholder="请输入权限字符" />
  167. </el-form-item>
  168. <el-form-item label="角色顺序" prop="roleSort">
  169. <el-input-number v-model="form.roleSort" controls-position="right" :min="0" />
  170. </el-form-item>
  171. <el-form-item label="状态">
  172. <el-radio-group v-model="form.status">
  173. <el-radio
  174. v-for="dict in statusOptions"
  175. :key="dict.dictValue"
  176. :label="dict.dictValue"
  177. >{{dict.dictLabel}}</el-radio>
  178. </el-radio-group>
  179. </el-form-item>
  180. <el-form-item label="菜单权限">
  181. <el-tree
  182. :data="menuOptions"
  183. show-checkbox
  184. ref="menu"
  185. node-key="id"
  186. empty-text="加载中,请稍后"
  187. :props="defaultProps"
  188. ></el-tree>
  189. </el-form-item>
  190. <el-form-item label="备注">
  191. <el-input v-model="form.remark" type="textarea" placeholder="请输入内容"></el-input>
  192. </el-form-item>
  193. </el-form>
  194. <div slot="footer" class="dialog-footer">
  195. <el-button type="primary" @click="submitForm">确 定</el-button>
  196. <el-button @click="cancel">取 消</el-button>
  197. </div>
  198. </el-dialog>
  199. <!-- 分配角色数据权限对话框 -->
  200. <el-dialog :title="title" :visible.sync="openDataScope" width="500px" append-to-body>
  201. <el-form :model="form" label-width="80px">
  202. <el-form-item label="角色名称">
  203. <el-input v-model="form.roleName" :disabled="true" />
  204. </el-form-item>
  205. <el-form-item label="权限字符">
  206. <el-input v-model="form.roleKey" :disabled="true" />
  207. </el-form-item>
  208. <el-form-item label="权限范围">
  209. <el-select v-model="form.dataScope">
  210. <el-option
  211. v-for="item in dataScopeOptions"
  212. :key="item.value"
  213. :label="item.label"
  214. :value="item.value"
  215. ></el-option>
  216. </el-select>
  217. </el-form-item>
  218. <el-form-item label="数据权限" v-show="form.dataScope == 2">
  219. <el-tree
  220. :data="deptOptions"
  221. show-checkbox
  222. default-expand-all
  223. ref="dept"
  224. node-key="id"
  225. empty-text="加载中,请稍后"
  226. :props="defaultProps"
  227. ></el-tree>
  228. </el-form-item>
  229. </el-form>
  230. <div slot="footer" class="dialog-footer">
  231. <el-button type="primary" @click="submitDataScope">确 定</el-button>
  232. <el-button @click="cancelDataScope">取 消</el-button>
  233. </div>
  234. </el-dialog>
  235. </div>
  236. </template>
  237. <script>
  238. import { listRole, getRole, delRole, addRole, updateRole, exportRole, dataScope, changeRoleStatus } from "@/api/system/role";
  239. import { treeselect as menuTreeselect, roleMenuTreeselect } from "@/api/system/menu";
  240. import { treeselect as deptTreeselect, roleDeptTreeselect } from "@/api/system/dept";
  241. export default {
  242. name: "Role",
  243. data() {
  244. return {
  245. // 遮罩层
  246. loading: true,
  247. // 选中数组
  248. ids: [],
  249. // 非单个禁用
  250. single: true,
  251. // 非多个禁用
  252. multiple: true,
  253. // 显示搜索条件
  254. showSearch: true,
  255. // 总条数
  256. total: 0,
  257. // 角色表格数据
  258. roleList: [],
  259. // 弹出层标题
  260. title: "",
  261. // 是否显示弹出层
  262. open: false,
  263. // 是否显示弹出层(数据权限)
  264. openDataScope: false,
  265. // 日期范围
  266. dateRange: [],
  267. // 状态数据字典
  268. statusOptions: [],
  269. // 数据范围选项
  270. dataScopeOptions: [
  271. {
  272. value: "1",
  273. label: "全部数据权限"
  274. },
  275. {
  276. value: "2",
  277. label: "自定数据权限"
  278. },
  279. {
  280. value: "3",
  281. label: "本部门数据权限"
  282. },
  283. {
  284. value: "4",
  285. label: "本部门及以下数据权限"
  286. },
  287. {
  288. value: "5",
  289. label: "仅本人数据权限"
  290. }
  291. ],
  292. // 菜单列表
  293. menuOptions: [],
  294. // 部门列表
  295. deptOptions: [],
  296. // 查询参数
  297. queryParams: {
  298. pageNum: 1,
  299. pageSize: 10,
  300. roleName: undefined,
  301. roleKey: undefined,
  302. status: undefined
  303. },
  304. // 表单参数
  305. form: {},
  306. defaultProps: {
  307. children: "children",
  308. label: "label"
  309. },
  310. // 表单校验
  311. rules: {
  312. roleName: [
  313. { required: true, message: "角色名称不能为空", trigger: "blur" }
  314. ],
  315. roleKey: [
  316. { required: true, message: "权限字符不能为空", trigger: "blur" }
  317. ],
  318. roleSort: [
  319. { required: true, message: "角色顺序不能为空", trigger: "blur" }
  320. ]
  321. }
  322. };
  323. },
  324. created() {
  325. this.getList();
  326. this.getDicts("sys_normal_disable").then(response => {
  327. this.statusOptions = response.data;
  328. });
  329. },
  330. methods: {
  331. /** 查询角色列表 */
  332. getList() {
  333. this.loading = true;
  334. listRole(this.addDateRange(this.queryParams, this.dateRange)).then(
  335. response => {
  336. this.roleList = response.rows;
  337. this.total = response.total;
  338. this.loading = false;
  339. }
  340. );
  341. },
  342. /** 查询菜单树结构 */
  343. getMenuTreeselect() {
  344. menuTreeselect().then(response => {
  345. this.menuOptions = response.data;
  346. });
  347. },
  348. /** 查询部门树结构 */
  349. getDeptTreeselect() {
  350. deptTreeselect().then(response => {
  351. this.deptOptions = response.data;
  352. });
  353. },
  354. // 所有菜单节点数据
  355. getMenuAllCheckedKeys() {
  356. // 目前被选中的菜单节点
  357. let checkedKeys = this.$refs.menu.getHalfCheckedKeys();
  358. // 半选中的菜单节点
  359. let halfCheckedKeys = this.$refs.menu.getCheckedKeys();
  360. checkedKeys.unshift.apply(checkedKeys, halfCheckedKeys);
  361. return checkedKeys;
  362. },
  363. // 所有部门节点数据
  364. getDeptAllCheckedKeys() {
  365. // 目前被选中的部门节点
  366. let checkedKeys = this.$refs.dept.getHalfCheckedKeys();
  367. // 半选中的部门节点
  368. let halfCheckedKeys = this.$refs.dept.getCheckedKeys();
  369. checkedKeys.unshift.apply(checkedKeys, halfCheckedKeys);
  370. return checkedKeys;
  371. },
  372. /** 根据角色ID查询菜单树结构 */
  373. getRoleMenuTreeselect(roleId) {
  374. return roleMenuTreeselect(roleId).then(response => {
  375. this.menuOptions = response.menus;
  376. return response;
  377. });
  378. },
  379. /** 根据角色ID查询部门树结构 */
  380. getRoleDeptTreeselect(roleId) {
  381. return roleDeptTreeselect(roleId).then(response => {
  382. this.deptOptions = response.depts;
  383. return response;
  384. });
  385. },
  386. // 角色状态修改
  387. handleStatusChange(row) {
  388. let text = row.status === "0" ? "启用" : "停用";
  389. this.$confirm('确认要"' + text + '""' + row.roleName + '"角色吗?', "警告", {
  390. confirmButtonText: "确定",
  391. cancelButtonText: "取消",
  392. type: "warning"
  393. }).then(function() {
  394. return changeRoleStatus(row.roleId, row.status);
  395. }).then(() => {
  396. this.msgSuccess(text + "成功");
  397. }).catch(function() {
  398. row.status = row.status === "0" ? "1" : "0";
  399. });
  400. },
  401. // 取消按钮
  402. cancel() {
  403. this.open = false;
  404. this.reset();
  405. },
  406. // 取消按钮(数据权限)
  407. cancelDataScope() {
  408. this.openDataScope = false;
  409. this.reset();
  410. },
  411. // 表单重置
  412. reset() {
  413. if (this.$refs.menu != undefined) {
  414. this.$refs.menu.setCheckedKeys([]);
  415. }
  416. this.form = {
  417. roleId: undefined,
  418. roleName: undefined,
  419. roleKey: undefined,
  420. roleSort: 0,
  421. status: "0",
  422. menuIds: [],
  423. deptIds: [],
  424. remark: undefined
  425. };
  426. this.resetForm("form");
  427. },
  428. /** 搜索按钮操作 */
  429. handleQuery() {
  430. this.queryParams.pageNum = 1;
  431. this.getList();
  432. },
  433. /** 重置按钮操作 */
  434. resetQuery() {
  435. this.dateRange = [];
  436. this.resetForm("queryForm");
  437. this.handleQuery();
  438. },
  439. // 多选框选中数据
  440. handleSelectionChange(selection) {
  441. this.ids = selection.map(item => item.roleId)
  442. this.single = selection.length!=1
  443. this.multiple = !selection.length
  444. },
  445. /** 新增按钮操作 */
  446. handleAdd() {
  447. this.reset();
  448. this.getMenuTreeselect();
  449. this.open = true;
  450. this.title = "添加角色";
  451. },
  452. /** 修改按钮操作 */
  453. handleUpdate(row) {
  454. this.reset();
  455. const roleId = row.roleId || this.ids
  456. const roleMenu = this.getRoleMenuTreeselect(roleId);
  457. getRole(roleId).then(response => {
  458. this.form = response.data;
  459. this.open = true;
  460. this.$nextTick(() => {
  461. roleMenu.then(res => {
  462. this.$refs.menu.setCheckedKeys(res.checkedKeys);
  463. });
  464. });
  465. this.title = "修改角色";
  466. });
  467. },
  468. /** 分配数据权限操作 */
  469. handleDataScope(row) {
  470. this.reset();
  471. const roleDeptTreeselect = this.getRoleDeptTreeselect(row.roleId);
  472. getRole(row.roleId).then(response => {
  473. this.form = response.data;
  474. this.openDataScope = true;
  475. this.$nextTick(() => {
  476. roleDeptTreeselect.then(res => {
  477. this.$refs.dept.setCheckedKeys(res.checkedKeys);
  478. });
  479. });
  480. this.title = "分配数据权限";
  481. });
  482. },
  483. /** 提交按钮 */
  484. submitForm: function() {
  485. this.$refs["form"].validate(valid => {
  486. if (valid) {
  487. if (this.form.roleId != undefined) {
  488. this.form.menuIds = this.getMenuAllCheckedKeys();
  489. updateRole(this.form).then(response => {
  490. if (response.code === 200) {
  491. this.msgSuccess("修改成功");
  492. this.open = false;
  493. this.getList();
  494. }
  495. });
  496. } else {
  497. this.form.menuIds = this.getMenuAllCheckedKeys();
  498. addRole(this.form).then(response => {
  499. if (response.code === 200) {
  500. this.msgSuccess("新增成功");
  501. this.open = false;
  502. this.getList();
  503. }
  504. });
  505. }
  506. }
  507. });
  508. },
  509. /** 提交按钮(数据权限) */
  510. submitDataScope: function() {
  511. if (this.form.roleId != undefined) {
  512. this.form.deptIds = this.getDeptAllCheckedKeys();
  513. dataScope(this.form).then(response => {
  514. if (response.code === 200) {
  515. this.msgSuccess("修改成功");
  516. this.openDataScope = false;
  517. this.getList();
  518. }
  519. });
  520. }
  521. },
  522. /** 删除按钮操作 */
  523. handleDelete(row) {
  524. const roleIds = row.roleId || this.ids;
  525. this.$confirm('是否确认删除角色编号为"' + roleIds + '"的数据项?', "警告", {
  526. confirmButtonText: "确定",
  527. cancelButtonText: "取消",
  528. type: "warning"
  529. }).then(function() {
  530. return delRole(roleIds);
  531. }).then(() => {
  532. this.getList();
  533. this.msgSuccess("删除成功");
  534. }).catch(function() {});
  535. },
  536. /** 导出按钮操作 */
  537. handleExport() {
  538. const queryParams = this.queryParams;
  539. this.$confirm('是否确认导出所有角色数据项?', "警告", {
  540. confirmButtonText: "确定",
  541. cancelButtonText: "取消",
  542. type: "warning"
  543. }).then(function() {
  544. return exportRole(queryParams);
  545. }).then(response => {
  546. this.download(response.msg);
  547. }).catch(function() {});
  548. }
  549. }
  550. };
  551. </script>