fix: 修复列表页面底部滚动条与表格之间有空白间隙的bug

This commit is contained in:
xiaojunnuo
2026-04-24 00:04:42 +08:00
parent ab4373b26e
commit 71cfcad2a1
5 changed files with 26 additions and 18 deletions
@@ -6,10 +6,10 @@ import { BaseSettings, SysInstallInfo, SysPrivateSettings, SysPublicSettings, Sy
import { getAllSslProviderDomains, setSslProviderReverseProxies } from '@certd/acme-client';
import { cache, logger, mergeUtils, setGlobalProxy } from '@certd/basic';
import { isPlus } from '@certd/plus-core';
import * as dns from 'node:dns';
import { BaseService, setAdminMode } from '../../../basic/index.js';
import { executorQueue } from '../../basic/service/executor-queue.js';
import { isComm, isPlus } from '@certd/plus-core';
const { merge } = mergeUtils;
let lastSaveEnvVars = {};
@@ -73,13 +73,11 @@
margin: 20px;
}
.fs-crud-table {
.ant-table-body {
height: 60vh;
table {
}
}
}
// .fs-crud-table {
// .ant-table-body {
// height:60vh;
// }
// }
body a {
color: #1890ff;
@@ -142,4 +140,5 @@ button.ant-btn.ant-btn-default.isPlus{
color: rgba(233, 233, 233, 0.25);
}
}
}
}
@@ -182,6 +182,7 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat
},
showSelect: false,
createCrudOptions: createCrudOptionsPipeline,
height: "60vh",
crudOptionsOverride: {
actionbar: {
show: false,
@@ -25,6 +25,10 @@
<div class="helper" v-html="t('certd.sys.setting.noticeHelper')"></div>
</a-form-item>
<a-form-item :label="t('certd.sys.setting.bindUrl')">
<a-button class="ml-2" size="small" type="primary" @click="settingsStore.openBindUrlModal()">{{ t("certd.sys.setting.bindUrl") }}</a-button>
</a-form-item>
<a-form-item label=" " :colon="false" :wrapper-col="{ span: 8 }">
<a-button :loading="saveLoading" type="primary" html-type="submit">{{ t("certd.saveButton") }}</a-button>
</a-form-item>