234 lines
7.3 KiB
Vue
234 lines
7.3 KiB
Vue
<template>
|
||
<div class="resource-authorization p-16-24">
|
||
<div class="flex align-center mb-16">
|
||
<el-breadcrumb separator-icon="ArrowRight">
|
||
<el-breadcrumb-item>{{ t('views.system.resourceAuthorization.title') }}</el-breadcrumb-item>
|
||
<el-breadcrumb-item>
|
||
<h5 class="ml-4 color-text-primary">{{ activeData.label }}</h5>
|
||
</el-breadcrumb-item>
|
||
</el-breadcrumb>
|
||
<!-- 企业版: 工作空间下拉框-->
|
||
<el-divider
|
||
class="ml-24"
|
||
direction="vertical"
|
||
v-if="hasPermission(EditionConst.IS_EE, 'OR')"
|
||
/>
|
||
<WorkspaceDropdown
|
||
v-if="hasPermission(EditionConst.IS_EE, 'OR')"
|
||
:data="workspaceList"
|
||
:currentWorkspace="currentWorkspace"
|
||
@changeWorkspace="changeWorkspace"
|
||
/>
|
||
</div>
|
||
|
||
<el-card style="--el-card-padding: 0; height: calc(100vh - 140px)">
|
||
<div class="flex">
|
||
<div class="resource-authorization__left border-r">
|
||
<div class="p-24 pb-0">
|
||
<h4 class="mb-12">{{ $t('views.system.resourceAuthorization.member') }}</h4>
|
||
<el-input
|
||
v-model="filterText"
|
||
:placeholder="$t('common.search')"
|
||
prefix-icon="Search"
|
||
clearable
|
||
/>
|
||
</div>
|
||
<div class="list-height-left">
|
||
<el-scrollbar>
|
||
<div class="p-8-16">
|
||
<common-list
|
||
:data="filterMember"
|
||
v-loading="loading"
|
||
@click="clickMemberHandle"
|
||
:default-active="currentUser"
|
||
>
|
||
<template #default="{ row }">
|
||
<div class="flex-between">
|
||
<div class="flex">
|
||
<span class="mr-8 ellipsis-1" :title="row.nick_name">{{
|
||
row.nick_name
|
||
}}</span>
|
||
<el-text
|
||
class="color-input-placeholder ellipsis-1"
|
||
:title="row.roles.join(',')"
|
||
v-if="hasPermission([EditionConst.IS_EE, EditionConst.IS_PE], 'OR')"
|
||
>({{ row.roles?.join(',') }})</el-text
|
||
>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
</common-list>
|
||
</div>
|
||
</el-scrollbar>
|
||
</div>
|
||
</div>
|
||
<PermissionTable
|
||
:data="permissionData"
|
||
:type="activeData.type"
|
||
ref="PermissionTableRef"
|
||
:getData="getPermissionList"
|
||
@submitPermissions="submitPermissions"
|
||
/>
|
||
</div>
|
||
</el-card>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts" setup>
|
||
import { onMounted, ref, reactive, watch, computed } from 'vue'
|
||
import { useRoute } from 'vue-router'
|
||
import PermissionTable from '@/views/system/resource-authorization/component/PermissionTable.vue'
|
||
import { MsgSuccess, MsgConfirm } from '@/utils/message'
|
||
import { SourceTypeEnum } from '@/enums/common'
|
||
import { t } from '@/locales'
|
||
import AuthorizationApi from '@/api/system/resource-authorization'
|
||
import { EditionConst } from '@/utils/permission/data'
|
||
import { hasPermission } from '@/utils/permission/index'
|
||
import type { WorkspaceItem } from '@/api/type/workspace'
|
||
import { loadPermissionApi } from '@/utils/dynamics-api/permission-api.ts'
|
||
|
||
import useStore from '@/stores'
|
||
|
||
const route = useRoute()
|
||
const { user } = useStore()
|
||
const loading = ref(false)
|
||
const rLoading = ref(false)
|
||
const memberList = ref<any[]>([]) // 全部成员
|
||
const filterMember = ref<any[]>([]) // 搜索过滤后列表
|
||
const currentUser = ref<string>('')
|
||
const currentType = ref<string>('')
|
||
const filterText = ref('')
|
||
const permissionData = ref<any[]>([])
|
||
|
||
const settingTags = reactive([
|
||
{
|
||
label: t('views.knowledge.title'),
|
||
type: SourceTypeEnum.KNOWLEDGE,
|
||
},
|
||
{
|
||
label: t('views.application.title'),
|
||
type: SourceTypeEnum.APPLICATION,
|
||
},
|
||
{
|
||
label: t('views.tool.title'),
|
||
type: SourceTypeEnum.TOOL,
|
||
},
|
||
{
|
||
label: t('views.model.title'),
|
||
type: SourceTypeEnum.MODEL,
|
||
},
|
||
])
|
||
// 当前激活的数据类型(应用/知识库/模型/工具)
|
||
const activeData = computed(() => {
|
||
const lastIndex = route.path.lastIndexOf('/')
|
||
const currentPathType = route.path.substring(lastIndex + 1).toUpperCase()
|
||
return settingTags.filter((item) => {
|
||
return item.type === currentPathType
|
||
})[0]
|
||
})
|
||
|
||
watch(filterText, (val: any) => {
|
||
if (val) {
|
||
filterMember.value = memberList.value.filter((v: any) =>
|
||
v.nick_name.toLowerCase().includes(val.toLowerCase()),
|
||
)
|
||
} else {
|
||
filterMember.value = memberList.value
|
||
}
|
||
})
|
||
|
||
function submitPermissions(obj: any) {
|
||
const workspaceId = currentWorkspaceId.value || user.getWorkspaceId() || 'default'
|
||
AuthorizationApi.putResourceAuthorization(
|
||
workspaceId,
|
||
currentUser.value,
|
||
(route.meta?.resource as string) || 'APPLICATION',
|
||
obj,
|
||
rLoading,
|
||
).then(() => {
|
||
MsgSuccess(t('common.submitSuccess'))
|
||
getPermissionList()
|
||
})
|
||
}
|
||
|
||
const PermissionTableRef = ref()
|
||
|
||
const getPermissionList = () => {
|
||
const workspaceId = currentWorkspaceId.value || user.getWorkspaceId() || 'default'
|
||
const params: any = {}
|
||
if (PermissionTableRef.value.searchForm[PermissionTableRef.value.searchType]) {
|
||
params[PermissionTableRef.value.searchType] =
|
||
PermissionTableRef.value.searchForm[PermissionTableRef.value.searchType]
|
||
}
|
||
AuthorizationApi.getResourceAuthorization(
|
||
workspaceId,
|
||
currentUser.value,
|
||
(route.meta?.resource as string) || 'APPLICATION',
|
||
PermissionTableRef.value.paginationConfig,
|
||
params,
|
||
rLoading,
|
||
).then((res) => {
|
||
permissionData.value = res.data.records || []
|
||
PermissionTableRef.value.paginationConfig.total = res.data.total || 0
|
||
})
|
||
}
|
||
|
||
function clickMemberHandle(item: any) {
|
||
currentUser.value = item.id
|
||
currentType.value = item.type
|
||
getPermissionList()
|
||
}
|
||
|
||
function getMember(id?: string) {
|
||
const workspaceId = currentWorkspaceId.value || user.getWorkspaceId() || 'default'
|
||
AuthorizationApi.getUserMember(workspaceId, loading).then((res) => {
|
||
memberList.value = res.data
|
||
filterMember.value = res.data
|
||
if (memberList.value.length > 0) {
|
||
const member = (id && memberList.value.find((p: any) => p.user_id === id)) || null
|
||
currentUser.value = member ? member.id : memberList.value?.[0]?.id
|
||
currentType.value = member ? member.type : memberList.value?.[0]?.type
|
||
getPermissionList()
|
||
} else {
|
||
permissionData.value = []
|
||
}
|
||
})
|
||
}
|
||
|
||
const workspaceList = ref<WorkspaceItem[]>([])
|
||
const currentWorkspaceId = ref<string | undefined>('')
|
||
const currentWorkspace = computed(() => {
|
||
return workspaceList.value.find((w) => w.id == currentWorkspaceId.value)
|
||
})
|
||
async function getWorkspaceList() {
|
||
const res = await loadPermissionApi('workspace').getSystemWorkspaceList(loading)
|
||
workspaceList.value = res.data
|
||
currentWorkspaceId.value = (user.getWorkspaceId() as string) || 'default'
|
||
}
|
||
|
||
function changeWorkspace(item: WorkspaceItem) {
|
||
currentWorkspaceId.value = item.id
|
||
getMember()
|
||
}
|
||
|
||
onMounted(() => {
|
||
if (user.isEE()) {
|
||
getWorkspaceList()
|
||
}
|
||
getMember()
|
||
})
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.resource-authorization {
|
||
.resource-authorization__left {
|
||
box-sizing: border-box;
|
||
width: var(--setting-left-width);
|
||
min-width: var(--setting-left-width);
|
||
}
|
||
.list-height-left {
|
||
height: calc(100vh - 240px);
|
||
}
|
||
}
|
||
</style>
|