Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b591bc522d | |||
| b15e422953 |
@@ -19,6 +19,13 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
|
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
|
||||||
<meta name="description" content="岩美酒库管理系统 — 酒店饮品库存与采购管理平台">
|
<meta name="description" content="岩美酒库管理系统 — 酒店饮品库存与采购管理平台">
|
||||||
|
<meta name="color-scheme" content="light">
|
||||||
|
<style>
|
||||||
|
html, body {
|
||||||
|
background-color: #ffffff;
|
||||||
|
color-scheme: light;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<!-- iOS meta tags & icons -->
|
<!-- iOS meta tags & icons -->
|
||||||
<meta name="mobile-web-app-capable" content="yes">
|
<meta name="mobile-web-app-capable" content="yes">
|
||||||
|
|||||||
@@ -47,6 +47,12 @@ server {
|
|||||||
expires 0;
|
expires 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# 公开商品详情页(扫码跳转)→ 交给 Flutter Web 路由处理
|
||||||
|
location ~ ^/product/ {
|
||||||
|
root /opt/jiu/web;
|
||||||
|
try_files $uri /app/index.html;
|
||||||
|
}
|
||||||
|
|
||||||
# 扫码页(/scan/<id> → scan.html,JS 从 URL 读取 id)
|
# 扫码页(/scan/<id> → scan.html,JS 从 URL 读取 id)
|
||||||
location /scan/ {
|
location /scan/ {
|
||||||
root /opt/jiu/marketing;
|
root /opt/jiu/marketing;
|
||||||
|
|||||||
@@ -5,6 +5,8 @@
|
|||||||
========================================================================= */
|
========================================================================= */
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
|
color-scheme: light;
|
||||||
|
|
||||||
/* ---------- Brand: Primary (Slate Blue) ---------- */
|
/* ---------- Brand: Primary (Slate Blue) ---------- */
|
||||||
/* Trustworthy enterprise blue with a slight slate cast. */
|
/* Trustworthy enterprise blue with a slight slate cast. */
|
||||||
--brand-50: #EEF4FB;
|
--brand-50: #EEF4FB;
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<meta name="color-scheme" content="light" />
|
||||||
<title>岩美酒库管理系统 — 为酒行与酒店设计的库存管理平台</title>
|
<title>岩美酒库管理系统 — 为酒行与酒店设计的库存管理平台</title>
|
||||||
<link rel="stylesheet" href="assets/colors_and_type.css" />
|
<link rel="stylesheet" href="assets/colors_and_type.css" />
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
|
|||||||
Reference in New Issue
Block a user