feat: 更新应用图标、标题并调整弹窗尺寸

修改应用图标为NYC_logo,更新页面标题为"暖洋葱家庭教育数据看板"
调整sale.vue中弹窗的最大宽度和高度以适应更多内容
This commit is contained in:
2025-11-19 15:21:36 +08:00
parent 8e5f7335d8
commit 6b76d36946
3 changed files with 4 additions and 4 deletions

View File

@@ -2,9 +2,9 @@
<html lang="zh"> <html lang="zh">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> <link rel="icon" href="/NYC_logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue</title> <title>暖洋葱家庭教育数据看板</title>
<script defer src="https://umami.nycjy.cn/script.js" data-website-id="0d851950-9420-4c3e-a12a-c221fcf039b5"></script> <script defer src="https://umami.nycjy.cn/script.js" data-website-id="0d851950-9420-4c3e-a12a-c221fcf039b5"></script>
</head> </head>
<body> <body>

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

View File

@@ -1841,10 +1841,10 @@ $primary: #3b82f6;
background: #ffffff; background: #ffffff;
border-radius: 12px; border-radius: 12px;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
max-width: 600px; max-width: 1200px;
width: 90%; width: 90%;
// 设置最大高度,防止弹窗超出屏幕 // 设置最大高度,防止弹窗超出屏幕
max-height: 35vh; max-height: 80vh;
// 防止内容溢出容器,配合内部滚动 // 防止内容溢出容器,配合内部滚动
overflow: hidden; overflow: hidden;
// 使用 Flexbox 布局,让 .modal-body 可以伸缩 // 使用 Flexbox 布局,让 .modal-body 可以伸缩