From 8b3d7553d3c0c9fc9c264f09fcc4070c8083bedf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E7=BA=A2=E4=B8=BD?= <1181930680@qq.com> Date: Fri, 2 Aug 2024 09:37:06 +0800 Subject: [PATCH] data --- src/views/monitor/dataSource/querySchemas.ts | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/src/views/monitor/dataSource/querySchemas.ts b/src/views/monitor/dataSource/querySchemas.ts index 5544614..65e6b36 100644 --- a/src/views/monitor/dataSource/querySchemas.ts +++ b/src/views/monitor/dataSource/querySchemas.ts @@ -17,13 +17,24 @@ export const schemas: FormSchema[] = [ clearable: true, options: [ { - label: '关系型数据库', - value: '0', + label: 'MySQL', + value: 1, }, { - label: '图形数据库', - value: '1', + label: 'PostgreSQL', + value: 2, }, + { + label: 'SQLServer', + value: 3, + }, + { + label: 'Oracle', + value: 4, + },{ + label: 'Sqlite', + value: 5, + } ], }, },