bug处理,插件版本同步

This commit is contained in:
2026-07-15 16:36:20 +08:00
parent 0911760e27
commit bf84da7783
12 changed files with 707 additions and 303 deletions
+12 -7
View File
@@ -7,18 +7,18 @@
<!-- 主内容区域 -->
<div class="agent-page__content" v-loading="pageLoading" element-loading-text="加载中...">
<!-- 准备向导 第1步到第4步-->
<!-- <AgentSetupWizard
<AgentSetupWizard
v-if="!pageLoading && showSetupWizard"
:initial-config="agentConfig"
@complete="handleSetupComplete"
@launch="handleLaunch"
/> -->
<AgentSetupWizard
v-if="true"
:initial-config="agentConfig"
@complete="handleSetupComplete"
@launch="handleLaunch"
/>
<!-- <AgentSetupWizard-->
<!-- v-if="true"-->
<!-- :initial-config="agentConfig"-->
<!-- @complete="handleSetupComplete"-->
<!-- @launch="handleLaunch"-->
<!-- />-->
<!-- 求职助手正式内容区域 -->
@@ -418,6 +418,11 @@ onMounted(async () => {
loadProgressFromStorage()
loadCompletedFromStorage()
await loadAgentConfig()
// 检查插件版本是否最新
if (store.state.plugIsOnline && !store.state.isLatestPlugin) {
ElMessage.warning(`当前安装的浏览器插件不是最新${store.state.plugTargetVersion}版,请去智能投递里下载最新版安装`)
}
})
/** 查询求职助手配置 */