🐳 添加 docker 配置.
This commit is contained in:
8
orion-ops-ui/components.d.ts
vendored
8
orion-ops-ui/components.d.ts
vendored
@@ -3,13 +3,13 @@
|
||||
// @ts-nocheck
|
||||
// Generated by unplugin-vue-components
|
||||
// Read more: https://github.com/vuejs/core/pull/3399
|
||||
import '@vue/runtime-core';
|
||||
import '@vue/runtime-core'
|
||||
|
||||
export {};
|
||||
export {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
export interface GlobalComponents {
|
||||
RouterLink: typeof import('vue-router')['RouterLink'];
|
||||
RouterView: typeof import('vue-router')['RouterView'];
|
||||
RouterLink: typeof import('vue-router')['RouterLink']
|
||||
RouterView: typeof import('vue-router')['RouterView']
|
||||
}
|
||||
}
|
||||
|
||||
@@ -66,8 +66,8 @@
|
||||
});
|
||||
|
||||
// 修改预览
|
||||
const updatePreview = (v: number) => {
|
||||
formModel.value.permission = permission10toString(v);
|
||||
const updatePreview = (v: number|undefined) => {
|
||||
formModel.value.permission = permission10toString(v as number);
|
||||
};
|
||||
|
||||
// 打开新增
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
:footer="false">
|
||||
<a-spin class="full" :loading="loading">
|
||||
<a-list class="hosts-list-container"
|
||||
size="smail"
|
||||
size="small"
|
||||
max-height="100%"
|
||||
:hoverable="true"
|
||||
:bordered="false"
|
||||
@@ -153,6 +153,10 @@
|
||||
@item-right-width: 42px;
|
||||
@item-center-width: 388px - @item-left-width - @item-right-width;
|
||||
|
||||
:deep(.transfer-item-wrapper) {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.transfer-item {
|
||||
min-height: 36px;
|
||||
padding: 8px 0;
|
||||
|
||||
Reference in New Issue
Block a user