fix: 修复“敬请期待”展示问题

This commit is contained in:
liulujian 2026-06-04 19:30:33 +08:00
parent 37f2f4e754
commit 12d76349b6
3 changed files with 31 additions and 9 deletions

View File

@ -35,7 +35,10 @@
"mcp__code-review-graph__build_or_update_graph_tool", "mcp__code-review-graph__build_or_update_graph_tool",
"mcp__code-review-graph__semantic_search_nodes_tool", "mcp__code-review-graph__semantic_search_nodes_tool",
"mcp__code-review-graph__query_graph_tool", "mcp__code-review-graph__query_graph_tool",
"mcp__code-review-graph__detect_changes_tool" "mcp__code-review-graph__detect_changes_tool",
"Bash(cd \"/e/00项目/T_碳信网/code/txw/txw-mhzc-web\" && grep -nE \"closeAll|^\\\\s*close|export\\\\s+\\(function|const\\)\\\\s+close\" node_modules/tdesign-vue/es/message/index.js node_modules/tdesign-vue/es/message/plugin.js 2>/dev/null | head -30)",
"Read(//e/e/00项目/T_碳信网/code/txw/txw-mhzc-web/node_modules/tdesign-vue/es/message/**)",
"Bash(cd \"/e/00项目/T_碳信网/code/txw/txw-mhzc-web\" && cat node_modules/tdesign-vue/es/message/index.d.ts 2>/dev/null)"
] ]
}, },
"enableAllProjectMcpServers": true, "enableAllProjectMcpServers": true,

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
# Compiled class file # Compiled class file
.claude
*.class *.class
target target
classes classes

View File

@ -1,13 +1,31 @@
// 用 Symbol 存"敬请期待"当前实例引用,避免被 Vue 响应式系统代理,也避免污染可枚举属性
const COMING_SOON_INSTANCE = Symbol('comingSoonInstance')
export default { export default {
methods: { methods: {
/**
* 显示"敬请期待"提示做组件级单例
* 屏幕上同一时刻最多只有一个连点时关掉旧的再开新的旧的自动消失
* @message TDesign MessagePluginmain.js 里挂到 Vue.prototype.$message
* info() 返回 Promise<messageInstance>实例有 close()
*/
showComingSoon() { showComingSoon() {
if (this._comingSoonLock) return const prev = this[COMING_SOON_INSTANCE]
this._comingSoonLock = true if (prev) {
this.$message.info(String.fromCharCode(25964,35831,26399,24453)) prev.close()
setTimeout(function() { this._comingSoonLock = false }, 2000) this[COMING_SOON_INSTANCE] = null
} }
this.$message.info('敬请期待').then((instance) => {
this[COMING_SOON_INSTANCE] = instance
})
},
}, },
beforeDestroy() { beforeDestroy() {
this._comingSoonLock = false // 离页前关掉,避免跳页后残留
const instance = this[COMING_SOON_INSTANCE]
if (instance) {
instance.close()
this[COMING_SOON_INSTANCE] = null
}
},
} }
};