[Vue.js]实战 -- 电商项目(三)

权限管理

权限管理业务分析

通过权限管理模块控制不同的用户可以进行哪些操作,具体可以通过角色的方式进行控制,即每个用户分配一个特定的角色,角色包括不同的功能权限

 

权限列表展示

创建对应规格
  • 在components文件夹下创建power文件夹,在此文件夹下创建Rights.vue(此vue用于开发权限管理的权限列表内容)

  • index.js文件下导入

import Rights from "../components/power/Rights";
{
    path: '/rights',
    component: Rights
}

 

基本布局
  • 添加面包屑导航
<!-- 面包屑导航区域 -->
<el-breadcrumb separator-class="el-icon-arrow-right">
    <el-breadcrumb-item :to="{ path: '/home' }">首页</el-breadcrumb-item>
    <el-breadcrumb-item>权限管理</el-breadcrumb-item>
    <el-breadcrumb-item>权限列表</el-breadcrumb-item>
</el-breadcrumb>
  • 创建卡片视图
<el-card>
    测试
</el-card>
  • 请求数据
export default {
    data() {
        return {
            // 权限列表
            rightsList: []
        }
    },
    created() {
        // 获取所有的权限
        this.getRightsList()
    },
    methods: {
        // 获取权限列表
        async getRightsList() {
            const {data: res} = await this.$http.get('rights/list')
            if (res.meta.status !== 200) {
                return this.$message.error('获取权限列表失败!')
            }

            this.rightsList = res.data
            console.log(this.rightsList)
        }
    }
}
  • 渲染
<!-- 卡片视图 -->
<el-card>
    <el-table :data="rightsList" border stripe>
        <el-table-column type="index"></el-table-column>
        <el-table-column label="权限名称" prop="authName"></el-table-column>
        <el-table-column label="路径" prop="path"></el-table-column>
        <el-table-column label="权限等级" prop="level">
            <template slot-scope="scope">
                <el-tag v-if="scope.row.level === '0'">一级权限</el-tag>
                <el-tag type="success" v-else-if="scope.row.level === '1'">二级权限</el-tag>
                <el-tag type="warning" v-else>三级权限</el-tag>
            </template>
        </el-table-column>
    </el-table>
</el-card>

 

角色列表展示

  • 在power文件夹下创建Roles.vue(此vue用于开发权限管理的角色列表内容)

  • index.js文件下导入

import Roles from "../components/power/Roles"
{
    path: '/roles',
    component: Roles
}

 

创建对应规格
  • 添加面包屑导航
<!-- 面包屑导航区域 -->
<el-breadcrumb separator-class="el-icon-arrow-right">
    <el-breadcrumb-item :to="{ path: '/home' }">首页</el-breadcrumb-item>
    <el-breadcrumb-item>权限管理</el-breadcrumb-item>
    <el-breadcrumb-item>角色列表</el-breadcrumb-item>
</el-breadcrumb>
  • 创建卡片视图
<!-- 卡片视图 -->
<el-card>
    <!-- 添加角色按钮区域 -->
    <el-row>
        <el-col>
            <el-button type="primary">添加角色</el-button>
        </el-col>
    </el-row>

    <!-- 角色列表区域 -->
    <el-table>

    </el-table>
</el-card>
  • 请求数据
export default {
    data() {
        return {
            // 所有角色列表数据
            roleslist: []
        }
    },
    created() {
        this.getRolesList()
    },
    methods: {
        // 获取所有角色的列表
        async getRolesList() {
            const {data: res} = await this.$http.get('roles')

            if (res.meta.status !== 200) {
                return this.$message.error('获取角色列表失败!')
            }

            this.rolelist = res.data

            console.log(this.rolelist)
        }
    }
}
  • 渲染
<!-- 角色列表区域 -->
<el-table :data="rolelist" border stripe>
    <!-- 索引列 -->
    <el-table-column type="index"></el-table-column>
    <el-table-column label="角色名称" prop="roleName"></el-table-column>
    <el-table-column label="角色描述" prop="roleDesc"></el-table-column>
    <el-table-column label="操作" width="300px">
        <template slot-scope="scope">
            <el-button size="mini" type="primary" icon="el-icon-edit">编辑</el-button>
            <el-button size="mini" type="danger" icon="el-icon-delete">删除</el-button>
            <el-button size="mini" type="warning" icon="el-icon-setting" @click="showSetRightDialog(scope.row)">分配权限</el-button>
        </template>
    </el-table-column>
</el-table>

 

角色分配权限
表格行展开效果
<!-- 展开列 -->
<el-table-column type="expand">
</el-table-column>

 

