mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
feat: v1.7.2
This commit is contained in:
@@ -15,7 +15,7 @@ const config = {
|
|||||||
baseWsUrl: `${(window as any).globalConfig.BaseWsUrl || `${location.protocol == 'https:' ? 'wss:' : 'ws:'}//${getBaseApiUrl()}`}/api`,
|
baseWsUrl: `${(window as any).globalConfig.BaseWsUrl || `${location.protocol == 'https:' ? 'wss:' : 'ws:'}//${getBaseApiUrl()}`}/api`,
|
||||||
|
|
||||||
// 系统版本
|
// 系统版本
|
||||||
version: 'v1.7.1',
|
version: 'v1.7.2',
|
||||||
};
|
};
|
||||||
|
|
||||||
export default config;
|
export default config;
|
||||||
|
|||||||
@@ -46,14 +46,6 @@
|
|||||||
<b :title="column.remark" class="el-text" style="cursor: pointer">
|
<b :title="column.remark" class="el-text" style="cursor: pointer">
|
||||||
{{ column.title }}
|
{{ column.title }}
|
||||||
</b>
|
</b>
|
||||||
|
|
||||||
<span>
|
|
||||||
<SvgIcon
|
|
||||||
color="var(--el-color-primary)"
|
|
||||||
v-if="column.title == nowSortColumn?.columnName"
|
|
||||||
:name="nowSortColumn?.order == 'asc' ? 'top' : 'bottom'"
|
|
||||||
></SvgIcon>
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 字段备注信息 -->
|
<!-- 字段备注信息 -->
|
||||||
@@ -71,6 +63,13 @@
|
|||||||
{{ column.title }}
|
{{ column.title }}
|
||||||
</b>
|
</b>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- 字段列右部分内容 -->
|
||||||
|
<div class="column-right">
|
||||||
|
<span v-if="column.title == nowSortColumn?.columnName">
|
||||||
|
<SvgIcon color="var(--el-color-primary)" :name="nowSortColumn?.order == 'asc' ? 'top' : 'bottom'"></SvgIcon>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -874,7 +873,13 @@ defineExpose({
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: -5px;
|
top: -5px;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
height: 12px;
|
}
|
||||||
|
|
||||||
|
.column-right {
|
||||||
|
position: absolute;
|
||||||
|
top: 2px;
|
||||||
|
right: 0;
|
||||||
|
padding: 2px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -197,13 +197,10 @@
|
|||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</div>
|
</div>
|
||||||
<el-link class="op-page ml10" v-if="!state.counting" :underline="false" @click="handleCount" icon="Stopwatch" title="计数" />
|
|
||||||
<el-link class="op-page ml10" v-if="state.counting" :underline="false" title="计数中...">
|
<el-button @click="handleCount" :loading="state.counting" class="ml10" text bg size="small">
|
||||||
<el-icon class="is-loading">
|
{{ state.showTotal ? `${state.total} 条` : 'count' }}
|
||||||
<Loading />
|
</el-button>
|
||||||
</el-icon>
|
|
||||||
</el-link>
|
|
||||||
<el-text class="op-page font12" v-if="state.showTotal">总 {{ state.total }} 条</el-text>
|
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import "fmt"
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
AppName = "mayfly-go"
|
AppName = "mayfly-go"
|
||||||
Version = "v1.7.1"
|
Version = "v1.7.2"
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetAppInfo() string {
|
func GetAppInfo() string {
|
||||||
|
|||||||
Binary file not shown.
@@ -52,6 +52,7 @@ CREATE TABLE IF NOT EXISTS "t_db_backup" (
|
|||||||
"interval" integer(20),
|
"interval" integer(20),
|
||||||
"start_time" datetime,
|
"start_time" datetime,
|
||||||
"enabled" integer(1),
|
"enabled" integer(1),
|
||||||
|
"enabled_desc" text(64),
|
||||||
"last_status" integer(4),
|
"last_status" integer(4),
|
||||||
"last_result" text(256),
|
"last_result" text(256),
|
||||||
"last_time" datetime,
|
"last_time" datetime,
|
||||||
@@ -80,6 +81,8 @@ CREATE TABLE IF NOT EXISTS "t_db_backup_history" (
|
|||||||
"create_time" datetime,
|
"create_time" datetime,
|
||||||
"is_deleted" integer(1) NOT NULL,
|
"is_deleted" integer(1) NOT NULL,
|
||||||
"delete_time" datetime,
|
"delete_time" datetime,
|
||||||
|
"restoring" integer(1),
|
||||||
|
"deleting" integer(1),
|
||||||
PRIMARY KEY ("id")
|
PRIMARY KEY ("id")
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -196,6 +199,7 @@ CREATE TABLE IF NOT EXISTS "t_db_restore" (
|
|||||||
"interval" integer(20),
|
"interval" integer(20),
|
||||||
"start_time" datetime,
|
"start_time" datetime,
|
||||||
"enabled" integer(1),
|
"enabled" integer(1),
|
||||||
|
"enabled_desc" text(64),
|
||||||
"last_status" integer(4),
|
"last_status" integer(4),
|
||||||
"last_result" text(256),
|
"last_result" text(256),
|
||||||
"last_time" datetime,
|
"last_time" datetime,
|
||||||
@@ -826,6 +830,8 @@ INSERT INTO t_sys_resource (id, pid, ui_path, type, status, name, code, weight,
|
|||||||
INSERT INTO t_sys_resource (id, pid, ui_path, type, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES (153, 150, 'Jra0n7De/pLOA2UYz/', 2, 1, '删除', 'db:sync:del', 1703641342, 'null', 12, 'liuzongyang', 12, 'liuzongyang', '2023-12-27 09:42:22', '2023-12-27 09:42:22', 0, NULL);
|
INSERT INTO t_sys_resource (id, pid, ui_path, type, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES (153, 150, 'Jra0n7De/pLOA2UYz/', 2, 1, '删除', 'db:sync:del', 1703641342, 'null', 12, 'liuzongyang', 12, 'liuzongyang', '2023-12-27 09:42:22', '2023-12-27 09:42:22', 0, NULL);
|
||||||
INSERT INTO t_sys_resource (id, pid, ui_path, type, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES (154, 150, 'Jra0n7De/VBt68CDx/', 2, 1, '启停', 'db:sync:status', 1703641364, 'null', 12, 'liuzongyang', 12, 'liuzongyang', '2023-12-27 09:42:45', '2023-12-27 09:42:45', 0, NULL);
|
INSERT INTO t_sys_resource (id, pid, ui_path, type, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES (154, 150, 'Jra0n7De/VBt68CDx/', 2, 1, '启停', 'db:sync:status', 1703641364, 'null', 12, 'liuzongyang', 12, 'liuzongyang', '2023-12-27 09:42:45', '2023-12-27 09:42:45', 0, NULL);
|
||||||
INSERT INTO t_sys_resource (id, pid, ui_path, type, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES (155, 150, 'Jra0n7De/PigmSGVg/', 2, 1, '日志', 'db:sync:log', 1704266866, 'null', 12, 'liuzongyang', 12, 'liuzongyang', '2024-01-03 15:27:47', '2024-01-03 15:27:47', 0, NULL);
|
INSERT INTO t_sys_resource (id, pid, ui_path, type, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES (155, 150, 'Jra0n7De/PigmSGVg/', 2, 1, '日志', 'db:sync:log', 1704266866, 'null', 12, 'liuzongyang', 12, 'liuzongyang', '2024-01-03 15:27:47', '2024-01-03 15:27:47', 0, NULL);
|
||||||
|
INSERT INTO t_sys_resource (id, pid, ui_path, type, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES (161, 49, 'dbms23ax/xleaiec2/3NUXQFIO/', 2, 1, '数据库备份', 'db:backup', 1705973876, 'null', 1, 'admin', 1, 'admin', '2024-01-23 09:37:56', '2024-01-23 09:37:56', 0, NULL);
|
||||||
|
INSERT INTO t_sys_resource (id, pid, ui_path, type, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES (160, 49, 'dbms23ax/xleaiec2/ghErkTdb/', 2, 1, '数据库恢复', 'db:restore', 1705973909, 'null', 1, 'admin', 1, 'admin', '2024-01-23 09:38:29', '2024-01-23 09:38:29', 0, NULL);
|
||||||
|
|
||||||
-- Table: t_sys_role
|
-- Table: t_sys_role
|
||||||
CREATE TABLE IF NOT EXISTS "t_sys_role" (
|
CREATE TABLE IF NOT EXISTS "t_sys_role" (
|
||||||
|
|||||||
@@ -110,6 +110,7 @@ CREATE TABLE `t_db_backup` (
|
|||||||
`interval` bigint(20) DEFAULT NULL COMMENT '备份周期',
|
`interval` bigint(20) DEFAULT NULL COMMENT '备份周期',
|
||||||
`start_time` datetime DEFAULT NULL COMMENT '首次备份时间',
|
`start_time` datetime DEFAULT NULL COMMENT '首次备份时间',
|
||||||
`enabled` tinyint(1) DEFAULT NULL COMMENT '是否启用',
|
`enabled` tinyint(1) DEFAULT NULL COMMENT '是否启用',
|
||||||
|
`enabled_desc` varchar(64) NULL COMMENT '任务启用描述',
|
||||||
`last_status` tinyint(4) DEFAULT NULL COMMENT '上次备份状态',
|
`last_status` tinyint(4) DEFAULT NULL COMMENT '上次备份状态',
|
||||||
`last_result` varchar(256) DEFAULT NULL COMMENT '上次备份结果',
|
`last_result` varchar(256) DEFAULT NULL COMMENT '上次备份结果',
|
||||||
`last_time` datetime DEFAULT NULL COMMENT '上次备份时间',
|
`last_time` datetime DEFAULT NULL COMMENT '上次备份时间',
|
||||||
@@ -143,6 +144,8 @@ CREATE TABLE `t_db_backup_history` (
|
|||||||
`create_time` datetime DEFAULT NULL COMMENT '历史备份创建时间',
|
`create_time` datetime DEFAULT NULL COMMENT '历史备份创建时间',
|
||||||
`is_deleted` tinyint(1) NOT NULL DEFAULT 0,
|
`is_deleted` tinyint(1) NOT NULL DEFAULT 0,
|
||||||
`delete_time` datetime DEFAULT NULL,
|
`delete_time` datetime DEFAULT NULL,
|
||||||
|
`restoring` int(1) NOT NULL DEFAULT '0' COMMENT '备份历史恢复标识',
|
||||||
|
`deleting` int(1) NOT NULL DEFAULT '0' COMMENT '备份历史删除标识',
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
KEY `idx_db_backup_id` (`db_backup_id`) USING BTREE,
|
KEY `idx_db_backup_id` (`db_backup_id`) USING BTREE,
|
||||||
KEY `idx_db_instance_id` (`db_instance_id`) USING BTREE,
|
KEY `idx_db_instance_id` (`db_instance_id`) USING BTREE,
|
||||||
@@ -161,6 +164,7 @@ CREATE TABLE `t_db_restore` (
|
|||||||
`interval` bigint(20) DEFAULT NULL COMMENT '恢复周期',
|
`interval` bigint(20) DEFAULT NULL COMMENT '恢复周期',
|
||||||
`start_time` datetime DEFAULT NULL COMMENT '首次恢复时间',
|
`start_time` datetime DEFAULT NULL COMMENT '首次恢复时间',
|
||||||
`enabled` tinyint(1) DEFAULT NULL COMMENT '是否启用',
|
`enabled` tinyint(1) DEFAULT NULL COMMENT '是否启用',
|
||||||
|
`enabled_desc` varchar(64) NULL COMMENT '任务启用描述',
|
||||||
`last_status` tinyint(4) DEFAULT NULL COMMENT '上次恢复状态',
|
`last_status` tinyint(4) DEFAULT NULL COMMENT '上次恢复状态',
|
||||||
`last_result` varchar(256) DEFAULT NULL COMMENT '上次恢复结果',
|
`last_result` varchar(256) DEFAULT NULL COMMENT '上次恢复结果',
|
||||||
`last_time` datetime DEFAULT NULL COMMENT '上次恢复时间',
|
`last_time` datetime DEFAULT NULL COMMENT '上次恢复时间',
|
||||||
@@ -570,7 +574,7 @@ CREATE TABLE `t_sys_account` (
|
|||||||
-- Records of t_sys_account
|
-- Records of t_sys_account
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
BEGIN;
|
BEGIN;
|
||||||
INSERT INTO `t_sys_account` VALUES (1, "管理员", 'admin', '$2a$10$w3Wky2U.tinvR7c/s0aKPuwZsIu6pM1/DMJalwBDMbE6niHIxVrrm', 1, '', '2022-10-26 20:03:48', '::1', '2020-01-01 19:00:00', 1, 'admin', '2020-01-01 19:00:00', 1, 'admin', 0, NULL);
|
INSERT INTO `t_sys_account` VALUES (1, '管理员', 'admin', '$2a$10$w3Wky2U.tinvR7c/s0aKPuwZsIu6pM1/DMJalwBDMbE6niHIxVrrm', 1, '', '2022-10-26 20:03:48', '::1', '2020-01-01 19:00:00', 1, 'admin', '2020-01-01 19:00:00', 1, 'admin', 0, NULL);
|
||||||
COMMIT;
|
COMMIT;
|
||||||
|
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
@@ -788,6 +792,8 @@ INSERT INTO t_sys_resource (id, pid, ui_path, `type`, status, name, code, weight
|
|||||||
INSERT INTO t_sys_resource (id, pid, ui_path, `type`, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES(152, 150, 'Jra0n7De/zvAMo2vk/', 2, 1, '编辑', 'db:sync:save', 1703641320, 'null', 12, 'liuzongyang', 12, 'liuzongyang', '2023-12-27 09:42:00', '2023-12-27 09:42:12', 0, NULL);
|
INSERT INTO t_sys_resource (id, pid, ui_path, `type`, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES(152, 150, 'Jra0n7De/zvAMo2vk/', 2, 1, '编辑', 'db:sync:save', 1703641320, 'null', 12, 'liuzongyang', 12, 'liuzongyang', '2023-12-27 09:42:00', '2023-12-27 09:42:12', 0, NULL);
|
||||||
INSERT INTO t_sys_resource (id, pid, ui_path, `type`, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES(151, 150, 'Jra0n7De/uAnHZxEV/', 2, 1, '基本权限', 'db:sync', 1703641202, 'null', 12, 'liuzongyang', 12, 'liuzongyang', '2023-12-27 09:40:02', '2023-12-27 09:40:02', 0, NULL);
|
INSERT INTO t_sys_resource (id, pid, ui_path, `type`, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES(151, 150, 'Jra0n7De/uAnHZxEV/', 2, 1, '基本权限', 'db:sync', 1703641202, 'null', 12, 'liuzongyang', 12, 'liuzongyang', '2023-12-27 09:40:02', '2023-12-27 09:40:02', 0, NULL);
|
||||||
INSERT INTO t_sys_resource (id, pid, ui_path, `type`, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES(150, 36, 'Jra0n7De/', 1, 1, '数据同步', 'sync', 1693040707, '{"component":"ops/db/SyncTaskList","icon":"Coin","isKeepAlive":true,"routeName":"SyncTaskList"}', 12, 'liuzongyang', 12, 'liuzongyang', '2023-12-22 09:51:34', '2023-12-27 10:16:57', 0, NULL);
|
INSERT INTO t_sys_resource (id, pid, ui_path, `type`, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES(150, 36, 'Jra0n7De/', 1, 1, '数据同步', 'sync', 1693040707, '{"component":"ops/db/SyncTaskList","icon":"Coin","isKeepAlive":true,"routeName":"SyncTaskList"}', 12, 'liuzongyang', 12, 'liuzongyang', '2023-12-22 09:51:34', '2023-12-27 10:16:57', 0, NULL);
|
||||||
|
INSERT INTO t_sys_resource (id, pid, ui_path, `type`, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES(161, 49, 'dbms23ax/xleaiec2/3NUXQFIO/', 2, 1, '数据库备份', 'db:backup', 1705973876, 'null', 1, 'admin', 1, 'admin', '2024-01-23 09:37:56', '2024-01-23 09:37:56', 0, NULL);
|
||||||
|
INSERT INTO t_sys_resource (id, pid, ui_path, `type`, status, name, code, weight, meta, creator_id, creator, modifier_id, modifier, create_time, update_time, is_deleted, delete_time) VALUES(160, 49, 'dbms23ax/xleaiec2/ghErkTdb/', 2, 1, '数据库恢复', 'db:restore', 1705973909, 'null', 1, 'admin', 1, 'admin', '2024-01-23 09:38:29', '2024-01-23 09:38:29', 0, NULL);
|
||||||
COMMIT;
|
COMMIT;
|
||||||
|
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
|
|||||||
@@ -9,5 +9,5 @@ ALTER TABLE `t_db_restore`
|
|||||||
ADD COLUMN `enabled_desc` varchar(64) NULL COMMENT '任务启用描述' AFTER `enabled`;
|
ADD COLUMN `enabled_desc` varchar(64) NULL COMMENT '任务启用描述' AFTER `enabled`;
|
||||||
|
|
||||||
ALTER TABLE `t_db_backup_history`
|
ALTER TABLE `t_db_backup_history`
|
||||||
ADD COLUMN `restoring` int(1) NOT NULL DEFAULT(0) COMMENT '备份历史恢复标识',
|
ADD COLUMN `restoring` int(1) NOT NULL DEFAULT '0' COMMENT '备份历史恢复标识',
|
||||||
ADD COLUMN `deleting` int(1) NOT NULL DEFAULT(0) COMMENT '备份历史删除标识';
|
ADD COLUMN `deleting` int(1) NOT NULL DEFAULT '0' COMMENT '备份历史删除标识';
|
||||||
|
|||||||
Reference in New Issue
Block a user