feat: oss

This commit is contained in:
dap
2024-10-05 16:38:47 +08:00
parent 8f66be32c1
commit a7512adcec
6 changed files with 502 additions and 62 deletions

View File

@@ -1,6 +1,8 @@
import { DictEnum } from '@vben/constants';
import { type FormSchemaGetter, z } from '#/adapter';
import { Tag } from 'ant-design-vue';
import { type FormSchemaGetter, type VxeGridProps, z } from '#/adapter';
import { getDictOptions } from '#/utils/dict';
const accessPolicyOptions = [
@@ -30,6 +32,56 @@ export const querySchema: FormSchemaGetter = () => [
},
];
export const columns: VxeGridProps['columns'] = [
{ type: 'checkbox', width: 60 },
{
title: '配置名称',
field: 'configKey',
},
{
title: '访问站点',
field: 'endpoint',
showOverflow: true,
},
{
title: '桶名称',
field: 'bucketName',
},
{
title: '域',
field: 'region',
},
{
title: '权限桶类型',
field: 'accessPolicy',
slots: {
default: ({ row }) => {
const current = accessPolicyOptions.find(
(item) => item.value === row.accessPolicy,
);
if (current) {
return <Tag color={current.color}>{current.label}</Tag>;
}
return '未知类型';
},
},
},
{
title: '是否默认',
field: 'status',
slots: {
default: 'status',
},
},
{
field: 'action',
fixed: 'right',
slots: { default: 'action' },
title: '操作',
width: 180,
},
];
export const drawerSchema: FormSchemaGetter = () => [
{
component: 'Input',