mirror of
https://github.com/ArvinLovegood/go-stock.git
synced 2025-07-19 00:00:09 +08:00
- 在 main.go 中添加了 SingleInstanceLock 配置,确保只有一个应用实例运行- 在 App 结构中添加了 OnSecondInstanceLaunch 函数,用于处理第二次启动时的通知 - 优化了应用退出流程,确保 systray 正确退出 - 调整了窗口默认大小和最小宽度
15 lines
381 B
HTML
15 lines
381 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
|
|
<title>go-stock:AI赋能股票分析</title>
|
|
<link href="./src/style.css" rel="stylesheet">
|
|
</head>
|
|
<body style="--wails-draggable:drag">
|
|
<div id="app"></div>
|
|
<script src="./src/main.js" type="module"></script>
|
|
</body>
|
|
</html>
|
|
|