index.vue 15.1 KB
Newer Older
张成 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
<template>
  <div class="app-container">
    <el-form
      :model="queryParams"
      ref="queryForm"
      size="small"
      :inline="true"
      v-show="showSearch"
    >
      <el-form-item label="角色名称" prop="roleName">
        <el-input
          v-model="queryParams.roleName"
          placeholder="请输入角色名称"
          clearable
          style="width: 240px"
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
      <el-form-item label="权限字符" prop="roleKey">
        <el-input
          v-model="queryParams.roleKey"
          placeholder="请输入权限字符"
          clearable
          style="width: 240px"
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
      <el-form-item label="状态" prop="status">
        <el-select
          v-model="queryParams.status"
          placeholder="角色状态"
          clearable
          style="width: 240px"
        >
          <el-option
            v-for="dict in dict.type.sys_normal_disable"
            :key="dict.value"
            :label="dict.label"
            :value="dict.value"
          />
        </el-select>
      </el-form-item>
      <el-form-item label="创建时间">
        <el-date-picker
          v-model="dateRange"
          style="width: 240px"
          value-format="yyyy-MM-dd"
          type="daterange"
          range-separator="-"
          start-placeholder="开始日期"
          end-placeholder="结束日期"
        ></el-date-picker>
      </el-form-item>
      <el-form-item>
        <el-button
lixiaomin committed
56
          v-hasPermi="['system:role:query']"
张成 committed
57 58 59
          type="primary"
          icon="el-icon-search"
          size="mini"
lixiaomin committed
60
          @click="handleQuery"          
张成 committed
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
          >搜索</el-button
        >
        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
          >重置</el-button
        >
      </el-form-item>
    </el-form>

    <el-row :gutter="10" class="mb8">
      <el-col :span="1.5">
        <el-button
          type="primary"
          plain
          icon="el-icon-plus"
          size="mini"
          @click="handleAdd"
          v-hasPermi="['system:role:add']"
lixiaomin committed
78
          >新增</el-button>
张成 committed
79 80 81
      </el-col>
    </el-row>

lixiaomin committed
82
    <el-table v-loading="loading" :data="roleList" >
lixiaomin committed
83
      <el-table-column label="角色名称" align="center" >
张成 committed
84
        <template slot-scope="scope">
lixiaomin committed
85 86
          <a @click="handleUpdate(scope.row)" style="color: blue">{{ scope.row.roleName }}</a>
        </template>     
张成 committed
87
      </el-table-column>
lixiaomin committed
88 89 90
      <el-table-column label="备注" prop="remark" align="center" />
      <el-table-column label="人员数量" prop="userCount" align="center" />
      <el-table-column label="创建时间" prop="createTime" align="center" />
张成 committed
91 92 93 94 95 96
      <el-table-column
        label="操作"
        align="center"
        class-name="small-padding fixed-width"
      >
        <template slot-scope="scope" v-if="scope.row.roleId !== 1">
lixiaomin committed
97
          <el-button size="mini" type="text" icon="el-icon-delete"   @click="handleDelete(scope.row)" v-hasPermi="['system:role:remove']">删除</el-button>
lixiaomin committed
98 99
          <el-button size="mini" v-if="scope.row.status != 0" type="text" icon="el-icon-update"   @click="handleStatusChange(scope.row)" v-hasPermi="['system:role:restart']">启用</el-button>
          <el-button size="mini" v-if="scope.row.status == 0" type="text" icon="el-icon-update"   @click="handleStatusChange(scope.row)" v-hasPermi="['system:role:stop']">停用</el-button>
