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">
<el-form-item :label="$t('MN_F_T_472')">
<el-input v-model="queryParams.roleName" clearable />
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item :label="$t('MN_F_T_473')" prop="teamCode">
<el-input v-model="queryParams.roleKey" clearable />
</el-form-item>
</el-col>
<el-col :span="4" style="margin-left: -30px">
<el-form-item :label="$t('MN_F_T_474')" prop="status">
<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">
<el-form-item :label="$t('PER_DA_9')" prop="creationTime">
<el-date-picker
v-model="queryParams.creationTime"
value-format="yyyy-MM-dd"
type="daterange"
:range-separator="$t('w_0139')"
:start-placeholder="$t('CK_KS_4')"
:end-placeholder="$t('CK_KS_5')"
@change="changeTime"
/>
</el-form-item>
</el-col>
<el-col :span="4">
<div class="searchbox">
<el-button class="my_search" @click="research()"> {{ $t('MN_T_2') }}</el-button>
<el-button class="my_reset" style="margin-left: 10px" @click="reChongzhi"> {{ $t('MN_T_3') }}</el-button>
</div>
</el-col>
</el-row>
</el-form>
</div>
<div class="main">
<div class="maintop">
<div class="mainbtn">
<el-button size="small" class="thebtn1" @click="addRules" v-has-buttons="['RoleAdd']">{{$t('w_0328')}}</el-button>
<el-button size="small" style="background-color: #FFAD41;margin-left: 10px" class="thebtn2" @click="exports" v-has-buttons="['RoleExport']"> {{ $t('MN_T_8') }}</el-button>
</div>
</div>
<div class="maintable">
<el-table
:data="tableData"
v-loading="loading"
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" />
<el-table-column align="center" prop="roleName" :label="$t('MN_F_T_472')" />
<el-table-column align="center" prop="roleKey" :label="$t('MN_F_T_473')" />
<el-table-column align="center" prop="roleSort" :label="$t('MN_F_T_475')" />
<el-table-column align="center" prop="status" :label="$t('MN_F_T_474')" />
<el-table-column align="center" prop="creationTime" :label="$t('PER_DA_9')" />
<el-table-column align="center" prop="" :label="$t('MY_ORD_14')" fixed="right" width="300">
<template slot-scope="scope">
<el-button
class="button-s"
type="text"
size="small"
style="color: #FFAD41;"
@click="updateShow(scope.row, tableData)"
v-has-buttons="['RoleUpdate']"
>
{{ $t('ENU_CONTROL_TYPE_2') }}
</el-button>
<!-- <el-button-->
<!-- v-hasButtons="['roleMenu']"-->
<!-- class="button-s"-->
<!-- type="text"-->
<!-- size="small"-->
<!-- style="color: #48B2FD;"-->
<!-- @click="checkShow(scope.row, tableData)"-->
<!-- >-->
<!-- 菜单权限-->
<!-- </el-button>-->
<el-button
v-hasButtons="['roleFile']"
class="button-s"
type="text"
size="small"
style="color: #48B2FD;"
@click="checkShow1(scope.row, tableData)"
>
{{ $t('MN_F_T_476') }}
</el-button>
<!-- <el-button type="text" size="small" class="button-s" style="color: #48B2FD" >-->
<!-- 数据权限-->
<!-- </el-button>-->
<el-button type="text" size="small" class="button-s" style="color: #c73030" @click="delRole(scope.row, tableData)" v-has-buttons="['RoleDelete']">
{{ $t('CK_KS_47') }}
</el-button>
</template>
</el-table-column>
</el-table>
</div>
</div>
<el-dialog
:title="$t('w_0328')"
: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">
<el-form-item :label="$t('MN_F_T_472')" prop="roleName">
<el-input
v-model="table.roleName"
clearable
placeholder=""
/>
</el-form-item>
<el-form-item :label="$t('MN_F_T_475')" prop="roleSort">
<el-input
v-model="table.roleSort"
type="number"
clearable
placeholder=""
/>
</el-form-item>
<el-form-item :label="$t('MN_F_T_473')" prop="roleKey">
<el-input
v-model="table.roleKey"
clearable
placeholder=""
/>
</el-form-item>
<el-form-item :label="$t('MN_F_T_474')" prop="status">
<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>
<el-form-item :label="$t('S_C_84')">
<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">
<el-button type="text" size="small" class="button-style" @click="handleClose"> {{ $t('ENU_P_TYPE0') }}</el-button>
<el-button v-preventReClick="3000" type="text" size="small" class="button-style" style="margin-left: 40px;background-color: #48B2FD;" @click="submitBtn()">
{{ $t('ENU_P_TYPE4') }}
</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: [
{ required: true, message: this.$t('S_C_70'), trigger: 'blur' }
],
roleSort: [
{ required: true, message: this.$t('S_C_70'), trigger: 'blur' }
],
roleKey: [
{ required: true, message: this.$t('S_C_70'), trigger: 'blur' }
],
status: [
{ required: true, message: this.$t('S_C_70'), trigger: 'blur' }
]
},
table: { 'roleName': '', 'roleSort': '', 'roleKey': '', 'status': ['正常'] },
ruleShow: false,
moren: 'role',
topList: [
{
name: this.$t('MN_F_T_180'),
path: 'role'
}
],
defaultParams: {
label: 'label',
value: 'value',
children: 'enumList'
},
multipleSelection: [],
queryParams: {
pageNum: 1,
pageSize: 50,
userName: '', // 角色姓名
roleString: '', // 权限字符
status: '' // 状态
},
gradeRangList: [],
awardsList: [],
statusList: [{ 'name': this.$t('ENU_ACCOUNT_S_0'), 'id': '0' }, { 'name': this.$t('ENU_MACHINE_STATE_3'), 'id': '1' }],
menuOptions: [],
tableData: [],
loading:false,
total: 0,
types: '',
formId: ''
}
},
created() {
this.research()
this.getgradeRanglist()
this.getAwardsListChiose()
this.getPubenumsList()
this.getarealist()
},
methods: {
checkShow(item) {
this.$router.push({
path: '/system/limits/superStudioGift?id=' + item.roleId
})
},
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 },
`${this.$t('MN_F_T_180')}-${new Date().getTime()}.xlsx`
)
},
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) {
// 删除角色信息
this.$confirm(this.$t('MN_F_T_340'), this.$t('w_0034'), {
confirmButtonText: this.$t('w_0035'),
cancelButtonText: this.$t('ENU_P_TYPE0'),
type: 'warning'
}).then(() => {
api.delRole(item.roleId).then((res) => {
if (res.code === 200) {
Message({
message: this.$t('w_0089'),
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({
message: this.$t('MN_F_T_477'),
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({
message: this.$t('MN_F_T_478'),
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>