Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
🚸 ✨ 添加对进程多种运行状态的指示, fix #475
Browse files Browse the repository at this point in the history
  • Loading branch information
mnixry committed Feb 7, 2023
1 parent 25540c7 commit bbb02b8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions frontend/src/components/AccountSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,16 @@
来自配置文件
</span>
<span v-else class="text-green"> 手动添加 </span>
<span v-if="!account.process_created" class="text-accent">
未启动
<span class="text-accent">
{{
!account.process_created
? account.process_running
? account.process_connected
? '已连接主进程'
: '已启动未连接'
: '进程未启动'
: '进程未创建'
}}
</span>
</q-item-label>
</q-item-section>
Expand Down

0 comments on commit bbb02b8

Please sign in to comment.