张成 committed
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
        </template>
      </el-table-column>
    </el-table>

    <pagination
      v-show="total > 0"
      :total="total"
      :page.sync="queryParams.pageNum"
      :limit.sync="queryParams.pageSize"
      @pagination="getList"
    />

    <!-- 添加或修改角色配置对话框 -->
    <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
      <el-form ref="form" :model="form" :rules="rules" label-width="100px">
        <el-form-item label="角色名称" prop="roleName">
          <el-input v-model="form.roleName" placeholder="请输入角色名称" />
        </el-form-item>
        <el-form-item label="备注">
          <el-input
            v-model="form.remark"
            type="textarea"
            placeholder="请输入内容"
          ></el-input>
        </el-form-item>
            <el-form-item label="菜单权限">
              <el-tree
                class="tree-border"
                :data="menuOptions"
                show-checkbox
                ref="menu"
                node-key="id"
                :check-strictly="!form.menuCheckStrictly"
                empty-text="加载中,请稍候"
                :props="defaultProps"
              ></el-tree>
            </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
lixiaomin committed
139
        <el-button type="primary" @click="submitForm" v-hasPermi="['system:role:edit']">确 定</el-button>
张成 committed
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
        <el-button @click="cancel">取 消</el-button>
      </div>
    </el-dialog>
  </div>
</template>

<script>
import {
  listRole,
  getRole,
  delRole,
  addRole,
  updateRole,
  dataScope,
  changeRoleStatus,
} from "@/api/system/role";
import {
  treeselect as menuTreeselect,
  roleMenuTreeselect,
} from "@/api/system/menu";
import {
  treeselect as deptTreeselect,
  roleDeptTreeselect,
} from "@/api/system/dept";

