<template>
|
<div>
|
<div class="body" style="background-color: #ffffff; padding: 20px 10px 0 20px;" :style="{height:mainHeight+'px'}">
|
<div style="height: 50px;">
|
<el-form
|
ref="form"
|
:model="form"
|
label-width="80px"
|
inline
|
style="display: flex;justify-content: space-between"
|
>
|
<div style="display: flex;justify-content: space-around;width: 85%">
|
<el-form-item label="角色编码" style=" display: flex;">
|
<el-input v-model="form.RoleCode" placeholder="请输入" style="width: calc(100%-30px)" />
|
</el-form-item>
|
<el-form-item label="角色名称" style=" display: flex;">
|
<el-input v-model="form.RoleName" placeholder="请输入" style="width: calc(100%-30px)" />
|
</el-form-item>
|
<el-form-item label="角色类型" style=" display: flex;">
|
<el-select v-model="form.RoleTypeCode" style="width: calc(100%-30px)" placeholder="请选择">
|
<el-option
|
v-for="item in RoleTypeCodeArr2"
|
:key="item.roletype_code"
|
:label="item.roletype_name"
|
:value="item.roletype_code"
|
/>
|
</el-select>
|
</el-form-item>
|
<el-form-item label="创建人员" style=" display: flex;">
|
<el-input v-model="form.UserName" style="width: calc(100%-30px)" placeholder="请输入" />
|
</el-form-item>
|
</div>
|
<div style="display: flex;align-items: start;margin-top: 5px;">
|
<el-button type="primary" icon="el-icon-search" @click="search">查询</el-button>
|
<el-button type="info" icon="el-icon-refresh" @click="reset">重置</el-button>
|
</div>
|
</el-form>
|
</div>
|
<div style="margin-bottom: 20px;display: flex; z-index: 2">
|
<el-button type="primary" icon="el-icon-circle-plus-outline" @click="add('add')">新增</el-button>
|
<el-button type="primary" icon="el-icon-setting" @click="settingButton">设置</el-button>
|
<el-button type="primary" icon="el-icon-upload2" @click="upload">导入</el-button>
|
</div>
|
|
<div style="display: flex;border: 1px solid #eee">
|
<el-table
|
:data="tableData"
|
border
|
highlight-current-row
|
:style="{width: 100+'%',height:tableHeight+'px'}"
|
:header-cell-style="this.$headerCellStyle"
|
:cell-style="this.$cellStyle"
|
@sort-change="sortChange"
|
>
|
<!-- <el-table-column-->
|
<!-- type="selection"-->
|
<!-- width="50"-->
|
<!-- />-->
|
<el-table-column
|
prop="RowNum"
|
width="50"
|
label="序号"
|
/>
|
<el-table-column
|
prop="role_code"
|
label="角色编码"
|
sortable="custom"
|
/>
|
<el-table-column
|
prop="role_name"
|
label="角色名称"
|
sortable="custom"
|
/>
|
<el-table-column
|
prop="roletype_name"
|
label="角色类型"
|
sortable="custom"
|
/>
|
<el-table-column
|
prop="description"
|
label="角色描述"
|
show-overflow-tooltip
|
sortable="custom"
|
/>
|
<el-table-column
|
prop="lm_user"
|
label="创建人员"
|
sortable="custom"
|
/>
|
<el-table-column
|
prop="lm_date"
|
label="创建时间"
|
sortable="custom"
|
/>
|
<el-table-column
|
prop="lm_date"
|
label="关联用户"
|
width="120"
|
sortable="custom"
|
>
|
<template slot-scope="{row}">
|
<i class="el-icon-user-solid" @click="userClick(row)" />
|
</template>
|
</el-table-column>
|
<el-table-column
|
prop="lm_date"
|
label="分配权限"
|
sortable="custom"
|
width="120"
|
>
|
<template slot-scope="{row}">
|
<i class="el-icon-share" @click="rightClick(row)" />
|
</template>
|
</el-table-column>
|
<el-table-column
|
label="操作"
|
>
|
<template slot-scope="{row}">
|
<div class="operationClass">
|
<el-button type="text" @click="edit('edit',row)">修改</el-button>
|
<el-button type="text" @click="del(row)">删除</el-button>
|
</div>
|
</template>
|
</el-table-column>
|
</el-table>
|
</div>
|
<!--分页-->
|
<pagination
|
v-show="total>0"
|
:total="total"
|
:page.sync="form.page"
|
:limit.sync="form.rows"
|
align="right"
|
layout="prev, pager, next,sizes"
|
popper-class="select_bottom"
|
@pagination="getRoleSearch"
|
/>
|
</div>
|
|
<!-- 新增修改对话框-->
|
<el-dialog
|
:title="operation==='add'?'添加':'修改'"
|
:visible.sync="dialogVisible"
|
width="50%"
|
top="15vh"
|
@closed="handleClose"
|
@close="handleClose"
|
>
|
<el-form ref="dialogForm" inline :rules="dialogFormRules" :model="dialogForm" label-width="80px">
|
<el-form-item label="角色编码" prop="RoleCode">
|
<el-input v-model="dialogForm.RoleCode" :disabled="operation!=='add'" style="width: 220px" />
|
</el-form-item>
|
<el-form-item label="角色名称" prop="RoleName">
|
<el-input v-model="dialogForm.RoleName" style="width: 220px" />
|
</el-form-item>
|
<el-form-item prop="RoleTypeCode" label="角色类型">
|
<el-select
|
v-model="dialogForm.RoleTypeCode"
|
style="width: 220px"
|
placeholder="请选择"
|
>
|
<el-option
|
v-for="item in RoleTypeCodeArr2"
|
:key="item.roletype_code"
|
:label="item.roletype_name"
|
:value="item.roletype_code"
|
/>
|
</el-select>
|
</el-form-item>
|
<el-form-item label="角色描述" prop="description">
|
<el-input v-model="dialogForm.description" type="textarea" style="width: 220px" />
|
</el-form-item>
|
</el-form>
|
<span slot="footer" class="dialog-footer">
|
<div class="footerButton">
|
<el-button @click="dialogVisibleCancel">取 消</el-button>
|
<el-button type="primary" @click="dialogVisibleConfirm">确 定</el-button>
|
</div>
|
</span>
|
</el-dialog>
|
<!-- 设置按钮对话框-->
|
<el-dialog
|
title="角色类型"
|
:visible.sync="settingDialogVisible"
|
width="50%"
|
top="15vh"
|
class="settingDialogVisible"
|
@closed="handleCloseSetting"
|
@close="handleCloseSetting"
|
>
|
<div style="margin-bottom: 20px;display: flex">
|
<el-button type="primary" icon="el-icon-circle-plus-outline" @click="addSetting">新增</el-button>
|
<!-- <el-button type="primary" icon="el-icon-delete" @click="delSetting">删除</el-button>-->
|
</div>
|
<el-table
|
:data="RoleTypeCodeArr"
|
border
|
highlight-current-row
|
:style="{width: 100+'%',height:tableHeight-300+'px'}"
|
:header-cell-style="this.$headerCellStyle"
|
:cell-style="this.$cellStyle"
|
@sort-change="sortChangeOfSetting"
|
>
|
<!-- <el-table-column-->
|
<!-- type="selection"-->
|
<!-- width="50"-->
|
<!-- />-->
|
<el-table-column
|
width="50"
|
label="序号"
|
type="index"
|
/>
|
<el-table-column
|
prop="roletype_code"
|
label="类型编码"
|
sortable="custom"
|
>
|
<template slot-scope="{row}">
|
<el-input v-if="row.isVisible===1" v-model="row.roletype_code" placeholder="请输入" />
|
<div v-else> {{ row.roletype_code }}</div>
|
</template>
|
</el-table-column>
|
<el-table-column
|
prop="roletype_name"
|
label="类型名称"
|
sortable="custom"
|
>
|
<template slot-scope="{row}">
|
<el-input v-if="row.isVisible===1" v-model="row.roletype_name" placeholder="请输入" />
|
<div v-else> {{ row.roletype_name }}</div>
|
</template>
|
</el-table-column>
|
<el-table-column>
|
|
<template slot-scope="{row}">
|
<div class="operationClass">
|
<el-button v-if="row.isVisible===0" type="text" @click="delSetting(row)">删除</el-button>
|
<el-button v-if="row.isVisible===1" type="text" @click="formSettingSave(row)">保存</el-button>
|
<el-button v-if="row.isVisible===1" type="text" @click="formSettingCancel(row)">取消</el-button>
|
</div>
|
</template>
|
<!-- <template v-for="item in RoleTypeCodeArr" slot-scope="{row}">-->
|
<!-- <div :key="item.roletype_code" class="operationClass">-->
|
<!-- <el-button v-if="item.isVisible" type="text" @click="formSettingSave(row)">保存</el-button>-->
|
<!-- <el-button v-if="item.isVisible" type="text" @click="formSettingCancel(row)">取消</el-button>-->
|
<!-- </div>-->
|
<!-- </template>-->
|
</el-table-column>
|
</el-table>
|
<!--分页-->
|
<pagination
|
v-show="RoleTypeCodeArrLength>0"
|
:total="RoleTypeCodeArrLength"
|
:page.sync="formSetting.page"
|
:limit.sync="formSetting.rows"
|
align="right"
|
layout="prev, pager, next,sizes"
|
popper-class="select_bottom"
|
@pagination="getRoleTypeSearch"
|
/>
|
<span slot="footer" class="dialog-footer">
|
<div class="footerButton">
|
<el-button @click="settingDialogVisibleCancel">返回</el-button>
|
<!-- <el-button type="primary" @click="settingDialogVisibleConfirm">确 定</el-button>-->
|
</div>
|
</span>
|
</el-dialog>
|
<!-- 关联用户对话框-->
|
<el-dialog
|
title="角色关联用户"
|
:visible.sync="userDialogVisible"
|
width="90%"
|
top="15vh"
|
class="userDialogVisible"
|
@closed="handleCloseUser"
|
@close="handleCloseUser"
|
>
|
<div>
|
<i class="el-icon-s-comment" style="color:#42b983;" /> 角色名称:{{ userForm.roleName }}
|
</div>
|
<el-divider />
|
<div style="margin-bottom: 10px">
|
<i class="el-icon-s-operation" style="color:#42b983;" /> 用户列表
|
</div>
|
<div style="display: flex;min-height: 50px">
|
<el-form ref="dialogFormUser" inline :model="dialogFormUser" label-width="80px">
|
<el-form-item label="用户编码">
|
<el-input v-model="dialogFormUser.usercode" class="userDialogVisibleInput" style="width: 220px" />
|
</el-form-item>
|
<el-form-item label="用户名称">
|
<el-input v-model="dialogFormUser.username" class="userDialogVisibleInput" style="width: 220px" />
|
</el-form-item>
|
<el-form-item label="所属组织">
|
<el-cascader
|
ref="dialogCascaderUser"
|
key="cascaderKey"
|
:options="StuOrgArr"
|
:props="defaultProps"
|
class="userDialogVisibleInput"
|
style="width: 220px;"
|
@change="dialogCascaderChange"
|
/>
|
|
</el-form-item>
|
<el-form-item label="关联角色">
|
<el-select
|
v-model="dialogFormUser.isrole"
|
style="width: 220px"
|
placeholder="请选择"
|
class="userDialogVisibleInput"
|
>
|
<el-option
|
v-for="item in roleArr"
|
:key="item.value"
|
:label="item.label"
|
:value="item.value"
|
/>
|
</el-select>
|
</el-form-item>
|
</el-form>
|
<el-button type="primary" icon="el-icon-search" style="margin-top: 5px;margin-left: 30px" @click="getRoleAssociationUser">查询</el-button>
|
<el-button type="info" icon="el-icon-refresh" style="margin-top: 5px;margin-left: 10px" @click="setRoleAssociationUser">重置</el-button>
|
</div>
|
<el-table
|
ref="multipleTable"
|
:data="dialogFormUserTable"
|
border
|
highlight-current-row
|
:style="{width: 100+'%',height:tableHeight-300+'px'}"
|
:header-cell-style="this.$headerCellStyle"
|
:cell-style="this.$cellStyle"
|
@sort-change="sortChangeOfUser"
|
@selection-change="handleSelectionChange"
|
@select="handleSelect"
|
>
|
<el-table-column
|
type="selection"
|
width="50"
|
/>
|
<el-table-column
|
prop="RowNum"
|
width="50"
|
label="序号"
|
/>
|
<el-table-column
|
prop="usercode"
|
label="用户编码"
|
sortable="custom"
|
/>
|
<el-table-column
|
prop="username"
|
label="用户名称"
|
sortable="custom"
|
/>
|
<el-table-column
|
prop="org_name"
|
label="所属组织"
|
sortable="custom"
|
/>
|
<el-table-column
|
prop="flag"
|
label="关联角色"
|
sortable="custom"
|
>
|
<template slot-scope="{row}">
|
<div v-if="row.flag==='Y'">是</div>
|
<div v-if="row.flag==='N'">否</div>
|
</template>
|
</el-table-column>
|
</el-table>
|
|
<!--分页-->
|
<pagination
|
v-show="dialogFormUserTableLength>0"
|
:total="dialogFormUserTableLength"
|
:page.sync="dialogFormUser.page"
|
:limit.sync="dialogFormUser.rows"
|
align="right"
|
layout="prev, pager, next,sizes"
|
popper-class="select_bottom"
|
@pagination="getRoleAssociationUser"
|
/>
|
|
<span slot="footer" class="dialog-footer">
|
<div class="footerButton">
|
<el-button @click="userDialogVisibleCancel">取 消</el-button>
|
<el-button type="primary" @click="userDialogVisibleConfirm">确 定</el-button>
|
</div>
|
</span>
|
</el-dialog>
|
<!-- 分配权限对话框-->
|
<el-dialog
|
title="角色关联权限"
|
:visible.sync="dialogVisibleRight"
|
width="50%"
|
top="15vh"
|
class="dialogVisibleRight"
|
@closed="handleCloseRight"
|
@close="handleCloseRight"
|
>
|
<div>
|
<i class="el-icon-s-comment" style="color:#42b983;" /> 角色名称:{{ rightFrom.username }}
|
</div>
|
<el-divider />
|
<div style="margin-bottom: 10px">
|
<i class="el-icon-s-operation" style="color:#42b983;" /> 权限操作端
|
</div>
|
|
<span slot="footer" class="dialog-footer">
|
<div class="footerButton">
|
<el-button @click="rightDialogVisibleCancel">取 消</el-button>
|
<el-button type="primary" @click="rightDialogVisibleConfirm">确 定</el-button>
|
</div>
|
</span>
|
</el-dialog>
|
</div>
|
</template>
|
|
<script>
|
import Pagination from '@/components/Pagination'
|
import {
|
AddUpdateRole,
|
DeleteRole,
|
RoleAssociationUser,
|
RoleSearch, RoleTypeAdd,
|
RoleTypeDelete, RoleTypeSearch, SaveRoleAssoctUser, UserOrganization
|
} from '@/api/jcsz'
|
import { getCookie } from '@/utils/auth'
|
|
const SER_HZ = /^[\u4e00-\u9fa5]+$/
|
export default {
|
name: 'Zzjg',
|
components: {
|
Pagination
|
},
|
data() {
|
const validateName = (rule, value, callback) => {
|
if (!value) {
|
return callback(new Error('请输入编码'))
|
} else {
|
if (SER_HZ.test(value)) {
|
return callback(new Error('编码不能为中文'))
|
} else {
|
callback()
|
}
|
}
|
}
|
// const validateTypeCode = (rule, value, callback) => {
|
// if (!value) {
|
// return callback(new Error('请选择上级'))
|
// } else {
|
// callback()
|
// }
|
// }
|
return {
|
mainHeight: 0,
|
tableHeight: 0,
|
form: {
|
RoleCode: '', // 角色编码
|
RoleName: '', // 角色名称
|
RoleTypeCode: '', // 角色类型编码
|
CreateUser: '', // 创建人员
|
prop: 'lm_date', // 排序字段
|
order: 'desc', // 排序字段
|
page: 1, // 第几页
|
rows: 10 // 每页多少条
|
},
|
total: 10,
|
RoleTypeCodeArr: [], // 角色类型编码数组
|
RoleTypeCodeArr2: [], // 角色类型编码数组 搜索
|
RoleTypeCodeArrLength: 0,
|
formSetting: {
|
page: 1,
|
rows: 10,
|
prop: 'roletype_code',
|
order: 'desc'
|
},
|
tableData: [],
|
dialogVisible: false,
|
dialogForm: {
|
RoleId: '',
|
RoleCode: '', // 角色编码
|
RoleName: '', // 角色名称
|
RoleTypeCode: '', // 角色类型
|
description: ''//
|
},
|
operation: '',
|
dialogFormRules: {
|
RoleCode: [
|
{ required: true, validator: validateName, trigger: ['blur', 'change'] }
|
],
|
RoleName: [
|
{ required: true, message: '请输入名称', trigger: ['blur', 'change'] }
|
],
|
RoleTypeCode: [
|
{ required: true, message: '请选择角色类型', trigger: ['blur', 'change'] }
|
]
|
},
|
settingDialogVisible: false,
|
userDialogVisible: false,
|
userForm: { // 角色清单带到关联用户内的值
|
roleName: '',
|
roleCode: ''
|
},
|
dialogFormUser: { // 对话框中搜索表单值
|
usercode: '',
|
username: '',
|
orgcode: '',
|
isrole: '',
|
page: 1,
|
rows: 10,
|
prop: 'flag',
|
order: 'desc'
|
},
|
dialogFormUserTable: [],
|
dialogFormUserTableLength: 0,
|
StuOrgArr: [], // 所属组织
|
defaultProps: {
|
checkStrictly: true,
|
value: 'code',
|
label: 'name',
|
children: 'children'
|
},
|
roleArr: [
|
{ value: 'Y', label: '是' },
|
{ value: 'N', label: '否' }
|
], // 关联角色数组
|
userMultipleArr: [],
|
userSingleCode: '',
|
userSingleCodeFlag: false,
|
dialogVisibleRight: false,
|
rightFrom: {
|
username: '',
|
usercode: ''
|
},
|
dialogFormRight: {
|
|
}
|
}
|
},
|
created() {
|
this.getRoleSearch()
|
this.getRoleTypeSearch2()
|
this.getUserOrganization()
|
},
|
mounted() {
|
window.addEventListener('resize', this.getHeight)
|
this.getHeight()
|
},
|
methods: {
|
// 获取角色清单
|
async getRoleSearch() {
|
const res = await RoleSearch(this.form)
|
this.tableData = res.data
|
this.total = res.count
|
},
|
// 获取用户类型
|
async getRoleTypeSearch() {
|
const res = await RoleTypeSearch(this.formSetting)
|
this.RoleTypeCodeArr = res.data
|
this.RoleTypeCodeArrLength = res.count
|
this.RoleTypeCodeArr.forEach((item, index) => {
|
item.isVisible = 0
|
})
|
},
|
async getRoleTypeSearch2() { // 搜索展示的内容
|
const data = {
|
page: 1,
|
rows: 1000000,
|
prop: 'roletype_code',
|
order: 'desc'
|
}
|
const res = await RoleTypeSearch(data)
|
this.RoleTypeCodeArr2 = res.data
|
},
|
settingButton() {
|
this.settingDialogVisible = true
|
this.getRoleTypeSearch()
|
},
|
// 获取所属组织
|
async getUserOrganization() {
|
const { data: res } = await UserOrganization()
|
this.StuOrgArr = res
|
},
|
// 排序改变时
|
sortChange({ column, prop, order }) {
|
if (order === 'descending') {
|
order = 'desc'
|
} else if (order === 'ascending') {
|
order = 'asc'
|
} else {
|
order = 'desc'
|
}
|
this.form.order = order
|
this.form.prop = prop
|
this.getRoleSearch()
|
},
|
sortChangeOfSetting({ column, prop, order }) {
|
if (order === 'descending') {
|
order = 'desc'
|
} else if (order === 'ascending') {
|
order = 'asc'
|
} else {
|
order = 'desc'
|
}
|
this.formSetting.order = order
|
this.formSetting.prop = prop
|
this.getRoleTypeSearch()
|
},
|
|
upload() {
|
|
},
|
// 查询
|
search() {
|
this.getRoleSearch()
|
},
|
// 重置
|
reset() {
|
this.form.RoleCode = ''
|
this.form.RoleName = ''
|
this.form.RoleTypeCode = ''
|
this.form.CreateUser = ''
|
this.getRoleSearch()
|
},
|
// 新增按钮
|
add(operation) {
|
this.operation = operation
|
this.dialogVisible = true
|
},
|
// 修改按钮
|
edit(operation, row) {
|
this.operation = operation
|
this.dialogVisible = true
|
|
this.$nextTick(() => {
|
this.$refs.dialogForm.clearValidate()
|
this.dialogForm.RoleId = row.id
|
this.dialogForm.RoleCode = row.role_code
|
this.dialogForm.RoleName = row.role_name
|
this.dialogForm.RoleTypeCode = row.roletype_code
|
this.dialogForm.description = row.description
|
})
|
},
|
// 删除按钮
|
del(row) {
|
this.$confirm('是否确认删除?', '提示', {
|
confirmButtonText: '确定',
|
cancelButtonText: '取消',
|
type: 'warning'
|
}).then(() => {
|
DeleteRole({ RoleCode: row.role_code }).then(res => {
|
if (res.code === '200') {
|
this.$message.success('删除成功!')
|
this.getRoleSearch()
|
}
|
})
|
}).catch(() => {
|
this.$message.info('已取消删除')
|
})
|
},
|
// 对话框关闭事件
|
handleClose() {
|
this.dialogForm.RoleId = ''
|
this.dialogForm.RoleCode = ''
|
this.dialogForm.RoleName = ''
|
this.dialogForm.RoleTypeCode = ''
|
this.dialogForm.description = ''
|
this.$refs.dialogForm.clearValidate()
|
},
|
// 对话框取消
|
dialogVisibleCancel() {
|
this.dialogVisible = false
|
},
|
// 对话框确认
|
dialogVisibleConfirm() {
|
this.$refs.dialogForm.validate(valid => {
|
if (valid) {
|
const data = {
|
RoleId: this.dialogForm.RoleId,
|
RoleCode: this.dialogForm.RoleCode,
|
RoleName: this.dialogForm.RoleName,
|
RoleTypeCode: this.dialogForm.RoleTypeCode,
|
description: this.dialogForm.description,
|
OperType: this.operation === 'add' ? 'Add' : 'Update'
|
// Operator: getCookie('admin')
|
}
|
AddUpdateRole(data).then(res => {
|
if (res.code === '200') {
|
this.$message.success(this.operation === 'add' ? '添加成功!' : '修改成功!')
|
this.getRoleSearch()
|
} else {
|
this.$message.error(this.operation === 'add' ? '添加失败!' : '修改失败!')
|
}
|
})
|
|
this.dialogVisible = false
|
}
|
})
|
},
|
// 获取页面高度
|
getHeight() {
|
this.$nextTick(() => {
|
this.mainHeight = window.innerHeight - 200
|
this.tableHeight = this.mainHeight - 100
|
})
|
},
|
/* 设置模块*/
|
// 设置对话框关闭事件
|
handleCloseSetting() {
|
this.RoleTypeCodeArr.forEach((item, index) => {
|
if (item.isVisible === 1) {
|
this.RoleTypeCodeArr.splice(index, 1)
|
}
|
})
|
},
|
// 设置对话框取消事件
|
settingDialogVisibleCancel() {
|
this.settingDialogVisible = false
|
},
|
settingDialogVisibleConfirm() {
|
|
},
|
// 添加按钮
|
addSetting() {
|
const data = { roletype_code: '', roletype_name: '', isVisible: 1 }
|
this.RoleTypeCodeArr.unshift(data)
|
},
|
// 删除按钮
|
delSetting(row) {
|
this.$confirm('是否确认删除?', '提示', {
|
confirmButtonText: '确定',
|
cancelButtonText: '取消',
|
type: 'warning'
|
}).then(() => {
|
RoleTypeDelete({ RoleTypeCode: row.roletype_code }).then(res => {
|
if (res.code === '200') {
|
this.$message.success('删除成功!')
|
this.getRoleTypeSearch()
|
}
|
})
|
}).catch(() => {
|
this.$message.info('已取消删除')
|
})
|
},
|
// 设置表单保存事件
|
async formSettingSave(row) {
|
if (row.roletype_code.trim().length < 1) {
|
return this.$message.info('类型编码不能为空!')
|
}
|
if (row.roletype_name.trim().length < 1) {
|
return this.$message.info('类型名称不能为空!')
|
}
|
const data = {
|
code: row.roletype_code,
|
name: row.roletype_name
|
}
|
const res = await RoleTypeAdd([data])
|
if (res.code === '200') {
|
this.$message.success('添加成功!')
|
await this.getRoleTypeSearch()
|
}
|
},
|
// 设置表单取消事件
|
formSettingCancel(row) {
|
this.RoleTypeCodeArr.forEach((item, index) => {
|
if (item.isVisible === 1) {
|
this.RoleTypeCodeArr.splice(index, 1)
|
}
|
})
|
},
|
|
/* 关联用户模块*/
|
userClick(row) {
|
this.userDialogVisible = true
|
this.userForm.roleName = row.role_name
|
this.userForm.roleCode = row.role_code
|
this.getRoleAssociationUser()
|
},
|
async getRoleAssociationUser() {
|
const res = await RoleAssociationUser(this.dialogFormUser)
|
this.dialogFormUserTable = res.data
|
this.dialogFormUserTableLength = res.count
|
|
this.$nextTick(() => {
|
this.dialogFormUserTable.forEach((item, index) => {
|
if (item.flag === 'Y') {
|
this.$refs.multipleTable.toggleRowSelection(this.dialogFormUserTable[index], true)
|
}
|
})
|
})
|
},
|
// 处理多选 明天使用下拉多选回显试试看
|
handleSelectionChange(val) {
|
val.forEach((item, index) => {
|
this.userMultipleArr.push({ code: item.usercode, name: item.username })
|
})
|
this.userMultipleArr.forEach((item, index) => {
|
if (item.code === this.userSingleCode && this.userSingleCodeFlag) {
|
this.userMultipleArr.splice(index, 1)
|
}
|
})
|
console.log(this.userMultipleArr, 2)
|
},
|
handleSelect(selection, row) {
|
this.userMultipleArr.forEach((item, index) => {
|
if (item.code === row.usercode) {
|
this.userSingleCodeFlag = true
|
// this.userMultipleArr.splice(index, 1)
|
}
|
})
|
// console.log(selection, row, 111)
|
this.userSingleCode = row.usercode
|
console.log(this.userMultipleArr, 1)
|
},
|
sortChangeOfUser({ column, prop, order }) {
|
if (order === 'descending') {
|
order = 'desc'
|
} else if (order === 'ascending') {
|
order = 'asc'
|
} else {
|
order = 'desc'
|
}
|
this.dialogFormUser.order = order
|
this.dialogFormUser.prop = prop
|
this.getRoleAssociationUser()
|
},
|
handleCloseUser() {
|
this.dialogFormUser.usercode = ''
|
this.dialogFormUser.username = ''
|
this.dialogFormUser.orgcode = ''
|
this.dialogFormUser.isrole = ''
|
this.$refs.dialogCascaderUser.checkedValue = ''
|
},
|
userDialogVisibleCancel() {
|
this.userDialogVisible = false
|
},
|
async userDialogVisibleConfirm() {
|
this.userMultipleArr = this.userMultipleArr.filter((currentValue, currentIndex, selfArr) => {
|
return selfArr.findIndex(item => item.code === currentValue.code) === currentIndex
|
})
|
console.log(this.userMultipleArr, 111)
|
// const res = await SaveRoleAssoctUser(this.userMultipleArr, this.userForm.roleCode)
|
// if (res.code === '200') {
|
// this.$message.success('保存成功!')
|
// }
|
},
|
dialogCascaderChange(val) {
|
this.dialogFormUser.orgcode = val[val.length - 1]
|
},
|
// 置空按钮
|
setRoleAssociationUser() {
|
this.dialogFormUser.usercode = ''
|
this.dialogFormUser.username = ''
|
this.dialogFormUser.orgcode = ''
|
this.dialogFormUser.isrole = ''
|
this.$refs.dialogCascaderUser.checkedValue = ''
|
},
|
/* 角色关联权限对话框部分*/
|
rightClick(row) {
|
console.log(row)
|
this.dialogVisibleRight = true
|
this.rightFrom.usercode = row.role_code
|
this.rightFrom.username = row.role_name
|
},
|
handleCloseRight() {
|
|
},
|
rightDialogVisibleCancel() {
|
|
},
|
rightDialogVisibleConfirm() {
|
|
}
|
}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
$main_color: #42b983;
|
::v-deep .el-button--primary {
|
background-color: $main_color !important;
|
height: 30px;
|
display: flex;
|
align-items: center;
|
}
|
|
::v-deep .el-button--info {
|
//background-color: $main_color !important;
|
height: 30px;
|
display: flex;
|
align-items: center;
|
}
|
|
::v-deep .el-pagination.is-background .el-pager li:not(.disabled).active {
|
background-color: $main_color !important;
|
}
|
|
.footerButton {
|
display: flex;
|
justify-content: end;
|
}
|
|
::v-deep .el-button--default {
|
background-color: #ffffff !important;
|
height: 30px;
|
display: flex;
|
align-items: center;
|
}
|
|
::v-deep .el-button--default:hover {
|
color: #606266;
|
}
|
|
::v-deep .el-dialog__body {
|
padding: 20px 100px !important;
|
}
|
|
.settingDialogVisible, .userDialogVisible {
|
::v-deep .el-dialog__body {
|
padding: 10px 20px !important;
|
}
|
}
|
.userDialogVisible{
|
::v-deep .userDialogVisibleInput {
|
//width:calc(100% - 30px) !important;
|
}
|
//::v-deep .el-form-item {
|
// width:calc(100% - 30px) !important;
|
//}
|
}
|
|
::v-deep .el-radio__input.is-checked .el-radio__inner {
|
background-color: $main_color;
|
border-color: $main_color;
|
}
|
|
::v-deep .el-radio__input.is-checked + .el-radio__label {
|
color: $main_color !important;
|
}
|
|
::v-deep .el-checkbox__input.is-checked .el-checkbox__inner {
|
border-color: $main_color;
|
background-color: $main_color;
|
}
|
|
::v-deep .el-input__inner {
|
height: 30px
|
}
|
|
::v-deep .el-table .caret-wrapper {
|
//float: right;
|
transform: scale(0.8);
|
}
|
|
::v-deep .cell {
|
display: flex !important;
|
align-items: center !important;
|
justify-content: space-between !important;
|
}
|
|
::v-deep .el-button--text {
|
color: $main_color;
|
font-size: 14px;
|
cursor: pointer;
|
}
|
|
.operationClass {
|
height: 23px;
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
}
|
|
.el-icon-share, .el-icon-user-solid {
|
color: $main_color;
|
cursor: pointer;
|
}
|
|
.el-checkbox.is-bordered.is-checked {
|
border-color: $main_color;
|
}
|
|
::v-deep .el-radio__input.is-checked .el-radio__inner {
|
border-color: $main_color;
|
background: $main_color;
|
}
|
|
::v-deep .el-checkbox__input.is-indeterminate .el-checkbox__inner {
|
border-color: $main_color;
|
background: $main_color;
|
}
|
|
::v-deep .el-checkbox__input.is-checked + .el-checkbox__label {
|
color: $main_color !important;
|
}
|
|
::v-deep .el-checkbox.is-bordered + .el-checkbox.is-bordered {
|
margin: 10px 30px 0px 0;
|
}
|
|
::v-deep .el-radio__input.is-checked + .el-radio__label {
|
color: $main_color;
|
}
|
|
::v-deep .el-radio.is-bordered + .el-radio.is-bordered {
|
margin: 10px 30px 0px 0;
|
}
|
</style>
|