渲染一级权限菜单
<el-row v-for="(item1, i1) in scope.row.children" :key="item1.id" class="centerRow">
    <!-- 这一列,专门渲染 一级权限 -->
    <el-col :span="5">
        <el-tag closable>{{item1.authName}}</el-tag>
        <i class="el-icon-caret-right"></i>
    </el-col>
    <!-- 还剩余 19 列,分配给二三级权限 -->
    <el-col :span="19">
        <!-- 这里显示二三级权限 -->
    </el-col>
</el-row>
.el-tag {
    margin: 7px;
}
.bdtop {
    border-top: 1px solid #eee;
}

.bdbottom {
    border-bottom: 1px solid #eee;
}

 

渲染二三级权限菜单
<el-row v-for="(item2, i2) in item1.children" :key="item2.id" class="centerRow">
    <!-- 放二级权限 -->
    <el-col :span="6">
        <el-tag closable type="success">{{item2.authName}}</el-tag>
        <i class="el-icon-caret-right"></i>
    </el-col>
    <!-- 放三级权限 -->
    <el-col :span="18">
        <el-tag closable type="warning" v-for="item3 in item2.children" :key="item3.id"> 
            {{item3.authName}}</el-tag>
    </el-col>
</el-row>
.vcenter {
    display: flex;
    align-items: center;
}

 

删除角色下的权限
  • 绑定点击事件,利用标签中的close
<el-row :class="['bdbottom', i1 === 0 ? 'bdtop' : '', 'vcenter']" v-for="(item1, i1) in scope.row.children" :key="item1.id">
    <!-- 渲染一级权限 -->
    <el-col :span="5">
        <el-tag closable @close="removeRightById(scope.row, item1.id)">{{item1.authName}}</el-tag>
        <i class="el-icon-caret-right"></i>
    </el-col>
    <!-- 渲染二级和三级权限 -->
    <el-col :span="19">
        <!-- 通过 for 循环 嵌套渲染二级权限 -->
        <el-row :class="[i2 === 0 ? '' : 'bdtop', 'vcenter']" v-for="(item2, i2) in item1.children" :key="item2.id">
            <el-col :span="6">
                <el-tag type="success" closable @close="removeRightById(scope.row, item2.id)">{{item2.authName}}</el-tag>
                <i class="el-icon-caret-right"></i>
            </el-col>
            <el-col :span="18">
                <el-tag type="warning" v-for="item3 in item2.children" :key="item3.id" closable @close="removeRightById(scope.row, item3.id)">{{item3.authName}}</el-tag>
            </el-col>
        </el-row>
    </el-col>
</el-row>
  • 根据id删除相对应的权限
// 根据Id删除对应的权限
async removeRightById(role, rightId) {
    // 弹框提示用户是否要删除
    const confirmResult = await this.$confirm(
        '此操作将永久删除该文件, 是否继续?',
        '提示',
        {
            confirmButtonText: '确定',
            cancelButtonText: '取消',
            type: 'warning'
        }
    ).catch(err => err)

    if (confirmResult !== 'confirm') {
        return this.$message.info('取消了删除!')
    }

    const { data: res } = await this.$http.delete(
        `roles/${role.id}/rights/${rightId}`
    )

    if (res.meta.status !== 200) {
        return this.$message.error('删除权限失败!')
    }

    // this.getRolesList()
    role.children = res.data
}

 

给角色分配权限流程
  • 实现角色分配权限对话框布局

  • 控制对话框的显示和隐藏

  • 对话框显示时调用后台接口加载权限列表数据

  • 完成树形权限菜单的展示

  • 选中默认的权限

  • 保存选中的权限,调用后台接口完成角色权限的分配

 

实现权限分配对话框布局
  • 实现对话框布局效果
<!-- 分配权限的对话框 -->
<el-dialog title="分配权限" :visible.sync="setRightDialogVisible" width="50%" 
           @close="resetSetRightDialog">
    <!-- 权限菜单 -->
    <span slot="footer" class="dialog-footer">
        <el-button @click="setRightDialogVisible = false">取 消</el-button>
        <el-button type="primary" @click="saveRight">确 定</el-button>
    </span>
</el-dialog>
  • 展示分配权限的对话框
async showSetRightDialog(role) {
    this.setRightDialogVisible = true
}
  • 控制分配对话框的显示与隐藏
setRightDialogVisible: false,

 

