This commit is contained in:
jxxghp
2023-07-25 17:16:56 +08:00
parent dce85e9618
commit 6e9819ce51
2 changed files with 2 additions and 12 deletions

View File

@@ -6,7 +6,7 @@ html {
background: var(--initial-loader-bg, #fff);
min-block-size: calc(100% + env(safe-area-inset-top));
overflow-x: hidden;
overflow-y: scroll;
overflow-y: auto;
}
#loading-bg {

View File

@@ -45,14 +45,10 @@ onUnmounted(() => {
<template>
<VCard title="系统进程">
<VTable
:headers="headers"
:items="processList"
item-key="fullName"
class="table-rounded table-list"
class="table-rounded"
hide-default-footer
disable-sort
fixed-header
height="500"
>
<thead>
<tr>
@@ -93,9 +89,3 @@ onUnmounted(() => {
</VTable>
</VCard>
</template>
<style lang="scss" scoped>
.table-list::-webkit-scrollbar {
display: none;
}
</style>