diff --git a/frontend/src/views/cronjob/operate/index.vue b/frontend/src/views/cronjob/operate/index.vue index 3de2d2acc..0de45df66 100644 --- a/frontend/src/views/cronjob/operate/index.vue +++ b/frontend/src/views/cronjob/operate/index.vue @@ -125,7 +125,12 @@
- + + {{ item.name }} + + {{ item.key }} + +
@@ -135,12 +140,15 @@ - + + {{ item.name }} + + {{ item.from === 'local' ? $t('database.local') : $t('database.remote') }} + + + {{ item.database }} + + @@ -609,4 +617,10 @@ defineExpose({ .selectClass { width: 100%; } +.tagClass { + float: right; + margin-right: 10px; + font-size: 12px; + margin-top: 5px; +} diff --git a/frontend/src/views/database/mysql/index.vue b/frontend/src/views/database/mysql/index.vue index cbcf23628..7e08212ab 100644 --- a/frontend/src/views/database/mysql/index.vue +++ b/frontend/src/views/database/mysql/index.vue @@ -27,11 +27,12 @@
- + + {{ item.database }} + + {{ item.type === 'mysql' ? 'MySQL' : 'MariaDB' }} + +
{{ $t('database.goInstall') }} @@ -39,11 +40,12 @@
- + + {{ item.database }} + + {{ item.type === 'mysql' ? 'MySQL' : 'MariaDB' }} + +
{{ $t('database.createRemoteDB') }} @@ -563,6 +565,12 @@ onMounted(() => { .jumpAdd { margin-top: 10px; margin-left: 15px; + margin-bottom: 5px; font-size: 12px; } +.tagClass { + float: right; + font-size: 12px; + margin-top: 5px; +}