解决dictData.ts冲突
This commit is contained in:
@@ -3,34 +3,64 @@ import type { ReqPage } from '@/api/interface'
|
||||
// 角色管理模块
|
||||
export namespace Role {
|
||||
|
||||
//资源接口
|
||||
export interface Permission{
|
||||
key: string; //权限名称
|
||||
label: string; //权限ID
|
||||
disabled:boolean; //是否拥有该权限
|
||||
id: string; //资源ID
|
||||
name: string; //资源名称
|
||||
code: string; //资源代码
|
||||
}
|
||||
|
||||
//角色接口
|
||||
export interface RoleBO {
|
||||
id?: string; //角色类型ID
|
||||
name: string; //角色类型名称
|
||||
code: string; //角色代码
|
||||
type: number; //角色类型
|
||||
remark:string; //角色描述
|
||||
}
|
||||
|
||||
//角色+资源
|
||||
export interface ReqRoleAndPermission extends RoleBO{
|
||||
permissionList?:Permission[]; //角色权限列表
|
||||
}
|
||||
|
||||
// 角色+分页
|
||||
export interface ReqRoleParams extends ReqPage,RoleBO {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
// export interface Permission{
|
||||
// key: string; //权限名称
|
||||
// label: string; //权限ID
|
||||
// disabled:boolean; //是否拥有该权限
|
||||
// }
|
||||
|
||||
// 角色列表
|
||||
export interface ResRoleList {
|
||||
id: string; //角色类型ID
|
||||
rolename: string; //角色类型名称
|
||||
status: number; //角色类型状态
|
||||
describe:string; //角色描述
|
||||
permissionList?:Permission[]; //角色权限列表
|
||||
}
|
||||
// export interface ResRoleList {
|
||||
// id: string; //角色类型ID
|
||||
// rolename: string; //角色类型名称
|
||||
// status: number; //角色类型状态
|
||||
// describe:string; //角色描述
|
||||
// permissionList?:Permission[]; //角色权限列表
|
||||
// }
|
||||
|
||||
// 角色参数
|
||||
export interface ReqRoleParams extends ReqPage {
|
||||
id: string; //角色类型ID
|
||||
rolename: string; //角色类型名称
|
||||
status: number; //角色类型状态
|
||||
describe:string; //角色描述
|
||||
permissionList?:Permission[]; //角色权限列表
|
||||
}
|
||||
|
||||
|
||||
|
||||
// export interface ReqRoleParams extends ReqPage {
|
||||
// id: string; //角色类型ID
|
||||
// rolename: string; //角色类型名称
|
||||
// status: number; //角色类型状态
|
||||
// describe:string; //角色描述
|
||||
// permissionList?:Permission[]; //角色权限列表
|
||||
// }
|
||||
// 角色字典
|
||||
export interface ResStatus {
|
||||
roleLabel: string;
|
||||
roleValue: number;
|
||||
}
|
||||
// export interface ResStatus {
|
||||
// roleLabel: string;
|
||||
// roleValue: number;
|
||||
// }
|
||||
|
||||
// export interface ResGender {
|
||||
// genderLabel: string;
|
||||
@@ -38,11 +68,11 @@ export namespace Role {
|
||||
// }
|
||||
|
||||
//角色权限列表
|
||||
export interface ResPermissionList {
|
||||
key: string;
|
||||
label: string;
|
||||
disable?: Permission[];
|
||||
}
|
||||
// export interface ResPermissionList {
|
||||
// key: string;
|
||||
// label: string;
|
||||
// disable?: Permission[];
|
||||
// }
|
||||
|
||||
// export interface ResRole {
|
||||
// id: string;
|
||||
|
||||
@@ -8,40 +8,60 @@ import http from '@/api'
|
||||
*/
|
||||
// 获取角色列表
|
||||
export const getRoleList = (params: Role.ReqRoleParams) => {
|
||||
return http.post<ResPage<Role.ResRoleList>>(`/RoleList_Post`, params)
|
||||
// return http.post<ResPage<Role.ResRoleList>>(`${rePrefix}/role/list`, params)
|
||||
return http.post<ResPage<Role.RoleBO>>(`/role/list`, params)
|
||||
|
||||
// return http.post<ResPage<Role.ResRoleList>>(`/RoleList_Post`, params)
|
||||
// return http.post<ResPage<Role.ResRoleList>>(`${rePrefix}/role/list`, params)
|
||||
}
|
||||
|
||||
// 新增角色
|
||||
export const addRole = (params: Role.RoleBO) => {
|
||||
return http.post(`/role/add`, params)
|
||||
}
|
||||
|
||||
// 编辑角色
|
||||
export const editRole = (params: Role.RoleBO) => {
|
||||
return http.post(`/role/edit`, params)
|
||||
}
|
||||
|
||||
// 删除角色
|
||||
export const deleteRole = (params: { id: string[] }) => {
|
||||
return http.post(`/role/del`, params)
|
||||
}
|
||||
|
||||
|
||||
// 编辑角色资源
|
||||
export const editRoleAndPermission = (params: Role.ReqRoleAndPermission) => {
|
||||
return http.post(`/role/edit_RoleAndPermission`, params)
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// // 获取树形用户列表
|
||||
// export const getRoleTreeList = (params: Role.ReqRoleParams) => {
|
||||
// return http.post<ResPage<Role.ResRoleList>>(`${rePrefix}/role/tree/list`, params)
|
||||
// }
|
||||
|
||||
// 新增角色
|
||||
export const addRole = (params: { id: string }) => {
|
||||
return http.post(`/RoleList_Add`, params)
|
||||
}
|
||||
// export const addRole = (params: { id: string ; rolename: string;status: number; describe:string; }) => {
|
||||
// return http.post(`/RoleList_Add`, params)
|
||||
// }
|
||||
|
||||
// 批量添加角色
|
||||
export const BatchAddRole = (params: FormData) => {
|
||||
return http.post(`${rePrefix}/role/import`, params)
|
||||
}
|
||||
// export const BatchAddRole = (params: FormData) => {
|
||||
// return http.post(`${rePrefix}/role/import`, params)
|
||||
// }
|
||||
|
||||
// 编辑角色
|
||||
export const editRole = (params: { id: string }) => {
|
||||
return http.post(`${rePrefix}/role/edit`, params)
|
||||
}
|
||||
|
||||
// 删除角色
|
||||
export const deleteRole = (params: { id: string[] }) => {
|
||||
return http.post(`/RoleList_Del`, params)
|
||||
}
|
||||
|
||||
// 切换角色状态
|
||||
export const changeRoleStatus = (params: { id: string; status: number }) => {
|
||||
return http.post(`${rePrefix}/role/change`, params)
|
||||
}
|
||||
// // 切换角色状态
|
||||
// export const changeRoleStatus = (params: { id: string; status: number }) => {
|
||||
// return http.post(`${rePrefix}/role/change`, params)
|
||||
// }
|
||||
|
||||
// 重置用户密码
|
||||
// export const resetUserPassWord = (params: { id: string }) => {
|
||||
@@ -49,14 +69,14 @@ export const changeRoleStatus = (params: { id: string; status: number }) => {
|
||||
// }
|
||||
|
||||
// 导出角色数据
|
||||
export const exportRoleInfo = (params: Role.ReqRoleParams) => {
|
||||
return http.download(`${rePrefix}/role/export`, params)
|
||||
}
|
||||
// export const exportRoleInfo = (params: Role.ReqRoleParams) => {
|
||||
// return http.download(`${rePrefix}/role/export`, params)
|
||||
// }
|
||||
|
||||
// 获取角色状态字典
|
||||
export const getRoleStatus = () => {
|
||||
return http.get<Role.ResStatus[]>(`${rePrefix}/role/status`)
|
||||
}
|
||||
// export const getRoleStatus = () => {
|
||||
// return http.get<Role.ResStatus[]>(`${rePrefix}/role/status`)
|
||||
// }
|
||||
|
||||
// 获取用户性别字典
|
||||
// export const getUserGender = () => {
|
||||
@@ -64,9 +84,9 @@ export const getRoleStatus = () => {
|
||||
// }
|
||||
|
||||
// 获取角色权限列表
|
||||
export const getRoleDepartment = () => {
|
||||
return http.get<Role.ResPermissionList[]>(`${rePrefix}/role/permission`)
|
||||
}
|
||||
// export const getRoleDepartment = () => {
|
||||
// return http.get<Role.ResPermissionList[]>(`${rePrefix}/role/permission`)
|
||||
// }
|
||||
|
||||
// 获取用户角色字典
|
||||
// export const getUserRole = () => {
|
||||
|
||||
@@ -43,6 +43,51 @@ const dictData: Dict[] = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
code: 'type',
|
||||
label: '资源类型',
|
||||
children: [
|
||||
{
|
||||
id: "1",
|
||||
label: '菜单',
|
||||
code: 1,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
label: '按钮',
|
||||
code: 2,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
label: '公共资源',
|
||||
code: 3,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
code: 'roleType',
|
||||
label: '角色类型',
|
||||
children: [
|
||||
{
|
||||
id: "0",
|
||||
label: '超级管理员',
|
||||
code: 0,
|
||||
},
|
||||
{
|
||||
id: "1",
|
||||
label: '管理员',
|
||||
code: 1,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
label: '普通角色',
|
||||
code: 2,
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
|
||||
export default dictData
|
||||
120
frontend/src/views/authority/role/components/rolePopup.vue
Normal file
120
frontend/src/views/authority/role/components/rolePopup.vue
Normal file
@@ -0,0 +1,120 @@
|
||||
<template>
|
||||
<!-- 基础信息弹出框 -->
|
||||
<el-dialog :model-value="dialogVisible" :title="title" v-bind="dialogSmall" @close="handleCancel" width="500" draggable>
|
||||
<div>
|
||||
<el-form :model="data">
|
||||
<el-form-item label="名称" :label-width="100">
|
||||
<el-input v-model="data.name" placeholder="请输入名称" autocomplete="off" />
|
||||
</el-form-item>
|
||||
<el-form-item label="编码" :label-width="100">
|
||||
<el-input v-model="data.code" placeholder="请输入编码" autocomplete="off" />
|
||||
</el-form-item>
|
||||
<el-form-item label="类型" :label-width="100">
|
||||
<el-select v-model="data.type" placeholder="请选择类型" autocomplete="off">
|
||||
<el-option
|
||||
v-for="item in dictStore.getDictData('roleType')"
|
||||
:key="item.id"
|
||||
:label="item.label"
|
||||
:value="item.code"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="描述" :label-width="100">
|
||||
<el-input v-model="data.remark" :rows="2" type="textarea" placeholder="请输入备注" autocomplete="off" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button @click="handleCancel">取消</el-button>
|
||||
<el-button type="primary" @click="handleOK">
|
||||
保存
|
||||
</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-dialog>
|
||||
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { ref,computed } from 'vue'
|
||||
import { Role } from '@/api/role/interface'
|
||||
import {dialogSmall} from '@/utils/elementBind'
|
||||
import { useDictStore } from '@/stores/modules/dict'
|
||||
import {
|
||||
addRole,
|
||||
editRole,
|
||||
} from '@/api/role/role'
|
||||
|
||||
const dictStore = useDictStore()
|
||||
const {dialogVisible,title,data,openType} = defineProps<{
|
||||
dialogVisible:boolean;
|
||||
title:string;
|
||||
openType:string;
|
||||
data:{
|
||||
id?: string; //角色类型ID
|
||||
name: string; //角色类型名称
|
||||
code: string; //角色代码
|
||||
type: number;
|
||||
remark:string; //角色描述
|
||||
}
|
||||
}>();
|
||||
|
||||
// const value = computed({
|
||||
// // get: () => {
|
||||
// // if(title === '新增角色')
|
||||
// // return true
|
||||
// // data.status === 1
|
||||
// // },
|
||||
// // set: (value: boolean) => data.status = value ? 1 : 0
|
||||
// })
|
||||
|
||||
const emit = defineEmits<{
|
||||
(e:'update:visible',value:boolean):void;
|
||||
}>();
|
||||
|
||||
const handleCancel = () => {
|
||||
emit('update:visible',false)
|
||||
}
|
||||
|
||||
const handleOK = () => {
|
||||
|
||||
// const addData:Role.RoleBO = {
|
||||
// name: '', //角色类型名称
|
||||
// code: '', //角色代码
|
||||
// type: 0,
|
||||
// remark:'', //角色描述
|
||||
// }
|
||||
|
||||
// addData.name = data.name
|
||||
// addData.code = data.code
|
||||
console.log(data);
|
||||
if(openType === "add")
|
||||
{
|
||||
addRole(data).then(res => {
|
||||
if(res.code === "200")
|
||||
{
|
||||
ElMessage.success(res.message)
|
||||
updataList()
|
||||
}
|
||||
else
|
||||
ElMessage.error(res.message)
|
||||
})
|
||||
}
|
||||
|
||||
if(openType === "edit")
|
||||
{
|
||||
editRole(data).then(res => {
|
||||
if(res.code === "200")
|
||||
{
|
||||
ElMessage.success(res.message)
|
||||
updataList()
|
||||
}
|
||||
else
|
||||
ElMessage.error(res.message)
|
||||
})
|
||||
}
|
||||
emit('update:visible',false)
|
||||
}
|
||||
|
||||
</script>
|
||||
@@ -1,84 +0,0 @@
|
||||
<template>
|
||||
<!-- 基础信息弹出框 -->
|
||||
<el-dialog :model-value="dialogVisible" :title="title" v-bind="dialogSmall" @close="handleCancel" width="500" draggable>
|
||||
<div>
|
||||
<el-form :model="data">
|
||||
<el-form-item label="名称" :label-width="100">
|
||||
<el-input v-model="data.rolename" placeholder="请输入名称" autocomplete="off" />
|
||||
</el-form-item>
|
||||
<el-form-item label="编码" :label-width="100">
|
||||
<el-input v-model="data.id" placeholder="请输入编码" autocomplete="off" />
|
||||
</el-form-item>
|
||||
<el-form-item label="状态" :label-width="100">
|
||||
<el-switch
|
||||
v-model=value
|
||||
inline-prompt
|
||||
style="--el-switch-on-color: #13ce66; --el-switch-off-color: #ff4949"
|
||||
active-text="启用"
|
||||
inactive-text="禁用"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" :label-width="100">
|
||||
<el-input v-model="data.describe" :rows="2" type="textarea" placeholder="请输入备注" autocomplete="off" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button @click="handleCancel">取消</el-button>
|
||||
<el-button type="primary" @click="handleOK">
|
||||
保存
|
||||
</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-dialog>
|
||||
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { ref,computed } from 'vue'
|
||||
import {dialogSmall} from '@/utils/elementBind'
|
||||
import {
|
||||
addRole,
|
||||
} from '@/api/role/role'
|
||||
|
||||
const {dialogVisible,title,data,updataList} = defineProps<{
|
||||
dialogVisible:boolean;
|
||||
title:string;
|
||||
data:{
|
||||
rolename:string;
|
||||
id:string;
|
||||
status:number;
|
||||
describe:string;
|
||||
}
|
||||
updataList:Function
|
||||
}>();
|
||||
|
||||
const value = computed({
|
||||
get: () => {
|
||||
if(title === '新增角色')
|
||||
return true
|
||||
data.status === 1
|
||||
},
|
||||
set: (value: boolean) => data.status = value ? 1 : 0
|
||||
})
|
||||
|
||||
const emit = defineEmits<{
|
||||
(e:'update:visible',value:boolean):void;
|
||||
}>();
|
||||
|
||||
const handleCancel = () => {
|
||||
emit('update:visible',false)
|
||||
}
|
||||
|
||||
const handleOK = () => {
|
||||
addRole(data).then(res => {
|
||||
if(res.code === "200")
|
||||
ElMessage.success(res.message)
|
||||
|
||||
updataList()
|
||||
})
|
||||
emit('update:visible',false)
|
||||
}
|
||||
|
||||
</script>
|
||||
@@ -1,254 +1,234 @@
|
||||
<template>
|
||||
<div class='table-box'>
|
||||
<ProTable
|
||||
ref='proTable'
|
||||
:columns='columns'
|
||||
:data='roleData'
|
||||
>
|
||||
<!-- :requestApi="getRoleList" -->
|
||||
<!-- 表格 header 按钮 -->
|
||||
<template #tableHeader='scope'>
|
||||
<el-button type='primary' :icon='CirclePlus' @click="openDrawer('新增角色')">新增</el-button>
|
||||
<el-button type='primary' :icon='Download' plain @click='downloadFile'>导出数据</el-button>
|
||||
<el-button type='danger' :icon='Delete' plain :disabled='!scope.isSelected'
|
||||
@click='batchDelete(scope.selectedListIds)'>
|
||||
批量删除
|
||||
</el-button>
|
||||
</template>
|
||||
<!-- 表格操作 -->
|
||||
<template #operation='scope'>
|
||||
<el-button type='primary' link :icon='EditPen' @click="openDrawer('编辑角色', scope.row)">编辑</el-button>
|
||||
<el-button type='primary' link :icon='Delete' @click='deleteAccount(scope.row)'>删除</el-button>
|
||||
<el-button type='primary' link :icon='Share' @click="openDrawer('设置权限', scope.row)">设置权限</el-button>
|
||||
<div class='table-box'>
|
||||
<ProTable
|
||||
ref='proTable'
|
||||
:columns='columns'
|
||||
:request-api="getTableList"
|
||||
:data-callback="dataCallback"
|
||||
>
|
||||
<!-- :requestApi="getRoleList" -->
|
||||
<!-- 表格 header 按钮 -->
|
||||
<template #tableHeader='scope'>
|
||||
<el-button type='primary' :icon='CirclePlus' @click="openDrawer('新增角色')">新增</el-button>
|
||||
<el-button type='primary' :icon='Download' plain>导出数据</el-button>
|
||||
<el-button type='danger' :icon='Delete' plain :disabled='!scope.isSelected'
|
||||
@click='batchDelete(scope.selectedListIds)'>
|
||||
批量删除
|
||||
</el-button>
|
||||
</template>
|
||||
<!-- 表格操作 -->
|
||||
<template #operation='scope'>
|
||||
<el-button type='primary' link :icon='EditPen' @click="openDrawer('编辑角色', scope.row)">编辑</el-button>
|
||||
<el-button type='primary' link :icon='Delete' @click='deleteAccount(scope.row)'>删除</el-button>
|
||||
<el-button type='primary' link :icon='Share' @click="openDrawer('设置权限', scope.row)">设置权限</el-button>
|
||||
</template>
|
||||
|
||||
</ProTable>
|
||||
</div>
|
||||
<roleUnit
|
||||
:dialogVisible = roleUnitVisible
|
||||
:title = roleUnitTitle
|
||||
:data = roleUnitData
|
||||
:updataList = "updataList"
|
||||
@update:visible="roleUnitVisible = $event"
|
||||
/>
|
||||
<permissionUnit
|
||||
:dialogVisible = permissionUnitVisible
|
||||
:title = permissionUnitTitle
|
||||
:data = permissionUnitData
|
||||
@update:visible="permissionUnitVisible = $event"
|
||||
</ProTable>
|
||||
</div>
|
||||
<rolePopup
|
||||
:dialogVisible=rolePopupVisible
|
||||
:title=rolePopupTitle
|
||||
:data=rolePopupData
|
||||
:openType=openType
|
||||
@update:visible='rolePopupVisible = $event'
|
||||
/>
|
||||
</template>
|
||||
<permissionUnit
|
||||
:dialogVisible=permissionUnitVisible
|
||||
:title=permissionUnitTitle
|
||||
:data=permissionUnitData
|
||||
@update:visible='permissionUnitVisible = $event'
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script setup lang='tsx' name='useRole'>
|
||||
import { Role } from '@/api/role/interface'
|
||||
import { useHandleData } from '@/hooks/useHandleData'
|
||||
import { useDownload } from '@/hooks/useDownload'
|
||||
import { useAuthButtons } from '@/hooks/useAuthButtons'
|
||||
import ProTable from '@/components/ProTable/index.vue'
|
||||
import roleUnit from './components/roleUnit.vue'
|
||||
import permissionUnit from './components/permissionUnit.vue'
|
||||
import ImportExcel from '@/components/ImportExcel/index.vue'
|
||||
import { ProTableInstance, ColumnProps } from '@/components/ProTable/interface'
|
||||
<script setup lang='tsx' name='useRole'>
|
||||
import { Role } from '@/api/role/interface'
|
||||
import { useHandleData } from '@/hooks/useHandleData'
|
||||
import { useDownload } from '@/hooks/useDownload'
|
||||
import { useAuthButtons } from '@/hooks/useAuthButtons'
|
||||
import ProTable from '@/components/ProTable/index.vue'
|
||||
import rolePopup from './components/rolePopup.vue'
|
||||
import permissionUnit from './components/permissionUnit.vue'
|
||||
import ImportExcel from '@/components/ImportExcel/index.vue'
|
||||
import { ProTableInstance, ColumnProps } from '@/components/ProTable/interface'
|
||||
|
||||
import { CirclePlus, Delete, EditPen, Share, Download, Upload, View, Refresh } from '@element-plus/icons-vue'
|
||||
import roleDataList from '@/api/role/roleData'
|
||||
import { useDictStore } from '@/stores/modules/dict'
|
||||
import {
|
||||
getRoleList,
|
||||
addRole,
|
||||
BatchAddRole,
|
||||
editRole,
|
||||
deleteRole,
|
||||
changeRoleStatus,
|
||||
exportRoleInfo,
|
||||
getRoleDepartment,
|
||||
|
||||
getRoleStatus,
|
||||
} from '@/api/role/role'
|
||||
import { CirclePlus, Delete, EditPen, Share, Download, Upload, View, Refresh } from '@element-plus/icons-vue'
|
||||
import { useDictStore } from '@/stores/modules/dict'
|
||||
import {
|
||||
getRoleList,
|
||||
addRole,
|
||||
editRole,
|
||||
deleteRole,
|
||||
} from '@/api/role/role'
|
||||
import { deleteUser } from '@/api/user/user'
|
||||
|
||||
const {roleUnitVisible,permissionUnitVisible,roleUnitTitle,permissionUnitTitle,roleUnitData,permissionUnitData} = useCount();
|
||||
function useCount() {
|
||||
const roleUnitVisible = ref(false)
|
||||
const permissionUnitVisible = ref(false)
|
||||
const roleUnitTitle = ref()
|
||||
const permissionUnitTitle = ref()
|
||||
const roleUnitData = ref<Role.ResRoleList>({} as Role.ResRoleList)
|
||||
const permissionUnitData = ref<Role.ResRoleList>({} as Role.ResRoleList)
|
||||
// const permissionUnitData = ref<Role.Permission[]>([])
|
||||
return {roleUnitVisible,permissionUnitVisible,roleUnitTitle,permissionUnitTitle,roleUnitData,permissionUnitData};
|
||||
|
||||
const { rolePopupVisible, permissionUnitVisible, rolePopupTitle, permissionUnitTitle, rolePopupData, permissionUnitData } = useCount()
|
||||
|
||||
function useCount() {
|
||||
const rolePopupVisible = ref(false)
|
||||
const permissionUnitVisible = ref(false)
|
||||
const rolePopupTitle = ref()
|
||||
const permissionUnitTitle = ref()
|
||||
const rolePopupData = ref<Role.RoleBO>({} as Role.RoleBO)
|
||||
const permissionUnitData = ref<Role.RoleBO>({} as Role.RoleBO)
|
||||
// const permissionUnitData = ref<Role.Permission[]>([])
|
||||
return { rolePopupVisible, permissionUnitVisible, rolePopupTitle, permissionUnitTitle, rolePopupData, permissionUnitData }
|
||||
}
|
||||
|
||||
const dictStore = useDictStore()
|
||||
let openType = ''
|
||||
|
||||
|
||||
// ProTable 实例
|
||||
const proTable = ref<ProTableInstance>()
|
||||
|
||||
|
||||
|
||||
// dataCallback 是对于返回的表格数据做处理,如果你后台返回的数据不是 list && total 这些字段,可以在这里进行处理成这些字段
|
||||
// 或者直接去 hooks/useTable.ts 文件中把字段改为你后端对应的就行
|
||||
const dataCallback = (data: any) => {
|
||||
return {
|
||||
list: data.list,
|
||||
total: Number(data.total),
|
||||
pageNum: Number(data.pageNum),
|
||||
pageSize: Number(data.pageSize),
|
||||
}
|
||||
}
|
||||
|
||||
// 如果你想在请求之前对当前请求参数做一些操作,可以自定义如下函数:params 为当前所有的请求参数(包括分页),最后返回请求列表接口
|
||||
// 默认不做操作就直接在 ProTable 组件上绑定 :requestApi="getUserList"
|
||||
const getTableList = (params: any) => {
|
||||
let newParams = JSON.parse(JSON.stringify(params))
|
||||
newParams.createTime && (newParams.startTime = newParams.createTime[0])
|
||||
newParams.createTime && (newParams.endTime = newParams.createTime[1])
|
||||
delete newParams.createTime
|
||||
return getRoleList(newParams)
|
||||
}
|
||||
|
||||
// 页面按钮权限(按钮权限既可以使用 hooks,也可以直接使用 v-auth 指令,指令适合直接绑定在按钮上,hooks 适合根据按钮权限显示不同的内容)
|
||||
const { BUTTONS } = useAuthButtons()
|
||||
|
||||
// 表格配置项
|
||||
const columns = reactive<ColumnProps<Role.RoleBO>[]>([
|
||||
{ type: 'selection', fixed: 'left', width: 70 },
|
||||
{ type: 'index', fixed: 'left', width: 70, label: '序号' },
|
||||
{
|
||||
prop: 'name',
|
||||
label: '名称',
|
||||
search: { el: 'input' },
|
||||
minWidth: 150,
|
||||
},
|
||||
{
|
||||
prop: 'code',
|
||||
label: '编码',
|
||||
search: { el: 'input' },
|
||||
minWidth: 180,
|
||||
},
|
||||
{
|
||||
prop: 'Type',
|
||||
label: '类型',
|
||||
enum: dictStore.getDictData('roleType'),
|
||||
fieldNames: { label: 'label', value: 'code' },
|
||||
search: { el: 'input' },
|
||||
minWidth: 180,
|
||||
},
|
||||
{
|
||||
prop: 'remark',
|
||||
label: '描述',
|
||||
minWidth: 380,
|
||||
},
|
||||
{ prop: 'operation', label: '操作', fixed: 'right', width: 330 },
|
||||
])
|
||||
|
||||
// 删除角色信息
|
||||
const deleteAccount = async (params: Role.RoleBO) => {
|
||||
if (params.id) {
|
||||
let deleteData = { id: [params.id] }
|
||||
deleteRole(deleteData).then(res => {
|
||||
if (res.code === '200') {
|
||||
ElMessage.success(res.message)
|
||||
proTable.value?.getTableList();
|
||||
} else
|
||||
ElMessage.error(res.message)
|
||||
})
|
||||
}
|
||||
|
||||
const dictStore = useDictStore()
|
||||
}
|
||||
|
||||
//const roleData = roleDataList
|
||||
const roleData = ref<Role.ResRoleList[]>([])
|
||||
// 批量删除角色信息
|
||||
const batchDelete = async (id: string[]) => {
|
||||
await useHandleData(deleteRole, { id }, '删除所选角色信息')
|
||||
proTable.value?.clearSelection()
|
||||
proTable.value?.getTableList()
|
||||
}
|
||||
|
||||
function updataList() {
|
||||
getRoleList({
|
||||
id: '',
|
||||
rolename: '',
|
||||
status: 0,
|
||||
describe: '',
|
||||
pageNum: 1,
|
||||
pageSize: 10
|
||||
}).then(res => {
|
||||
if(res.code == '200') {
|
||||
roleData.value = res.data.list
|
||||
// 切换角色状态
|
||||
const changeStatus = async (row: Role.RoleBO) => {
|
||||
// await useHandleData(changeRoleStatus, {
|
||||
// id: row.id,
|
||||
// status: row.status == 1 ? 0 : 1,
|
||||
// }, `切换【${row.rolename}】角色状态`)
|
||||
// proTable.value?.getTableList()
|
||||
}
|
||||
|
||||
console.log(11111);
|
||||
|
||||
}
|
||||
})
|
||||
}
|
||||
updataList()
|
||||
// 导出角色列表
|
||||
//const downloadFile = async () => {
|
||||
// ElMessageBox.confirm('确认导出角色数据?', '温馨提示', { type: 'warning' }).then(() =>
|
||||
// useDownload(exportRoleInfo, '角色列表', proTable.value?.searchParam),
|
||||
// )
|
||||
//}
|
||||
|
||||
// ProTable 实例
|
||||
const proTable = ref<ProTableInstance>()
|
||||
// 批量添加角色
|
||||
const dialogRef = ref<InstanceType<typeof ImportExcel> | null>(null)
|
||||
const batchAdd = () => {
|
||||
// const params = {
|
||||
// title: '角色',
|
||||
// tempApi: exportRoleInfo,
|
||||
// importApi: BatchAddRole,
|
||||
// getTableList: proTable.value?.getTableList,
|
||||
// }
|
||||
// dialogRef.value?.acceptParams(params)
|
||||
}
|
||||
|
||||
// 如果表格需要初始化请求参数,直接定义传给 ProTable (之后每次请求都会自动带上该参数,此参数更改之后也会一直带上,改变此参数会自动刷新表格数据)
|
||||
const initParam = reactive({ type: 1 })
|
||||
// 打开 drawer(新增、查看、编辑)
|
||||
const openDrawer = (title: string, row: Partial<Role.RoleBO> = {}) => {
|
||||
if (title === '新增角色' || title === '编辑角色') {
|
||||
if (title === '新增角色')
|
||||
openType = 'add'
|
||||
else if (title === '编辑角色')
|
||||
openType = 'edit'
|
||||
|
||||
// dataCallback 是对于返回的表格数据做处理,如果你后台返回的数据不是 list && total 这些字段,可以在这里进行处理成这些字段
|
||||
// 或者直接去 hooks/useTable.ts 文件中把字段改为你后端对应的就行
|
||||
const dataCallback = (data: any) => {
|
||||
return {
|
||||
list: data.list,
|
||||
total: data.total,
|
||||
rolePopupVisible.value = true
|
||||
rolePopupTitle.value = title
|
||||
|
||||
const safeRow: Role.RoleBO = {
|
||||
id: row.id || '',
|
||||
name: row.name || '',
|
||||
code: row.code || '',
|
||||
type: row.type || 0,
|
||||
remark: row.remark || '',
|
||||
}
|
||||
}
|
||||
|
||||
// 如果你想在请求之前对当前请求参数做一些操作,可以自定义如下函数:params 为当前所有的请求参数(包括分页),最后返回请求列表接口
|
||||
// 默认不做操作就直接在 ProTable 组件上绑定 :requestApi="getUserList"
|
||||
const getTableList = (params: any) => {
|
||||
let newParams = JSON.parse(JSON.stringify(params))
|
||||
newParams.createTime && (newParams.startTime = newParams.createTime[0])
|
||||
newParams.createTime && (newParams.endTime = newParams.createTime[1])
|
||||
delete newParams.createTime
|
||||
return getRoleList(newParams)
|
||||
}
|
||||
rolePopupData.value = safeRow
|
||||
} else if (title === '设置权限') {
|
||||
permissionUnitVisible.value = true
|
||||
permissionUnitTitle.value = title
|
||||
|
||||
// 页面按钮权限(按钮权限既可以使用 hooks,也可以直接使用 v-auth 指令,指令适合直接绑定在按钮上,hooks 适合根据按钮权限显示不同的内容)
|
||||
const { BUTTONS } = useAuthButtons()
|
||||
|
||||
// 表格配置项
|
||||
const columns = reactive<ColumnProps<Role.ResRoleList>[]>([
|
||||
{ type: 'selection', fixed: 'left', width: 70 },
|
||||
{ type: 'index', fixed: 'left', width: 70, label: '序号' },
|
||||
{
|
||||
prop: 'rolename',
|
||||
label: '名称',
|
||||
search: { el: 'input' },
|
||||
minWidth: 150,
|
||||
},
|
||||
{
|
||||
prop: 'id',
|
||||
|
||||
label: '编码',
|
||||
search: { el: 'input' },
|
||||
minWidth: 180,
|
||||
},
|
||||
{
|
||||
prop: 'describe',
|
||||
label: '描述',
|
||||
minWidth: 380,
|
||||
},
|
||||
{
|
||||
prop: 'status',
|
||||
|
||||
label: '状态',
|
||||
enum: dictStore.getDictData('status'),
|
||||
search: { el: 'tree-select', props: { filterable: true } },
|
||||
|
||||
minWidth: 100,
|
||||
fieldNames: { label: 'label', value: 'code' },
|
||||
render: scope => {
|
||||
return (
|
||||
<el-tag type={scope.row.status ? 'success' : 'danger'}>{scope.row.status ? '启用' : '禁用'}</el-tag>
|
||||
)
|
||||
},
|
||||
},
|
||||
{ prop: 'operation', label: '操作', fixed: 'right', width: 330 },
|
||||
])
|
||||
|
||||
// 删除角色信息
|
||||
const deleteAccount = async (params: Role.ResRoleList) => {
|
||||
await useHandleData(deleteRole, { id: [params.id] }, `删除【${params.rolename}】角色`)
|
||||
proTable.value?.getTableList()
|
||||
updataList()
|
||||
}
|
||||
|
||||
// 批量删除角色信息
|
||||
const batchDelete = async (id: string[]) => {
|
||||
await useHandleData(deleteRole, { id }, '删除所选角色信息')
|
||||
proTable.value?.clearSelection()
|
||||
proTable.value?.getTableList()
|
||||
}
|
||||
|
||||
// 切换角色状态
|
||||
const changeStatus = async (row: Role.ResRoleList) => {
|
||||
await useHandleData(changeRoleStatus, {
|
||||
id: row.id,
|
||||
status: row.status == 1 ? 0 : 1,
|
||||
}, `切换【${row.rolename}】角色状态`)
|
||||
proTable.value?.getTableList()
|
||||
}
|
||||
|
||||
// 导出角色列表
|
||||
const downloadFile = async () => {
|
||||
ElMessageBox.confirm('确认导出角色数据?', '温馨提示', { type: 'warning' }).then(() =>
|
||||
useDownload(exportRoleInfo, '角色列表', proTable.value?.searchParam),
|
||||
)
|
||||
}
|
||||
|
||||
// 批量添加角色
|
||||
const dialogRef = ref<InstanceType<typeof ImportExcel> | null>(null)
|
||||
const batchAdd = () => {
|
||||
const params = {
|
||||
title: '角色',
|
||||
tempApi: exportRoleInfo,
|
||||
importApi: BatchAddRole,
|
||||
getTableList: proTable.value?.getTableList,
|
||||
const safeRow: Role.RoleBO = {
|
||||
id: row.id || '',
|
||||
name: row.name || '',
|
||||
code: row.code || '',
|
||||
type: row.type || 0,
|
||||
remark: row.remark || '',
|
||||
}
|
||||
dialogRef.value?.acceptParams(params)
|
||||
|
||||
permissionUnitData.value = safeRow
|
||||
|
||||
// if (row.permissionList)
|
||||
// {
|
||||
// permissionUnitData.value = row.permissionList;
|
||||
// }
|
||||
}
|
||||
|
||||
// 打开 drawer(新增、查看、编辑)
|
||||
const openDrawer = (title: string, row: Partial<Role.ResRoleList> = {}) => {
|
||||
if(title === "新增角色" || title === '编辑角色' )
|
||||
{
|
||||
roleUnitVisible.value = true
|
||||
roleUnitTitle.value = title
|
||||
|
||||
const safeRow: Role.ResRoleList = {
|
||||
id: row.id || '',
|
||||
rolename: row.rolename || '',
|
||||
status: row.status || 0,
|
||||
describe: row.describe || '',
|
||||
permissionList: row.permissionList || []
|
||||
};
|
||||
|
||||
roleUnitData.value = safeRow;
|
||||
}
|
||||
else if(title === "设置权限")
|
||||
{
|
||||
permissionUnitVisible.value = true
|
||||
permissionUnitTitle.value = title
|
||||
|
||||
const safeRow: Role.ResRoleList = {
|
||||
id: row.id || '',
|
||||
rolename: row.rolename || '',
|
||||
status: row.status || 0,
|
||||
describe: row.describe || '',
|
||||
permissionList: row.permissionList || []
|
||||
};
|
||||
|
||||
permissionUnitData.value = safeRow;
|
||||
console.log(111,permissionUnitData);
|
||||
// if (row.permissionList)
|
||||
// {
|
||||
// permissionUnitData.value = row.permissionList;
|
||||
// }
|
||||
}
|
||||
}
|
||||
</script>
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -147,7 +147,7 @@
|
||||
import{ElMessage, FormInstance,FormItemRule}from'element-plus'
|
||||
import { defineProps, defineEmits, reactive,watch,ref, Ref } from 'vue';
|
||||
import { dialogBig,dialogMiddle} from '@/utils/elementBind'
|
||||
import IndicatorTypeDialog from "@/views/machine/errorSystem/components/IndicatorTypeDialog.vue"; // 导入子组件
|
||||
//import IndicatorTypeDialog from "@/views/machine/errorSystem/components/IndicatorTypeDialog.vue"; // 导入子组件
|
||||
import {CirclePlus, Delete, EditPen,FolderOpened,CopyDocument} from '@element-plus/icons-vue'
|
||||
const props = defineProps<{
|
||||
visible: boolean;
|
||||
|
||||
Reference in New Issue
Block a user