diff --git a/mayfly_go_web/src/common/config.ts b/mayfly_go_web/src/common/config.ts index b2fccc9b..4c43974c 100644 --- a/mayfly_go_web/src/common/config.ts +++ b/mayfly_go_web/src/common/config.ts @@ -11,7 +11,7 @@ const config = { baseWsUrl: `${(window as any).globalConfig.BaseWsUrl || `${location.protocol == 'https:' ? 'wss:' : 'ws:'}//${getBaseApiUrl()}`}/api`, // 系统版本 - version: 'v1.4.2' + version: 'v1.4.3' } export default config \ No newline at end of file diff --git a/mayfly_go_web/src/views/ops/component/TagInfo.vue b/mayfly_go_web/src/views/ops/component/TagInfo.vue index 93bda83f..31ae13dc 100644 --- a/mayfly_go_web/src/views/ops/component/TagInfo.vue +++ b/mayfly_go_web/src/views/ops/component/TagInfo.vue @@ -48,14 +48,17 @@ const showTagInfo = async () => { const tagPaths = []; let nowTag = ''; for (let tagStr of tagStrs) { - if (nowTag) { - nowTag = `${nowTag}/${tagStr}` - } else { - nowTag = tagStr + if (!tagStr) { + continue; } - tagPaths.push(nowTag) + if (nowTag) { + nowTag = `${nowTag}${tagStr}/`; + } else { + nowTag = tagStr + '/'; + } + tagPaths.push(nowTag); } - state.tags = await tagApi.listByQuery.request({ tagPaths: tagPaths.join(',') }) + state.tags = await tagApi.listByQuery.request({ tagPaths: tagPaths.join(',') }); } diff --git a/mayfly_go_web/src/views/ops/db/SqlExec.vue b/mayfly_go_web/src/views/ops/db/SqlExec.vue index a5a6fa62..a0ded8af 100644 --- a/mayfly_go_web/src/views/ops/db/SqlExec.vue +++ b/mayfly_go_web/src/views/ops/db/SqlExec.vue @@ -2,7 +2,8 @@
- 新建查询 @@ -23,7 +24,8 @@ -