export default {
  name: "Role",
  dicts: ["sys_normal_disable"],
  data() {
    return {
      // 遮罩层
      loading: true,
      // 选中数组
      ids: [],
      // 非单个禁用
      single: true,
      // 非多个禁用
      multiple: true,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 角色表格数据
      roleList: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      // 是否显示弹出层(数据权限)
      openDataScope: false,
      menuExpand: false,
      menuNodeAll: false,
      deptExpand: true,
      deptNodeAll: false,
      // 日期范围
      dateRange: [],
      // 菜单列表
      menuOptions: [],
      // 部门列表
      deptOptions: [],
      // 查询参数
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        roleName: undefined,
        roleKey: undefined,
        status: undefined,
      },
      // 表单参数
      form: {},
      defaultProps: {
        children: "children",
        label: "label",
      },
      // 表单校验
      rules: {
        roleName: [
          { required: true, message: "角色名称不能为空", trigger: "blur" },
lixiaomin committed
218
        ]
张成 committed
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
      },
    };
  },
  created() {
    this.getList();
  },
  methods: {
    /** 查询角色列表 */
    getList() {
      this.loading = true;
      listRole(this.addDateRange(this.queryParams, this.dateRange)).then(
        (response) => {
          this.roleList = response.rows;
          this.total = response.total;
          this.loading = false;
        }
      );
    },
    /** 查询菜单树结构 */
    getMenuTreeselect() {
      menuTreeselect().then((response) => {
        this.menuOptions = response.data;
      });
    },
    /** 查询部门树结构 */
lixiaomin committed
244 245 246 247 248
    // getDeptTreeselect() {
    //   deptTreeselect().then((response) => {
    //     this.deptOptions = response.data;
    //   });
    // },
张成 committed
249 250 251 252
    // 所有菜单节点数据
    getMenuAllCheckedKeys() {
      // 目前被选中的菜单节点
      let checkedKeys = this.$refs.menu.getCheckedKeys();
lixiaomin committed
253
      console.log("checkedKeys",checkedKeys);
张成 committed
254 255 256 257 258 259
      // 半选中的菜单节点
      let halfCheckedKeys = this.$refs.menu.getHalfCheckedKeys();
      checkedKeys.unshift.apply(checkedKeys, halfCheckedKeys);
      return checkedKeys;
    },
    // 所有部门节点数据
lixiaomin committed
260 261 262 263 264 265 266 267
    // getDeptAllCheckedKeys() {
    //   // 目前被选中的部门节点
    //   let checkedKeys = this.$refs.dept.getCheckedKeys();
    //   // 半选中的部门节点
    //   let halfCheckedKeys = this.$refs.dept.getHalfCheckedKeys();
    //   checkedKeys.unshift.apply(checkedKeys, halfCheckedKeys);
    //   return checkedKeys;
    // },
张成 committed
268 269 270 271 272 273 274 275
    /** 根据角色ID查询菜单树结构 */
    getRoleMenuTreeselect(roleId) {
      return roleMenuTreeselect(roleId).then((response) => {
        this.menuOptions = response.menus;
        return response;
      });
    },
    /** 根据角色ID查询部门树结构 */
lixiaomin committed
276 277 278 279 280 281
    // getRoleDeptTreeselect(roleId) {
    //   return roleDeptTreeselect(roleId).then((response) => {
    //     this.deptOptions = response.depts;
    //     return response;
    //   });
    // },
张成 committed
282 283
    // 角色状态修改
    handleStatusChange(row) {
lixiaomin committed
284 285 286 287 288 289 290 291 292
      let text = "";
      let tag="";
      if(row.status=='0'){
        text="停用";
        tag="1";
      }else if(row.status=='1'){
        text="启用";
        tag="0";
      }
张成 committed
293
      this.$modal
lixiaomin committed
294
        .confirm('确认要' + text + '' + row.roleName + '角色吗?')
张成 committed
295
        .then(function () {
lixiaomin committed
296
          return changeRoleStatus(row.roleId, tag);
张成 committed
297
        })
lixiaomin committed
298 299 300 301 302
        .then((response) => {
          if(response.code=="200"){
            this.$modal.msgSuccess(text + "成功");
            this.getList();
          }
张成 committed
303 304 305 306 307 308 309 310 311 312
        })
        .catch(function () {
        });
    },
    // 取消按钮
    cancel() {
      this.open = false;
      this.reset();
    },
    // 取消按钮(数据权限)
lixiaomin committed
313 314 315 316
    // cancelDataScope() {
    //   this.openDataScope = false;
    //   this.reset();
    // },
张成 committed
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
    // 表单重置
    reset() {
      if (this.$refs.menu != undefined) {
        this.$refs.menu.setCheckedKeys([]);
      }
      (this.menuExpand = false),
        (this.menuNodeAll = false),
        (this.deptExpand = true),
        (this.deptNodeAll = false),
        (this.form = {
          roleId: undefined,
          roleName: undefined,
          roleKey: undefined,
          status: "0",
          menuIds: [],
          deptIds: [],
          menuCheckStrictly: true,
          deptCheckStrictly: true,
          remark: undefined,
        });
      this.resetForm("form");
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNum = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.dateRange = [];
      this.resetForm("queryForm");
      this.handleQuery();
    },
lixiaomin committed
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
    // // 多选框选中数据
    // handleSelectionChange(selection) {
    //   this.ids = selection.map((item) => item.roleId);
    //   this.single = selection.length != 1;
    //   this.multiple = !selection.length;
    // },
    // // 更多操作触发
    // handleCommand(command, row) {
    //   switch (command) {
    //     case "handleDataScope":
    //       this.handleDataScope(row);
    //       break;
    //     case "handleAuthUser":
    //       this.handleAuthUser(row);
    //       break;
    //     default:
    //       break;
    //   }
    // },
张成 committed
369
    // 树权限(展开/折叠)
lixiaomin committed
370 371 372 373 374 375 376 377 378 379 380 381 382
    // handleCheckedTreeExpand(value, type) {
    //   if (type == "menu") {
    //     let treeList = this.menuOptions;
    //     for (let i = 0; i < treeList.length; i++) {
    //       this.$refs.menu.store.nodesMap[treeList[i].id].expanded = value;
    //     }
    //   } else if (type == "dept") {
    //     let treeList = this.deptOptions;
    //     for (let i = 0; i < treeList.length; i++) {
    //       this.$refs.dept.store.nodesMap[treeList[i].id].expanded = value;
    //     }
    //   }
    // },
lixiaomin committed
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
    // // 树权限(全选/全不选)
    // handleCheckedTreeNodeAll(value, type) {
    //   if (type == "menu") {
    //     this.$refs.menu.setCheckedNodes(value ? this.menuOptions : []);
    //   } else if (type == "dept") {
    //     this.$refs.dept.setCheckedNodes(value ? this.deptOptions : []);
    //   }
    // },
    // // 树权限(父子联动)
    // handleCheckedTreeConnect(value, type) {
    //   if (type == "menu") {
    //     this.form.menuCheckStrictly = value ? true : false;
    //   } else if (type == "dept") {
    //     this.form.deptCheckStrictly = value ? true : false;
    //   }
    // },
张成 committed
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
    /** 新增按钮操作 */
    handleAdd() {
      this.reset();
      this.getMenuTreeselect();
      this.open = true;
      this.title = "添加角色";
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset();
      const roleId = row.roleId || this.ids;
      const roleMenu = this.getRoleMenuTreeselect(roleId);
      getRole(roleId).then((response) => {
        this.form = response.data;
        this.open = true;
        this.$nextTick(() => {
          roleMenu.then((res) => {
            let checkedKeys = res.checkedKeys;
            checkedKeys.forEach((v) => {
              this.$nextTick(() => {
                this.$refs.menu.setChecked(v, true, false);
              });
            });
          });
        });
        this.title = "修改角色";
      });
    },
    /** 选择角色权限范围触发 */
lixiaomin committed
428 429 430 431 432
    // dataScopeSelectChange(value) {
    //   if (value !== "2") {
    //     this.$refs.dept.setCheckedKeys([]);
    //   }
    // },
lixiaomin committed
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
    // /** 分配数据权限操作 */
    // handleDataScope(row) {
    //   this.reset();
    //   const roleDeptTreeselect = this.getRoleDeptTreeselect(row.roleId);
    //   getRole(row.roleId).then((response) => {
    //     this.form = response.data;
    //     this.openDataScope = true;
    //     this.$nextTick(() => {
    //       roleDeptTreeselect.then((res) => {
    //         this.$refs.dept.setCheckedKeys(res.checkedKeys);
    //       });
    //     });
    //     this.title = "分配数据权限";
    //   });
    // },
张成 committed
448
    /** 分配用户操作 */
lixiaomin committed
449 450 451 452
    // handleAuthUser: function (row) {
    //   const roleId = row.roleId;
    //   this.$router.push("/system/role-auth/user/" + roleId);
    // },
张成 committed
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
    /** 提交按钮 */
    submitForm: function () {
      this.$refs["form"].validate((valid) => {
        if (valid) {
          if (this.form.roleId != undefined) {
            this.form.menuIds = this.getMenuAllCheckedKeys();
            updateRole(this.form).then((response) => {
              this.$modal.msgSuccess("修改成功");
              this.open = false;
              this.getList();
            });
          } else {
            this.form.menuIds = this.getMenuAllCheckedKeys();
            addRole(this.form).then((response) => {
              this.$modal.msgSuccess("新增成功");
              this.open = false;
              this.getList();
            });
          }
        }
      });
    },
    /** 提交按钮(数据权限) */
lixiaomin committed
476 477 478 479 480 481 482 483 484 485
    // submitDataScope: function () {
    //   if (this.form.roleId != undefined) {
    //     this.form.deptIds = this.getDeptAllCheckedKeys();
    //     dataScope(this.form).then((response) => {
    //       this.$modal.msgSuccess("修改成功");
    //       this.openDataScope = false;
    //       this.getList();
    //     });
    //   }
    // },
张成 committed
486 487 488 489 490 491 492 493 494 495 496 497 498
    /** 删除按钮操作 */
    handleDelete(row) {
      const roleIds = row.roleId || this.ids;
      this.$modal
        .confirm('是否确认删除角色编号为"' + roleIds + '"的数据项?')
        .then(function () {
          return delRole(roleIds);
        })
        .then(() => {
          this.getList();
          this.$modal.msgSuccess("删除成功");
        })
        .catch(() => {});
lixiaomin committed
499 500
    }

张成 committed
501 502 503 504 505 506 507 508 509
  },
};
</script>
<style lang="scss" scoped>
.tree-border {
  height: 300px;
  overflow: auto;
}
</style>