Kaynağa Gözat

安装后的检测

黄中银 2 hafta önce
ebeveyn
işleme
9cdbfbb719
1 değiştirilmiş dosya ile 4 ekleme ve 0 silme
  1. 4 0
      ApqInstaller/src/App.vue

+ 4 - 0
ApqInstaller/src/App.vue

@@ -101,6 +101,8 @@ function bindInstallListeners() {
     installStore.addLog(translatedMessage)
     // 重新检测所有软件的安装状态(包括 claudeCode)
     installStore.checkInstalledSoftware()
+    // 重新检测 Claude Code VS Code 扩展的安装状态
+    installStore.checkClaudeCodeExtInstalled()
   })
 
   window.electronAPI.onInstallError((data) => {
@@ -109,6 +111,8 @@ function bindInstallListeners() {
     installStore.addLog(translatedMessage, 'error')
     // 安装失败后也重新检测所有软件的安装状态
     installStore.checkInstalledSoftware()
+    // 重新检测 Claude Code VS Code 扩展的安装状态
+    installStore.checkClaudeCodeExtInstalled()
   })
 }