寒假是用来反超的!
一起来学习Vue把,这篇博客是关于角色列表,请多指教~
methods: {
//获取所有角色的列表
async getRolesList(){
const {data:res} = await this.$http.get('roles')
if(res.meta.status !== 200) return this.$message.error('获取角色列表失败!')
//this.rolesList = res.data
console.log(res)
}
},
<!--角色列表区域-->
<el-table :data="rolesList" border stripe>
<!--展开列-->
<el-table-column type="expand" ></el-table-column>
<!--索引列-->
<el-table-column type="index" label="#"></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="">
<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">分配权限</el-button>
</template>
</el-table-column>
</el-table>
通过作用域插槽得到相关权限,然后通过三层for循环做
<!--展开列-->
<el-table-column type="expand" >
<template slot-scope="scope">
<pre>{{scope.row}}</pre>
</template>
</el-table-column>
<!--展开列-->
<el-table-column type="expand" >
<template slot-scope="scope">
<el-row v-for="(item1) in scope.row.children" :key="item1.id">
<!--渲染一级权限-->
<el-col :span="5">
<el-tag>{{item1.authName}}</el-tag>
</el-col>
<!--渲染二级和三级权限-->
<el-col :span="19"></el-col>
</el-row>
<pre>{{scope.row}}</pre>
</template>
</el-table-column>
<!--展开列-->
<el-table-column type="expand" >
<template slot-scope="scope">
<el-row :class="['bdbottom',i1 == 0 ? 'bdtop' :'' ]" v-for="(item1, i1) in scope.row.children" :key="item1.id">
<!--渲染一级权限-->
<el-col :span="5">
<el-tag>{{item1.authName}}</el-tag>
<i class="el-icon-caret-right"></i>
</el-col>
<!--渲染二级和三级权限-->
<el-col :span="19"></el-col>
</el-row>
<pre>{{scope.row}}</pre>
</template>
</el-table-column>
<!--渲染二级和三级权限-->
<el-col :span="19">
<!--通过for循环嵌套渲染二级权限-->
<el-row :class="[i2 == 0 ? '':'bdtop' ]" v-for="(item2,i2) in item1.children" :key="item2.id">
<el-col>
<el-tag type="success">{{item2.authName}}</el-tag>
<i class="el-icon-caret-right"></i>
</el-col>
<el-col></el-col>
</el-row>
</el-col>
<!--通过for循环嵌套渲染三级权限-->
<el-col :span="18">
<el-tag type="warning" v-for="(item3) in item2.children" :key="item3.id">{{item3.authName}}</el-tag>
</el-col>
将窗口设置最小宽度 并且将下面居中对齐
.vcenter{
display: flex;
align-items: center;
}
//根据id删除对应的权限
async removeRightById(role,rightId){
//弹窗是否删除权限
const confirmResult = await this.$confirm('此操作将永久删除该角色权限, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}
).catch(err => err)
//如果用户确认删除,则返回值为字符串 confirm
//如果用户取消删除,则返回值为字符串 cancel
//console.log(confirmResult)
if(confirmResult !== 'confirm'){
return this.$message.info('已取消删除')
}
const {data:res} = await this.$http.delete('roles/'+role.id+'/rights/'+rightId)
console.log(res)
if(res.meta.status !== 200){
return this.$message.error('删除权限失败!')
}
this.$message.success('删除权限成功!')
//为了不让列表关闭,重新刷新当前角色的children即可
role.children = res.data
}
关于添加和删除编辑等功能 就留给读者自己去做了,和之前用户列表类似的,这里就不多展示了
至此,我们的功能就完成了!
Vue全家桶开发电商管理系统码云地址,欢迎一起来学习~
https://gitee.com/Chocolate666/vue_shop
最后,看完本篇博客后,觉得挺有帮助的话,可以继续查看专栏其它内容嗷,一起来学习Vue吧~
学如逆水行舟,不进则退