渲染权限的树形结构
async showSetRightDialog(role) {
    this.roleId = role.id
    // 获取所有权限的数据
    const { data: res } = await this.$http.get('rights/tree')

    if (res.meta.status !== 200) {
        return this.$message.error('获取权限数据失败!')
    }

    // 把获取到的权限数据保存到 data 中
    this.rightslist = res.data
    console.log(this.rightslist)

    // 递归获取三级节点的Id
    this.getLeafKeys(role, this.defKeys)

    this.setRightDialogVisible = true
},
显示分配对话框
  • 官网找到tree并导入
import Tree from 'element-ui'
Vue.use(Tree)
  • 分配权限的对话框
<!-- 分配权限的对话框 -->
<el-dialog title="分配权限" :visible.sync="setRightDialogVisible" width="50%" @close="setRightDialogClosed">
    <!-- 树形控件 -->
    <el-tree :data="rightslist" :props="treeProps" show-checkbox node-key="id" default-expand-all :default-checked-keys="defKeys" ref="treeRef"></el-tree>
    <span slot="footer" class="dialog-footer">
        <el-button @click="setRightDialogVisible = false">取 消</el-button>
        <el-button type="primary" @click="allotRights">确 定</el-button>
    </span>
</el-dialog>
  • 树形控件的属性绑定对象
// 树形控件的属性绑定对象
treeProps: {
    label: 'authName',
    children: 'children'
}
  • 显示当前分配权限的id
// 默认选中的节点Id值数组
defKeys: [],
// 当前即将分配权限的角色id
roleId: ''
  • 通过递归的形式,获取角色下所有三级权限的id,并保存到 defKeys 数组中
// 通过递归的形式,获取角色下所有三级权限的id,并保存到 defKeys 数组中
getLeafKeys(node, arr) {
    // 如果当前 node 节点不包含 children 属性,则是三级节点
    if (!node.children) {
        return arr.push(node.id)
    }

    node.children.forEach(item => this.getLeafKeys(item, arr))
},
  • 监听分配权限对话框的关闭事件
// 监听分配权限对话框的关闭事件
setRightDialogClosed() {
    this.defKeys = []
},

 

实现分配权限
  • 点击为角色分配权限
// 点击为角色分配权限
async allotRights() {
    const keys = [
        // 展开运算符
        ...this.$refs.treeRef.getCheckedKeys(),
        ...this.$refs.treeRef.getHalfCheckedKeys()
    ]

    const idStr = keys.join(',')

    const {data: res} = await this.$http.post(
        `roles/${this.roleId}/rights`,
        {rids: idStr}
    )

    if (res.meta.status !== 200) {
        return this.$message.error('分配权限失败!')
    }

    this.$message.success('分配权限成功!')
    this.getRolesList()
    this.setRightDialogVisible = false
}

 

实现添加、编辑、删除功能(剩余)

因为都是前面实现的基本功能,所以表述较为简单

添加角色
  • 实现页面效果
<!-- 添加角色对话框 -->
<el-dialog
           title="添加角色"
           :visible.sync="addRoleDialogVisible"
           width="50%"
           @close="addRoleDialogClosed"
           >
    <el-form
             :model="addRoleForm"
             ref="addRoleFormRef"
             :rules="addRoleRules"
             label-width="80px"
             >
        <el-form-item label="角色名称" prop="roleName">
            <el-input v-model="addRoleForm.roleName"></el-input>
        </el-form-item>
        <el-form-item label="角色描述" prop="roleDesc">
            <el-input v-model="addRoleForm.roleDesc"></el-input>
        </el-form-item>
    </el-form>
    <span slot="footer" class="dialog-footer">
        <el-button @click="addRoleDialogVisible = false">取 消</el-button>
        <el-button type="primary" @click="addRoleInfo">确 定</el-button>
    </span>
</el-dialog>
  • 添加角色
addRoleInfo() {
    // 预校验
    this.$refs.addRoleFormRef.validate(async (valid) => {
        if (!valid) {
            return
        }
        const { data: res } = await this.$http.post('roles', {
            roleName: this.addRoleForm.roleName,
            roleDesc: this.addRoleForm.roleDesc,
        })
        if (res.meta.status !== 201) {
            return this.$message.error('添加角色失败')
        }
        // 重新获取角色列表
        this.getRolesList()
        this.addRoleDialogVisible = false
        this.$message.success('添加角色成功')
    })
},
  • 添加角色表单信息
// 添加角色表单信息
addRoleForm: {
    // 角色名称
    roleName: '',
    // 角色描述
    roleDesc: '',
},
  • 添加角色表单效验规则
// 添加角色表单校验规则
addRoleRules: {
    roleName: [
        { required: true, message: '角色名称不能为空', trigger: 'blur' },
    ],
},
  • 添加角色对话框是否可见
// 添加角色对话框是否可见
addRoleDialogVisible: false,
  • 添加角色对话框关闭效果
