Skip to content

Commit

Permalink
feat:同步并分表存储资源组权限数据 TencentBlueKing#10964
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 20508
  • Loading branch information
useryuyu committed Oct 14, 2024
1 parent db0c917 commit d51ddb2
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<article class="group-aside">
<article :class="{'group-aside': true , 'group-aside-height': showSelectProject}">
<template v-if="showSelectProject">
<div class="select-project">
<p class="title">{{ t('选择项目') }}</p>
Expand Down Expand Up @@ -37,7 +37,7 @@
</div>
<div class="line-split" v-if="!isNotProject" />
</template>
<bk-loading v-if="dataLoaded" :loading="fetchGroupLoading">
<bk-loading v-if="dataLoaded" :loading="fetchGroupLoading" class='saide-content'>
<scroll-load-list
class="group-list"
ref="loadList"
Expand Down Expand Up @@ -518,6 +518,9 @@ export default {
border-right: 1px solid #dde0e6;
padding-top: 10px;
}
.group-aside-height {
height: calc(100% - 89px);
}
.select-project {
padding: 10px 24px 0;
.title {
Expand All @@ -526,6 +529,10 @@ export default {
margin-bottom: 5px;
}
}
.saide-content {
height: 100%;
overflow-y: auto;
}
.group-list {
max-height: calc(100% - 70px);
min-height: 80px;
Expand Down

0 comments on commit d51ddb2

Please sign in to comment.