去除命令 tooltip.

This commit is contained in:
lijiahang
2024-12-13 16:38:58 +08:00
parent dd973a46fc
commit 885446dc58
7 changed files with 10 additions and 7 deletions

View File

@@ -129,7 +129,7 @@ public class CodeGenerators {
private static void printTips() {
String line = AnsiAppender.create()
.append(AnsiForeground.BRIGHT_GREEN.and(AnsiFont.BOLD), "\n:: 代码生成完毕 ^_^ ::\n")
.append(AnsiForeground.BRIGHT_BLUE.and(AnsiFont.BOLD), "- 后端代码复制后请先 clean 父工程\n")
.append(AnsiForeground.BRIGHT_BLUE.and(AnsiFont.BOLD), "- 后端代码复制后请先 clean 模块父工程 (clean dependencies, build dependencies, clean module)\n")
.append(AnsiForeground.BRIGHT_BLUE.and(AnsiFont.BOLD), "- 后端代码需要自行修改缓存逻辑\n")
.append(AnsiForeground.BRIGHT_BLUE.and(AnsiFont.BOLD), "- 后端代码修改完成后请先执行单元测试检测是否正常\n")
.append(AnsiForeground.BRIGHT_BLUE.and(AnsiFont.BOLD), "- vue 代码需要注意同一模块的 router 需要自行合并\n")

View File

@@ -59,7 +59,9 @@
</template>
<!-- 模板命令 -->
<template #command="{ record }">
<span class="copy-left" @click="copy(record.command, true)">
<span class="copy-left"
title="复制"
@click="copy(record.command, true)">
<icon-copy />
</span>
<span :title="record.command">{{ record.command }}</span>

View File

@@ -20,8 +20,8 @@ const columns = [
dataIndex: 'command',
slotName: 'command',
align: 'left',
minWidth: 238,
ellipsis: true,
minWidth: 238,
}, {
title: '执行用户',
dataIndex: 'username',

View File

@@ -106,7 +106,7 @@
@click="copy(record.command, true)">
<icon-copy />
</span>
<span>{{ record.command }}</span>
<span :title="record.command">{{ record.command }}</span>
</template>
<!-- 任务状态 -->
<template #status="{ record }">

View File

@@ -31,7 +31,6 @@ const columns = [
align: 'left',
minWidth: 238,
ellipsis: true,
tooltip: true,
}, {
title: '执行用户',
dataIndex: 'execUsername',

View File

@@ -81,7 +81,9 @@
@page-size-change="(size: number) => fetchTableData(1, size)">
<!-- 模板命令 -->
<template #command="{ record }">
<span class="copy-left" @click="copy(record.command, true)">
<span class="copy-left"
title="复制"
@click="copy(record.command, true)">
<icon-copy />
</span>
<span :title="record.command">{{ record.command }}</span>

View File

@@ -1,6 +1,6 @@
-- 默认管理员账号
-- 账号: admin 密码: admin
INSERT INTO `system_user` VALUES (1, 'admin', 'c3284d0f94606de1fd2af172aba15bf3', '管理员', NULL, NULL, NULL, 1, 1, 'INIT', NULL, NOW(), NOW(), '1', '1', 0);
INSERT INTO `system_user` VALUES (1, 'admin', 'c3284d0f94606de1fd2af172aba15bf3', '管理员', NULL, NULL, NULL, 1, 1, 'NEW', NULL, NOW(), NOW(), '1', '1', 0);
-- 角色配置
INSERT INTO `system_role` VALUES (1, '管理员', 'admin', 1, '2023-07-16 21:13:14', '2023-07-17 17:31:29', '1', '1', 0);