// 添加角色对话框关闭
addRoleDialogClosed() {
    // 重置表单
    this.$refs.addRoleFormRef.resetFields()
},

 

编辑角色
  • 实现页面效果
<!-- 编辑角色对话框 -->
<el-dialog
           title="编辑角色"
           :visible.sync="editRoleDialogVisible"
           width="50%"
           @close="editRoleDialogClosed"
           >
    <el-form
             :model="addRoleForm"
             ref="editRoleFormRef"
             :rules="editRoleRules"
             label-width="80px"
             >
        <el-form-item label="角色名称" prop="roleName">
            <el-input v-model="editRoleForm.roleName"></el-input>
        </el-form-item>
        <el-form-item label="角色描述" prop="roleDesc">
            <el-input v-model="editRoleForm.roleDesc"></el-input>
        </el-form-item>
    </el-form>
    <span slot="footer" class="dialog-footer">
        <el-button @click="editRoleDialogVisible = false">取 消</el-button>
        <el-button type="primary" @click="editRoleInfo">确 定</el-button>
    </span>
</el-dialog>
  • 编辑角色
// 编辑角色
async editRoleInfo() {
    const { data: res } = await this.$http.put('roles/' + this.editRoleId, {
        roleName: this.editRoleForm.roleName,
        roleDesc: this.editRoleForm.roleDesc,
    })
    if (res.meta.status !== 200) {
        return this.$message.error('编辑提交角色失败')
    }
    // 重新获取角色列表
    this.getRolesList()
    // 关闭编辑角色对话框
    this.editRoleDialogVisible = false
    // 成功提示
    this.$message.success('编辑提交角色成功')
},
  • 编辑角色表单信息
// 添加角色表单信息
addRoleForm: {
    // 角色名称
    roleName: '',
    // 角色描述
    roleDesc: '',
},
  • 打开编辑角色对话框,根据id获取角色数据
// 打开编辑角色对话框,根据id获取角色数据
async editRole(id) {
    // 保存当前编辑角色的id
    this.editRoleId = id
    // 获取角色数据
    const { data: res } = await this.$http.get('roles/' + id)
    if (res.meta.status !== 200) {
        return this.$message.error('获取当前角色信息失败')
    }
    this.editRoleForm = res.data
    this.editRoleDialogVisible = true
},
  • 编辑角色表单效验规则
// 添加角色表单校验规则
addRoleRules: {
    roleName: [
        { required: true, message: '角色名称不能为空', trigger: 'blur' },
    ],
},
  • 编辑角色表单信息
// 编辑角色表单信息
editRoleForm: {},
  • 当前编辑角色的id
// 当前编辑角色的id
editRoleId: 0,
  • 编辑角色对话框是否可见
// 编辑角色对话框是否可见
      editRoleDialogVisible: false,
  • 编辑角色对话框关闭效果
// 编辑角色对话框关闭
editRoleDialogClosed() {
    // 重置表单
    this.$refs.editRoleFormRef.resetFields()
},

 

删除角色
  • 删除角色
// 删除角色
async deleteRole(role) {
    // 弹出确认删除对话框
    const deleteResult = await this.$confirm(
        `此操作将永久删除角色${role.roleName}, 是否继续?`,
        '提示',
        {
            confirmButtonText: '确定',
            cancelButtonText: '取消',
            type: 'warning',
        }
    ).catch((err) => err)
    // 如果用户点击了确认 删除,则返回字符串 confimr
    // 如果用户点击了取消,则返回字符串 cancel
    if (deleteResult !== 'confirm') {
        return this.$message.info('已取消删除')
    }
    const { data: res } = await this.$http.delete('roles/' + role.id)
    if (res.meta.status !== 200) {
        return this.$message.error('删除角色失败')
    }
    // 重新获取角色列表
    this.getRolesList()
    // 提示成功删除
    this.$message.success(`删除角色${role.roleName}成功`)
},
  • 根据id删除对应的权限
// 根据id删除对应的权限
async removeRightById(role, rightId) {
    const confirmResult = await this.$confirm(
        '此操作将永久删除该权限, 是否继续?',
        '提示',
        {
            confirmButtonText: '确定',
            cancelButtonText: '取消',
            type: 'warning',
        }
    ).catch((err) => err)
    if (confirmResult !== 'confirm') {
        return this.$message.info('取消了删除')
    }
    const { data: res } = await this.$http.delete(
        `roles/${role.id}/rights/${rightId}`
    )
    if (res.meta.status !== 200) {
        return this.$message.error('删除权限失败')
    }
    // 更新角色权限
    role.children = res.data
},
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值