新增功能:启动实例后自动打开网页面板

This commit is contained in:
li-xiaochen 2025-03-10 00:59:58 +08:00
parent 6e235a28c1
commit e4b93b94b1

View file

@ -279,7 +279,9 @@ class Api:
)
return
try:
self.run("cli", "mower-ng", {"command": command, "path": path})
ret = self.run("cli", "mower-ng", {"command": command, "path": path})
if command == "launch" and ret == "success":
self.run("cli", "mower-ng", {"command": "webui", "path": path})
except Exception as e:
custom_event(LogType.error, f"{cli_command[command]} 失败 {repr(e)}")