Files
orion-visor/orion-ops-ui/src/views/asset/host-group/index.vue

100 lines
2.4 KiB
Vue
Raw Normal View History

2023-11-10 19:02:38 +08:00
<template>
2023-11-23 19:16:57 +08:00
<div v-if="render" class="view-container">
<a-tabs v-if="render"
class="tabs-container"
:default-active-key="1"
:destroy-on-hide="true"
:justify="true"
:lazy-load="true">
<!-- 左侧导航 -->
<a-tab-pane :key="1" v-permission="['asset:host-group:query']">
<host-group-view-setting />
<template #title>
<icon-unordered-list />
分组配置
</template>
</a-tab-pane>
<!-- 角色分配 -->
<a-tab-pane :key="2" v-permission="['asset:host-group:grant']">
<host-group-view-role-grant />
<template #title>
<icon-safe />
角色授权
</template>
</a-tab-pane>
<!-- 用户分配 -->
<a-tab-pane :key="3" v-permission="['asset:host-group:grant']">
<host-group-view-user-grant />
<template #title>
<icon-user />
用户授权
</template>
</a-tab-pane>
</a-tabs>
2023-11-10 19:02:38 +08:00
</div>
</template>
<script lang="ts">
export default {
name: 'assetHostGroup'
};
</script>
<script lang="ts" setup>
2023-11-23 19:16:57 +08:00
import { ref, onBeforeMount, onUnmounted } from 'vue';
import { useCacheStore } from '@/store';
2023-11-14 15:05:47 +08:00
import { getHostList } from '@/api/asset/host';
2023-11-23 19:16:57 +08:00
import { Message } from '@arco-design/web-vue';
import HostGroupViewSetting from './components/host-group-view-setting.vue';
import HostGroupViewRoleGrant from './components/host-group-view-role-grant.vue';
import HostGroupViewUserGrant from './components/host-group-view-user-grant.vue';
2023-11-10 19:02:38 +08:00
const render = ref(false);
const cacheStore = useCacheStore();
2023-11-14 15:05:47 +08:00
// 加载主机列表
const loadHostList = async () => {
2023-11-10 19:02:38 +08:00
try {
2023-11-14 15:05:47 +08:00
const { data } = await getHostList();
2023-11-10 19:02:38 +08:00
// 设置到缓存
2023-11-14 15:05:47 +08:00
cacheStore.set('hosts', data);
} catch (e) {
2023-11-10 19:02:38 +08:00
Message.error('tag加载失败');
}
};
onBeforeMount(async () => {
// 加载主机列表
2023-11-14 15:05:47 +08:00
await loadHostList();
2023-11-10 19:02:38 +08:00
render.value = true;
});
// 卸载时清除 cache
onUnmounted(() => {
cacheStore.reset('user', 'roles', 'hosts');
});
</script>
<style lang="less" scoped>
2023-11-23 19:16:57 +08:00
.view-container {
display: flex;
2023-11-10 19:02:38 +08:00
width: 100%;
height: 100%;
2023-11-23 19:16:57 +08:00
position: relative;
2023-11-10 19:02:38 +08:00
padding: 16px;
}
2023-11-23 19:16:57 +08:00
.tabs-container {
display: flex;
width: 100%;
height: 100%;
position: relative;
background: #FFF;
}
:deep(.arco-tabs-content) {
padding-top: 0;
}
2023-11-10 19:02:38 +08:00
</style>