From 2ff19ba35fa4b872ca8986af575992ded6edadb2 Mon Sep 17 00:00:00 2001 From: thsrite Date: Sun, 9 Jun 2024 19:01:44 +0800 Subject: [PATCH] fix alert --- plugins/commandexecute/__init__.py | 26 ++++++++++++++++++++++++++ plugins/sqlexecute/__init__.py | 26 ++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/plugins/commandexecute/__init__.py b/plugins/commandexecute/__init__.py index 5747647..8d16d91 100644 --- a/plugins/commandexecute/__init__.py +++ b/plugins/commandexecute/__init__.py @@ -198,6 +198,32 @@ class CommandExecute(_PluginBase): ] } ] + }, + { + 'component': 'VRow', + 'content': [ + { + 'component': 'VCol', + 'props': { + 'cols': 12, + }, + 'content': [ + { + 'component': 'VAlert', + 'props': { + 'type': 'info', + 'variant': 'tonal' + }, + 'content': [ + { + 'component': 'span', + 'text': '可使用交互命令/cmd ls' + } + ] + } + ] + } + ] } ] } diff --git a/plugins/sqlexecute/__init__.py b/plugins/sqlexecute/__init__.py index 3aff415..d544aa5 100644 --- a/plugins/sqlexecute/__init__.py +++ b/plugins/sqlexecute/__init__.py @@ -235,6 +235,32 @@ class SqlExecute(_PluginBase): ] } ] + }, + { + 'component': 'VRow', + 'content': [ + { + 'component': 'VCol', + 'props': { + 'cols': 12, + }, + 'content': [ + { + 'component': 'VAlert', + 'props': { + 'type': 'info', + 'variant': 'tonal' + }, + 'content': [ + { + 'component': 'span', + 'text': '可使用交互命令/sql select *****' + } + ] + } + ] + } + ] } ] }