web-base-admin/src/views/system/role/index.vue

657 lines
19 KiB
Vue
Raw Normal View History

2025-03-23 09:18:42 +08:00
<!-- 系统配置 - 权限配置 -->
<template>
<div class="page">
<topBar
v-if="topList.length > 0"
:top-list="topList"
:moren="moren"
/>
<div class="thetopbox">
<el-form ref="form" :model="queryParams" label-width="100px">
<el-row>
<el-col :span="4">
2025-04-01 23:46:26 +08:00
<el-form-item :label="'角色姓名'">
2025-03-23 09:18:42 +08:00
<el-input v-model="queryParams.roleName" clearable />
</el-form-item>
</el-col>
<el-col :span="4">
2025-04-01 23:46:26 +08:00
<el-form-item :label="'权限字符'" prop="teamCode">
2025-03-23 09:18:42 +08:00
<el-input v-model="queryParams.roleKey" clearable />
</el-form-item>
</el-col>
<el-col :span="4" style="margin-left: -30px">
2025-04-01 23:46:26 +08:00
<el-form-item :label="'状态'" prop="status">
2025-03-23 09:18:42 +08:00
<el-select v-model="queryParams.status" clearable placeholder="">
<el-option
v-for="item,index in statusList"
:key="index"
:label="item.name"
:value="item.id"
/>
</el-select>
</el-form-item>
</el-col>
<el-col :span="8">
2025-04-01 23:46:26 +08:00
<el-form-item :label="'创建日期'" prop="creationTime">
2025-03-23 09:18:42 +08:00
<el-date-picker
v-model="queryParams.creationTime"
value-format="yyyy-MM-dd"
type="daterange"
2025-04-01 23:46:26 +08:00
:range-separator="'至'"
:start-placeholder="'开始日期'"
:end-placeholder="'结束日期'"
2025-03-23 09:18:42 +08:00
@change="changeTime"
/>
</el-form-item>
</el-col>
<el-col :span="4">
<div class="searchbox">
2025-04-01 23:46:26 +08:00
<el-button class="my_search" @click="research()"> {{ '搜索' }}</el-button>
<el-button class="my_reset" style="margin-left: 10px" @click="reChongzhi"> {{ '重置' }}</el-button>
2025-03-23 09:18:42 +08:00
</div>
</el-col>
</el-row>
</el-form>
</div>
<div class="main">
<div class="maintop">
<div class="mainbtn">
<el-button v-has-buttons="['RoleAdd']" size="small" class="thebtn1" @click="addRules">{{ '添加' }}</el-button>
<el-button v-has-buttons="['RoleExport']" size="small" style="background-color: #FFAD41;margin-left: 10px" class="thebtn2" @click="exports"> {{ '导出' }}</el-button>
2025-03-23 09:18:42 +08:00
</div>
</div>
<div class="maintable">
<el-table
v-loading="loading"
:data="tableData"
2025-03-23 09:18:42 +08:00
style="width: 100%"
height="710px"
:header-cell-style="{ background: '#EEEEEE' }"
:row-class-name="tableRowClassName"
:span-method="objectSpanMethod"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" />
2025-04-01 23:46:26 +08:00
<el-table-column align="center" prop="roleName" :label="'角色姓名'" />
<el-table-column align="center" prop="roleKey" :label="'权限字符'" />
<el-table-column align="center" prop="roleSort" :label="'显示排序'" />
<el-table-column align="center" prop="status" :label="'状态'" />
<el-table-column align="center" prop="creationTime" :label="'创建日期'" />
<el-table-column align="center" prop="" :label="'操作'" fixed="right" width="300">
2025-03-23 09:18:42 +08:00
<template slot-scope="scope">
<el-button
v-has-buttons="['RoleUpdate']"
2025-03-23 09:18:42 +08:00
class="button-s"
type="text"
size="small"
style="color: #FFAD41;"
@click="updateShow(scope.row, tableData)"
>
2025-04-01 23:46:26 +08:00
{{ '修改' }}
2025-03-23 09:18:42 +08:00
</el-button>
<!-- <el-button-->
<!-- v-hasButtons="['roleMenu']"-->
<!-- class="button-s"-->
<!-- type="text"-->
<!-- size="small"-->
<!-- style="color: #48B2FD;"-->
<!-- @click="checkShow(scope.row, tableData)"-->
<!-- >-->
<!-- 菜单权限-->
<!-- </el-button>-->
2025-03-23 09:18:42 +08:00
<el-button
v-hasButtons="['roleFile']"
class="button-s"
type="text"
size="small"
style="color: #48B2FD;"
@click="checkShow1(scope.row, tableData)"
>
2025-04-01 23:46:26 +08:00
{{ '字段权限' }}
2025-03-23 09:18:42 +08:00
</el-button>
<!-- <el-button type="text" size="small" class="button-s" style="color: #48B2FD" >-->
<!-- 数据权限-->
<!-- </el-button>-->
<el-button v-has-buttons="['RoleDelete']" type="text" size="small" class="button-s" style="color: #c73030" @click="delRole(scope.row, tableData)">
2025-04-01 23:46:26 +08:00
{{ '删除' }}
2025-03-23 09:18:42 +08:00
</el-button>
</template>
</el-table-column>
</el-table>
</div>
</div>
<el-dialog
2025-04-01 23:46:26 +08:00
:title="'添加'"
2025-03-23 09:18:42 +08:00
:visible.sync="ruleShow"
width="36%"
center
:close-on-click-modal="false"
:before-close="handleClose"
>
<el-form ref="forms" :rules="rules" :model="table" label-width="80px">
2025-04-01 23:46:26 +08:00
<el-form-item :label="'角色姓名'" prop="roleName">
2025-03-23 09:18:42 +08:00
<el-input
v-model="table.roleName"
clearable
placeholder=""
/>
</el-form-item>
2025-04-01 23:46:26 +08:00
<el-form-item :label="'显示排序'" prop="roleSort">
2025-03-23 09:18:42 +08:00
<el-input
v-model="table.roleSort"
type="number"
clearable
placeholder=""
/>
</el-form-item>
2025-04-01 23:46:26 +08:00
<el-form-item :label="'权限字符'" prop="roleKey">
2025-03-23 09:18:42 +08:00
<el-input
v-model="table.roleKey"
clearable
placeholder=""
/>
</el-form-item>
2025-04-01 23:46:26 +08:00
<el-form-item :label="'状态'" prop="status">
2025-03-23 09:18:42 +08:00
<el-checkbox-group v-model="table.status" @change="statusChange">
<el-checkbox
v-for="(item, index) in statusList"
:key="index"
:label="item.name"
name="type"
/>
</el-checkbox-group>
</el-form-item>
2025-04-01 23:46:26 +08:00
<el-form-item :label="'地区'">
2025-03-23 09:18:42 +08:00
<el-select
v-model="table.scopeIdList"
multiple
clearable
>
<el-option
v-for="item in vertexList"
:key="item.pkId"
:label="item.name"
:value="item.pkId"
/>
</el-select>
</el-form-item>
<div style="padding-top: 100px;display: flex;justify-content: center">
2025-04-01 23:46:26 +08:00
<el-button type="text" size="small" class="button-style" @click="handleClose"> {{ '取消' }}</el-button>
2025-03-23 09:18:42 +08:00
<el-button v-preventReClick="3000" type="text" size="small" class="button-style" style="margin-left: 40px;background-color: #48B2FD;" @click="submitBtn()">
2025-04-01 23:46:26 +08:00
{{ '确认' }}
2025-03-23 09:18:42 +08:00
</el-button>
</div>
</el-form>
</el-dialog>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="research"
/>
</div>
</template>
<script>
import topBar from '@/components/topBar'
import { getbdmenuList, getContinentList, getPubenumsList } from '@/api/system'
import { getgradeRanglist, getAwardsListChiose } from '@/api/level'
import * as api from '@/api/notice'
import { Message } from 'element-ui'
import { deleteAgreement } from '@/api/configManage'
import { getarealist } from '@/api/division'
import { findAllArea } from '@/api/product'
export default {
name: 'Qxpz',
components: {
topBar
},
data() {
return {
vertexList: [],
forms: '',
rules: {
roleName: [
2025-04-01 23:46:26 +08:00
{ required: true, message: '请输入', trigger: 'blur' }
2025-03-23 09:18:42 +08:00
],
roleSort: [
2025-04-01 23:46:26 +08:00
{ required: true, message: '请输入', trigger: 'blur' }
2025-03-23 09:18:42 +08:00
],
roleKey: [
2025-04-01 23:46:26 +08:00
{ required: true, message: '请输入', trigger: 'blur' }
2025-03-23 09:18:42 +08:00
],
status: [
2025-04-01 23:46:26 +08:00
{ required: true, message: '请输入', trigger: 'blur' }
2025-03-23 09:18:42 +08:00
]
},
table: { 'roleName': '', 'roleSort': '', 'roleKey': '', 'status': ['正常'] },
ruleShow: false,
moren: 'role',
topList: [
{
2025-04-01 23:46:26 +08:00
name: '角色配置',
2025-03-23 09:18:42 +08:00
path: 'role'
}
],
defaultParams: {
label: 'label',
value: 'value',
children: 'enumList'
},
multipleSelection: [],
queryParams: {
pageNum: 1,
pageSize: 50,
userName: '', // 角色姓名
roleString: '', // 权限字符
status: '' // 状态
},
gradeRangList: [],
awardsList: [],
2025-04-01 23:46:26 +08:00
statusList: [{ 'name': '正常', 'id': '0' }, { 'name': '停用', 'id': '1' }],
2025-03-23 09:18:42 +08:00
menuOptions: [],
tableData: [],
loading: false,
2025-03-23 09:18:42 +08:00
total: 0,
types: '',
formId: ''
}
},
created() {
this.research()
this.getgradeRanglist()
this.getAwardsListChiose()
this.getPubenumsList()
this.getarealist()
},
methods: {
checkShow(item) {
this.$router.push({
path: '/system/limits/addMenuRole?id=' + item.roleId
2025-03-23 09:18:42 +08:00
})
},
checkShow1(item) {
this.$router.push({
path: '/system/limits/fieldRole?id=' + item.roleId
})
},
getarealist() {
findAllArea().then((res) => {
this.vertexList = res.data
})
},
exports() {
this.download(
'/system/manage/role/export',
{ ...this.params },
2025-04-01 23:46:26 +08:00
`${'角色配置'}-${new Date().getTime()}.xlsx`
2025-03-23 09:18:42 +08:00
)
},
addRules() {
this.types = 1
this.ruleShow = true
},
submitBtn() {
// 添加角色
this.ruleSubmit()
},
updateShow(item) {
this.types = 2
// 更新角色信息
this.formId = item.roleId
api.roleDetails(item.roleId).then((res) => {
if (res.code === 200) {
this.ruleShow = true
const arr = []
if (res.data.scopeIdList) {
res.data.scopeIdList.forEach((item) => {
item = item + ''
arr.push(item)
})
res.data.scopeIdList = arr
}
this.table = { 'roleName': res.data.roleName, 'roleSort': res.data.roleSort, 'scopeIdList': res.data.scopeIdList,
'roleKey': res.data.roleKey, 'status': res.data.status === 0 ? ['正常'] : ['停用'] }
} else {
Message({
message: res.msg,
type: 'error'
})
}
})
},
delRole(item) {
// 删除角色信息
2025-04-01 23:46:26 +08:00
this.$confirm('确认要删除该角色吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
2025-03-23 09:18:42 +08:00
type: 'warning'
}).then(() => {
api.delRole(item.roleId).then((res) => {
if (res.code === 200) {
Message({
2025-04-01 23:46:26 +08:00
message: '删除成功',
2025-03-23 09:18:42 +08:00
type: 'success'
})
this.research()
} else {
Message({
message: res.msg,
type: 'error'
})
}
})
})
},
ruleSubmit() {
const datas = this.table
const that = this
this.$refs['forms'].validate(valid => {
if (!valid) {
return false
} else {
if (this.types === 1) {
if (datas.status[0] === '正常') {
datas.status = ''
datas.status = 0
} else if (datas.status[0] === '停用') {
datas.status = ''
datas.status = 1
}
api.addRole(datas).then((res) => {
if (res.code === 200) {
Message({
2025-04-01 23:46:26 +08:00
message: '添加成功',
2025-03-23 09:18:42 +08:00
type: 'success'
})
that.ruleShow = false
that.table = { 'roleName': '', 'roleSort': '', 'roleKey': '', 'status': ['正常'], 'scopeIdList': [] }
that.research()
} else {
Message({
message: res.msg,
type: 'error'
})
}
})
}
if (this.types === 2) {
if (datas.status[0] === '正常') {
datas.status = ''
datas.status = 0
} else if (datas.status[0] === '停用') {
datas.status = ''
datas.status = 1
}
datas.roleId = this.formId
api.putRole(datas).then((res) => {
if (res.code === 200) {
Message({
2025-04-01 23:46:26 +08:00
message: '修改成功',
2025-03-23 09:18:42 +08:00
type: 'success'
})
that.ruleShow = false
that.table = { 'roleName': '', 'roleSort': '', 'roleKey': '', 'status': ['正常'], 'scopeIdList': [] }
that.research()
} else {
Message({
message: res.msg,
type: 'error'
})
}
})
}
}
})
},
statusChange(value) {
if (this.table.status.length > 1) {
this.table.status.splice(0, 1)
}
},
handleClose() {
this.ruleShow = false
this.table = { 'ruleName': '', 'sort': '', 'ruleStr': '', 'status': ['正常'], scopeIdList: [] }
},
changeBox(row) {
console.error(row)
},
addFrom() {
},
addRule() {
},
changeTime(value) {
// this.queryParams.creationTime = value[0]
// this.queryParams.endCreationTime = value[1]
},
handleChangeMunu(value) {
console.log('🌈', value[value.length - 1])
this.queryParams.menuId = value[value.length - 1]
},
// 菜单下拉选
getPubenumsList() {
getPubenumsList().then((res) => {
this.menuOptions = res.data
})
},
// 等级范围选择
getgradeRanglist() {
getgradeRanglist().then((res) => {
this.gradeRangList = res.data
})
},
// 奖衔下拉列表
getAwardsListChiose() {
getAwardsListChiose().then((res) => {
this.awardsList = res.rows
})
},
research() {
this.loading = true
// // 日期传入改为起止两个字段
// if ("" != this.queryParams.creationTime) {
// this.queryParams.creationTimeStart = this.queryParams.creationTime[0];
// this.queryParams.creationTimeEnd = this.queryParams.creationTime[1];
// }
// creationTime: '', // 开始时间
// modifiedTime: '' // 结束时间
api.roleList(this.queryParams).then((res) => {
this.loading = false
res.rows.forEach((element) => {
element.status = element.status === 0 ? '正常' : '停用'
})
// res.rows.forEach((element) => {
// element.alist = []
// element.blist = []
// element.clist = []
// element.themenus = ''
// element.theaward = ''
// element.thegrade = ''
// element.menuList.forEach((item) => {
// element.alist.push(item.menuVal)
// element.themenus = element.alist.join('/')
// })
// element.awardList.forEach((item) => {
// element.blist.push(item.awardVal)
// element.theaward = element.blist.join('/')
// })
// element.gradeList.forEach((item) => {
// element.clist.push(item.gradeVal)
// element.thegrade = element.clist.join('/')
// })
// })
this.tableData = res.rows
this.total = res.total
})
},
reChongzhi() {
this.queryParams = {
pageNum: 1,
pageSize: 50,
userName: '', // 角色姓名
roleString: '', // 权限字符
status: '', // 状态
startDate: '', // 开始时间
endDate: [] // 结束时间
}
this.research()
},
handleSelectionChange(val) {
this.multipleSelection = val
},
objectSpanMethod({ row, column, rowIndex, columnIndex }) {
// if (columnIndex === 0) {
// if (rowIndex % 2 === 0) {
// return {
// rowspan: 2,
// colspan: 1,
// };
// } else {
// return {
// rowspan: 0,
// colspan: 0,
// };
// }
// }
},
tableRowClassName({ row, rowIndex }) {
if (rowIndex % 2 == 1) {
return 'warning-row'
} else if (rowIndex % 2 == 0) {
return 'success-row'
}
return ''
}
}
}
</script>
<style lang="scss" scoped>
::v-deep .el-checkbox__input.is-checked .el-checkbox__inner{
border-radius: 50%;
}
::v-deep .el-checkbox__input{
border-radius: 50%;
}
::v-deep .el-checkbox__inner {
border-radius: 50%;
}
::v-deep .el-input__inner{
width: 100%;
}
.thebtn1 {
background: #3181e5!important;
color: #ffffff;
width: 68px;
border-color:#3181e5 ;
}
.thebtn2 {
background: #ffad41;
color: #ffffff;
border-color:#ffad41 ;
}
.button-style{
width: 209px;
height: 48px;
background: #CCCCCC;
border-radius: 5px 5px 5px 5px;
opacity: 1;
line-height: 48px;
padding: 0!important;
color: #fff;
font-size: 18px;
}
::v-deep .el-dialog__title{
font-weight: bold;
}
::v-deep .el-dialog__header{
border-bottom: 1px solid rgba(0,0,0,0.1);
}
.button-s{
padding: 0 2px!important;
}
::v-deep .el-button{
padding: 10px 20px;
}
::v-deep .el-date-editor .el-range__close-icon{
margin-top: -10px;
}
::v-deep .el-date-editor .el-range-separator{
margin-top: -10px;
}
::v-deep .el-date-editor .el-range__icon{
margin-top: -10px;
}
::v-deep .el-input__inner{
height:32px;
line-height: 32px;
}
::v-deep .el-form-item{
//margin-bottom: 15px;
}
::v-deep .el-form-item__label{
color: #333;
font-weight: inherit;
}
::v-deep .el-row {
//margin-top: 10px;
}
::v-deep .el-table .warning-row {
background: #f9f9f9;
}
::v-deep .el-table .success-row {
background: #ffffff;
}
::v-deep .el-table thead {
color: #000000;
}
.openClose {
margin-top: 10px;
margin-right: 10px;
color: #666666;
text-align: center;
}
.page {
padding: 10px 20px;
background: #f9f9f9;
font-size: 14px;
.thetopbox {
background: #ffffff;
border-radius: 8px;
padding-bottom: 10px;
padding-top: 1px;
.searchbox {
display: flex;
align-items: center;
margin-left: 40px;
.searchtitle {
margin-right: 10px;
}
.searchbtn {
background: #08143f;
color: #ffffff;
}
}
}
.main {
.maintop {
display: flex;
padding: 10px 0;
justify-content: space-between;
align-items: center;
.mainbtn {
.thebtn1 {
color: #ffffff;
background: rgba(67, 145, 253, 1);
}
}
}
}
}
</style>