From 7938a274f26afb018e16fdd1f5bfffe651f6a449 Mon Sep 17 00:00:00 2001 From: leefer Date: Tue, 25 Aug 2026 08:42:11 +0800 Subject: [PATCH 1/7] =?UTF-8?q?HEL-120:=20=E7=AC=AC1=E6=89=B9=E9=97=A8?= =?UTF-8?q?=E9=9D=A2=E2=80=94=E2=80=94=E5=AF=BC=E5=BC=95=E5=85=A5=E5=8F=A3?= =?UTF-8?q?=20+=20=E4=B8=A4=E5=BC=A0=E7=99=BB=E5=BD=95=E9=A1=B5=20+=20?= =?UTF-8?q?=E9=A6=96=E7=99=BB=E6=94=B9=E5=AF=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: multica-agent --- web/design-system.css | 572 +++++++++++++++++++++++++++++++++++++++++ web/index.html | 100 +++---- web/login-admin.html | 77 ++++++ web/login-company.html | 77 ++++++ web/login.js | 96 +++++++ 5 files changed, 851 insertions(+), 71 deletions(-) create mode 100644 web/design-system.css create mode 100644 web/login-admin.html create mode 100644 web/login-company.html create mode 100644 web/login.js diff --git a/web/design-system.css b/web/design-system.css new file mode 100644 index 0000000..ab2d2a3 --- /dev/null +++ b/web/design-system.css @@ -0,0 +1,572 @@ +/* ─── 金牛实业资金往来管理系统 · 共享样式 ───────────────────────────── + 方向:tech-utility(数据密集型工具)。六枚基础 token 绑定设计方向, + 状态色仅在此 :root 块内以 oklch 派生,组件一律引用变量。 */ + +:root { + --bg: oklch(98% 0.005 250); + --surface: oklch(100% 0 0); + --fg: oklch(22% 0.02 240); + --muted: oklch(50% 0.018 240); + --border: oklch(90% 0.008 240); + --accent: oklch(58% 0.16 145); + + /* 状态色 — 仅此处定义 */ + --success: oklch(55% 0.14 150); + --warn: oklch(62% 0.14 70); + --danger: oklch(55% 0.18 25); + --info: oklch(52% 0.12 240); + + --accent-soft: color-mix(in oklch, var(--accent) 12%, transparent); + --success-soft: color-mix(in oklch, var(--success) 12%, transparent); + --warn-soft: color-mix(in oklch, var(--warn) 14%, transparent); + --danger-soft: color-mix(in oklch, var(--danger) 11%, transparent); + --info-soft: color-mix(in oklch, var(--info) 10%, transparent); + --fg-soft: color-mix(in oklch, var(--fg) 5%, transparent); + + --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif; + --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace; + + --radius: 8px; + --radius-lg: 12px; + --side-w: 232px; +} + +/* ─── reset ─────────────────────────────────────────────────────── */ +*, *::before, *::after { box-sizing: border-box; } +body { + margin: 0; + background: var(--bg); + color: var(--fg); + font-family: var(--font-body); + font-size: 14px; + line-height: 1.55; + -webkit-font-smoothing: antialiased; +} +img, svg { display: block; } +a { color: inherit; text-decoration: none; } +button { font: inherit; cursor: pointer; } +h1, h2, h3, h4 { margin: 0; line-height: 1.3; } +p { margin: 0; } + +:focus-visible { + outline: 2px solid var(--accent); + outline-offset: 2px; + border-radius: 4px; +} + +/* ─── 应用外壳 ──────────────────────────────────────────────────── */ +.shell { display: grid; grid-template-columns: var(--side-w) 1fr; min-height: 100vh; } + +.sidebar { + background: var(--surface); + border-right: 1px solid var(--border); + display: flex; + flex-direction: column; + position: sticky; + top: 0; + height: 100vh; +} +.side-brand { + padding: 18px 20px 16px; + border-bottom: 1px solid var(--border); +} +.side-brand .brand-name { font-size: 15px; font-weight: 650; letter-spacing: -0.01em; } +.side-brand .brand-sub { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: 0.02em; } +.side-role { + display: inline-flex; align-items: center; gap: 6px; + margin-top: 10px; + padding: 3px 9px; + border-radius: 999px; + background: var(--accent-soft); + color: var(--accent); + font-size: 11px; font-weight: 600; +} +.side-role.company { background: var(--info-soft); color: var(--info); } + +.side-nav { flex: 1; overflow-y: auto; padding: 12px 10px; } +.side-nav .nav-group { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--muted); padding: 14px 10px 6px; } +.side-nav a { + display: flex; align-items: center; gap: 10px; + padding: 8px 10px; + border-radius: var(--radius); + color: var(--muted); + font-size: 13.5px; + margin-bottom: 1px; +} +.side-nav a svg { width: 16px; height: 16px; flex: none; } +.side-nav a:hover { color: var(--fg); background: var(--fg-soft); } +.side-nav a.active { + color: var(--fg); + background: var(--accent-soft); + font-weight: 600; +} +.side-nav a.active svg { color: var(--accent); } +.side-nav a .nav-badge { + margin-left: auto; + font-family: var(--font-mono); + font-size: 10.5px; + padding: 1px 7px; + border-radius: 999px; + background: var(--danger-soft); + color: var(--danger); + font-weight: 600; +} +.side-foot { border-top: 1px solid var(--border); padding: 12px 16px; } +.side-foot .user-row { display: flex; align-items: center; gap: 10px; min-width: 0; } +.side-foot .user-row > div { min-width: 0; } +.side-foot .avatar { + width: 30px; height: 30px; border-radius: 50%; + background: var(--fg); color: var(--surface); + display: grid; place-items: center; + font-size: 12px; font-weight: 600; + flex: none; +} +.side-foot .user-name { font-size: 13px; font-weight: 600; white-space: nowrap; } +.side-foot .user-meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } +.side-foot .logout { margin-left: auto; color: var(--muted); font-size: 12px; padding: 4px 6px; border-radius: 6px; background: none; border: 0; flex: none; white-space: nowrap; } +.side-foot .logout:hover { color: var(--danger); background: var(--danger-soft); } + +.main { min-width: 0; display: flex; flex-direction: column; } + +.topbar { + position: sticky; top: 0; z-index: 20; + background: color-mix(in oklch, var(--bg) 88%, transparent); + backdrop-filter: blur(10px); + border-bottom: 1px solid var(--border); + padding: 12px 28px; + display: flex; align-items: center; gap: 16px; +} +.topbar .crumb { font-family: var(--font-mono); font-size: 12px; color: var(--muted); } +.topbar .crumb b { color: var(--fg); font-weight: 600; } +.topbar .topbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; } + +.content { padding: 24px 28px 64px; max-width: 1440px; width: 100%; margin-inline: auto; } + +/* ─── 页头 ──────────────────────────────────────────────────────── */ +.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; } +.page-head h1 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; } +.page-head .page-sub { color: var(--muted); font-size: 13px; margin-top: 5px; max-width: 72ch; } +.page-head .page-actions { display: flex; gap: 8px; flex-wrap: wrap; } + +/* ─── 按钮 ──────────────────────────────────────────────────────── */ +.btn { + display: inline-flex; align-items: center; justify-content: center; gap: 7px; + padding: 8px 14px; + min-height: 34px; + border-radius: var(--radius); + border: 1px solid var(--border); + background: var(--surface); + color: var(--fg); + font-size: 13px; font-weight: 550; + transition: background 0.12s ease, border-color 0.12s ease; +} +.btn:hover { border-color: color-mix(in oklch, var(--fg) 40%, var(--border)); background: var(--fg-soft); } +.btn:active { transform: translateY(1px); } +.btn-primary { background: var(--accent); border-color: var(--accent); color: var(--surface); } +.btn-primary:hover { background: color-mix(in oklch, var(--accent) 88%, black); border-color: color-mix(in oklch, var(--accent) 88%, black); } +.btn-ghost { background: transparent; border-color: transparent; color: var(--muted); } +.btn-ghost:hover { color: var(--fg); background: var(--fg-soft); } +.btn-danger { color: var(--danger); border-color: color-mix(in oklch, var(--danger) 35%, var(--border)); } +.btn-danger:hover { background: var(--danger-soft); border-color: var(--danger); } +.btn-sm { padding: 4px 10px; min-height: 26px; font-size: 12px; border-radius: 6px; } +.btn[disabled] { opacity: 0.5; cursor: not-allowed; } +.btn-primary[disabled] { opacity: 1; background: var(--fg-soft); border-color: var(--border); color: var(--muted); } + +/* ─── 卡片 ──────────────────────────────────────────────────────── */ +.card { + background: var(--surface); + border: 1px solid var(--border); + border-radius: var(--radius-lg); + padding: 18px 20px; +} +.card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; } +.card-title { font-size: 14px; font-weight: 650; letter-spacing: -0.005em; } +.card-title .sub { display: block; font-size: 12px; font-weight: 400; color: var(--muted); margin-top: 2px; } + +/* ─── 指标卡 ────────────────────────────────────────────────────── */ +.stat-card { padding: 16px 18px; } +.stat-card .stat-label { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; } +.stat-card .stat-value { + font-family: var(--font-mono); + font-variant-numeric: tabular-nums; + font-size: 26px; font-weight: 650; + letter-spacing: -0.02em; + margin-top: 6px; +} +.stat-card .stat-value .unit { font-size: 13px; color: var(--muted); font-weight: 400; margin-left: 2px; } +.stat-card .stat-foot { font-size: 12px; color: var(--muted); margin-top: 6px; } +.stat-card.alert .stat-value { color: var(--danger); } +.stat-card.warn .stat-value { color: var(--warn); } +.stat-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; } +.stat-dot.danger { background: var(--danger); } +.stat-dot.warn { background: var(--warn); } +.stat-dot.success { background: var(--success); } +.stat-dot.info { background: var(--info); } + +/* ─── 栅格与布局工具 ────────────────────────────────────────────── */ +.grid { display: grid; gap: 14px; } +.grid-2 { grid-template-columns: repeat(2, 1fr); } +.grid-3 { grid-template-columns: repeat(3, 1fr); } +.grid-4 { grid-template-columns: repeat(4, 1fr); } +.grid-5 { grid-template-columns: repeat(5, 1fr); } +.grid-2-1 { grid-template-columns: 2fr 1fr; align-items: start; } +.grid-1-2 { grid-template-columns: 1fr 2fr; align-items: start; } +.grid-3-2 { grid-template-columns: 3fr 2fr; align-items: start; } +.row { display: flex; align-items: center; gap: 10px; } +.row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; } +.stack { display: flex; flex-direction: column; gap: 14px; } +.muted { color: var(--muted); } +.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; } +.meta { font-family: var(--font-mono); font-size: 12px; color: var(--muted); } +.mt-0 { margin-top: 0; } + +@media (max-width: 1100px) { + .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); } + .grid-3, .grid-2-1, .grid-1-2, .grid-3-2 { grid-template-columns: 1fr; } +} +@media (max-width: 860px) { + .shell { grid-template-columns: 1fr; } + .sidebar { position: static; height: auto; } + .grid-2 { grid-template-columns: 1fr; } + .content { padding: 16px 16px 48px; } +} + +/* ─── 数据表 ────────────────────────────────────────────────────── */ +.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); } +.ds-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 640px; } +.ds-table th, .ds-table td { padding: 9px 14px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; } +.ds-table th { + color: var(--muted); font-weight: 550; + font-family: var(--font-mono); font-size: 11px; + letter-spacing: 0.05em; + background: var(--bg); + position: sticky; top: 0; +} +.ds-table tbody tr:hover { background: var(--fg-soft); } +.ds-table tbody tr:last-child td { border-bottom: 0; } +.ds-table .num-col { font-family: var(--font-mono); font-variant-numeric: tabular-nums; text-align: right; } +.ds-table td.wrap, .ds-table th.wrap { white-space: normal; min-width: 180px; } +.ds-table .cell-main { font-weight: 550; } +.ds-table .cell-sub { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 1px; } +.ds-table tr.clickable { cursor: pointer; } +.ds-table .amt-in { color: var(--success); } +.ds-table .amt-out { color: var(--danger); } +.table-foot { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); } + +/* ─── 徽章 / 状态 ───────────────────────────────────────────────── */ +.pill { + display: inline-flex; align-items: center; gap: 5px; + padding: 2px 9px; + border-radius: 999px; + font-size: 11.5px; font-weight: 600; + white-space: nowrap; +} +.pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; } +.pill-success { background: var(--success-soft); color: var(--success); } +.pill-warn { background: var(--warn-soft); color: color-mix(in oklch, var(--warn) 80%, black); } +.pill-danger { background: var(--danger-soft); color: var(--danger); } +.pill-info { background: var(--info-soft); color: var(--info); } +.pill-muted { background: var(--fg-soft); color: var(--muted); } +.pill-accent { background: var(--accent-soft); color: var(--accent); } + +.tag { + display: inline-flex; align-items: center; + padding: 2px 8px; + border: 1px solid var(--border); + border-radius: 6px; + font-family: var(--font-mono); + font-size: 11px; + color: var(--muted); + white-space: nowrap; +} + +/* ─── 筛选栏与表单 ──────────────────────────────────────────────── */ +.filters { + display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; + padding: 14px 16px; + background: var(--surface); + border: 1px solid var(--border); + border-radius: var(--radius-lg); + margin-bottom: 14px; +} +.field { display: flex; flex-direction: column; gap: 5px; min-width: 0; } +.field > label { font-size: 12px; color: var(--muted); font-weight: 550; } +.input, .select, .textarea { + padding: 7px 11px; + border: 1px solid var(--border); + border-radius: var(--radius); + background: var(--surface); + color: var(--fg); + font: inherit; + font-size: 13px; + min-height: 34px; +} +.input:focus, .select:focus, .textarea:focus { + outline: 2px solid var(--accent-soft); + border-color: var(--accent); +} +.input.num-input { font-family: var(--font-mono); font-variant-numeric: tabular-nums; } +.textarea { min-height: 84px; resize: vertical; line-height: 1.55; } +.field .hint { font-size: 11.5px; color: var(--muted); } +.field .hint.error { color: var(--danger); } + +/* ─── Tabs ──────────────────────────────────────────────────────── */ +.tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--border); margin-bottom: 16px; } +.tabs button { + background: none; border: 0; + padding: 9px 14px; + font-size: 13px; font-weight: 550; + color: var(--muted); + border-bottom: 2px solid transparent; + margin-bottom: -1px; +} +.tabs button:hover { color: var(--fg); } +.tabs button.active { color: var(--fg); border-bottom-color: var(--accent); } +.tabs button .tab-count { + font-family: var(--font-mono); font-size: 10.5px; + padding: 1px 6px; border-radius: 999px; + background: var(--fg-soft); color: var(--muted); + margin-left: 5px; +} +.tabs button.active .tab-count { background: var(--accent-soft); color: var(--accent); } + +/* ─── 时间轴(账期) ─────────────────────────────────────────────── */ +.timeline { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); } +.tl-cell { flex: 1; padding: 12px 10px; border-right: 1px solid var(--border); text-align: center; min-width: 0; } +.tl-cell:last-child { border-right: 0; } +.tl-cell .tl-month { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; } +.tl-cell .tl-state { font-size: 12px; font-weight: 600; margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 5px; } +.tl-cell.closed { background: var(--fg-soft); } +.tl-cell.closed .tl-state { color: var(--muted); } +.tl-cell.current { background: var(--accent-soft); } +.tl-cell.current .tl-state { color: var(--accent); } +.tl-cell.open .tl-state { color: var(--fg); } + +/* ─── 进度条 ────────────────────────────────────────────────────── */ +.progress { height: 6px; border-radius: 999px; background: var(--fg-soft); overflow: hidden; } +.progress > span { display: block; height: 100%; border-radius: 999px; background: var(--accent); } +.progress.warn > span { background: var(--warn); } +.progress.danger > span { background: var(--danger); } + +/* ─── 列表行(快查 / 待办 / 通知) ────────────────────────────────── */ +.list-row { + display: flex; align-items: center; gap: 12px; + padding: 10px 4px; + border-bottom: 1px solid var(--border); + font-size: 13px; +} +.list-row:last-child { border-bottom: 0; } +.list-row .lr-main { min-width: 0; flex: 1; } +.list-row .lr-title { font-weight: 550; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } +.list-row .lr-sub { font-size: 12px; color: var(--muted); margin-top: 1px; } +.list-row .lr-side { text-align: right; flex: none; } + +/* ─── 弹窗 ──────────────────────────────────────────────────────── */ +.modal-backdrop { + position: fixed; inset: 0; z-index: 50; + background: color-mix(in oklch, var(--fg) 45%, transparent); + display: none; + align-items: center; justify-content: center; + padding: 24px; +} +.modal-backdrop.open { display: flex; } +.modal { + background: var(--surface); + border-radius: var(--radius-lg); + border: 1px solid var(--border); + width: 100%; max-width: 560px; + max-height: 86vh; overflow-y: auto; + padding: 22px 24px; + box-shadow: 0 18px 50px color-mix(in oklch, var(--fg) 25%, transparent); +} +.modal.wide { max-width: 760px; } +.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; } +.modal-title { font-size: 16px; font-weight: 700; } +.modal-close { background: none; border: 0; color: var(--muted); font-size: 18px; padding: 4px 8px; border-radius: 6px; } +.modal-close:hover { background: var(--fg-soft); color: var(--fg); } +.modal-sub { font-size: 12.5px; color: var(--muted); margin-bottom: 16px; } +.modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 20px; } + +/* ─── 明细展开行 ────────────────────────────────────────────────── */ +.detail-box { + background: var(--bg); + border: 1px solid var(--border); + border-radius: var(--radius); + padding: 12px 14px; + font-size: 12.5px; +} +.kv { display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; font-size: 12.5px; } +.kv dt { color: var(--muted); } +.kv dd { margin: 0; font-family: var(--font-mono); font-variant-numeric: tabular-nums; } + +/* ─── 提示条 ────────────────────────────────────────────────────── */ +.notice { + display: flex; gap: 10px; align-items: flex-start; + padding: 12px 14px; + border-radius: var(--radius-lg); + border: 1px solid var(--border); + font-size: 13px; + background: var(--surface); +} +.notice.warn { background: var(--warn-soft); border-color: color-mix(in oklch, var(--warn) 30%, transparent); } +.notice.danger { background: var(--danger-soft); border-color: color-mix(in oklch, var(--danger) 30%, transparent); } +.notice.info { background: var(--info-soft); border-color: color-mix(in oklch, var(--info) 25%, transparent); } +.notice .n-title { font-weight: 650; } +.notice .n-body { color: color-mix(in oklch, var(--fg) 80%, var(--muted)); margin-top: 2px; font-size: 12.5px; } + +/* ─── 登录页 ────────────────────────────────────────────────────── */ +.login-wrap { + min-height: 100vh; + display: grid; + grid-template-columns: 1fr 1fr; +} +.login-aside { + background: var(--fg); + color: var(--surface); + padding: 48px 56px; + display: flex; flex-direction: column; +} +.login-aside .brand-mark { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; opacity: 0.65; } +.login-aside h1 { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; margin-top: 18px; line-height: 1.25; } +.login-aside .aside-sub { opacity: 0.72; font-size: 14px; margin-top: 14px; max-width: 40ch; } +.login-aside .aside-list { margin-top: auto; display: flex; flex-direction: column; gap: 12px; } +.login-aside .aside-item { display: flex; gap: 10px; font-size: 13px; opacity: 0.85; align-items: baseline; } +.login-aside .aside-item .tick { font-family: var(--font-mono); color: var(--accent); } +.login-panel { display: grid; place-items: center; padding: 48px 32px; } +.login-card { width: 100%; max-width: 400px; } +.login-card h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; } +.login-card .login-sub { color: var(--muted); font-size: 13px; margin: 6px 0 24px; } +.role-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; } +.role-switch button { + border: 1px solid var(--border); + background: var(--surface); + border-radius: var(--radius); + padding: 12px 10px; + text-align: left; + transition: border-color 0.12s ease, background 0.12s ease; +} +.role-switch button .r-name { font-size: 13.5px; font-weight: 650; } +.role-switch button .r-desc { font-size: 11.5px; color: var(--muted); margin-top: 2px; } +.role-switch button.active { border-color: var(--accent); background: var(--accent-soft); } +.role-switch button.active .r-name { color: var(--accent); } +.login-card .field { margin-bottom: 14px; } +.login-foot { margin-top: 16px; font-size: 12px; color: var(--muted); text-align: center; } +.login-foot a { color: var(--accent); font-weight: 550; } +.login-foot a:hover { text-decoration: underline; } +@media (max-width: 900px) { + .login-wrap { grid-template-columns: 1fr; } + .login-aside { display: none; } +} + +/* ─── 空状态 ────────────────────────────────────────────────────── */ +.empty { + padding: 40px 20px; + text-align: center; + color: var(--muted); + font-size: 13px; +} +.empty .e-title { font-weight: 600; color: var(--fg); margin-bottom: 4px; } + +/* ─── 账期流程条(公司端工作台) ─────────────────────────────────── */ +.flow { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); } +.flow-step { padding: 14px 16px 13px; border-right: 1px solid var(--border); min-width: 0; } +.flow-step:last-child { border-right: 0; } +a.flow-step { cursor: pointer; transition: background 0.12s ease; } +a.flow-step:hover { background: var(--fg-soft); } +.flow-step .fs-top { display: flex; align-items: center; gap: 8px; } +.flow-step .fs-idx { font-family: var(--font-mono); font-size: 11px; color: var(--muted); } +.flow-step .fs-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); flex: none; } +.flow-step .fs-name { font-size: 13.5px; font-weight: 650; } +.flow-step .fs-state { font-size: 12px; font-weight: 600; margin-top: 7px; color: var(--muted); } +.flow-step .fs-meta { font-size: 12px; color: var(--muted); margin-top: 2px; } +.flow-step.done .fs-dot { background: var(--success); } +.flow-step.done .fs-state { color: var(--success); } +.flow-step.part .fs-dot { background: var(--warn); } +.flow-step.part .fs-state { color: color-mix(in oklch, var(--warn) 78%, black); } +.flow-step.doing { background: var(--warn-soft); } +.flow-step.doing .fs-dot { background: var(--warn); box-shadow: 0 0 0 3px color-mix(in oklch, var(--warn) 22%, transparent); } +.flow-step.doing .fs-state { color: color-mix(in oklch, var(--warn) 78%, black); } +a.flow-step.doing:hover { background: color-mix(in oklch, var(--warn) 16%, transparent); } +@media (max-width: 860px) { + .flow { grid-template-columns: 1fr; } + .flow-step { border-right: 0; border-bottom: 1px solid var(--border); } + .flow-step:last-child { border-bottom: 0; } +} + +/* ─── 迷你指标(2×2 数字块) ────────────────────────────────────── */ +.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; } +.mini-stat { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 11px 13px; min-width: 0; } +.mini-stat .ms-label { font-size: 11.5px; color: var(--muted); } +.mini-stat .ms-value { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 17px; font-weight: 650; letter-spacing: -0.01em; margin-top: 3px; } +.mini-stat .ms-value .unit { font-size: 11px; font-weight: 400; color: var(--muted); margin-left: 2px; } +.mini-stat .ms-value.pos { color: var(--success); } +.mini-stat .ms-value.neg { color: var(--danger); } + +/* ─── 上传组件(拖放区 / 文件条 / 附件选择) ────────────────────── */ +.dropzone { + border: 1.5px dashed color-mix(in oklch, var(--fg) 28%, var(--border)); + border-radius: var(--radius-lg); + background: var(--bg); + padding: 30px 20px; + text-align: center; + cursor: pointer; + transition: border-color 0.12s ease, background 0.12s ease; +} +.dropzone:hover, .dropzone:focus-visible { border-color: var(--accent); background: var(--accent-soft); } +.dropzone.dragover { border-color: var(--accent); border-style: solid; background: var(--accent-soft); } +.dropzone svg { width: 28px; height: 28px; margin: 0 auto 10px; color: var(--muted); } +.dropzone .dz-title { font-size: 14px; font-weight: 650; } +.dropzone .dz-sub { font-size: 12.5px; color: var(--muted); margin-top: 5px; } +.dropzone .dz-sub .dz-browse { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; } +.dropzone .dz-formats { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 12px; letter-spacing: 0.02em; } + +.file-chip { + display: flex; align-items: center; gap: 10px; + margin-top: 12px; + padding: 10px 12px; + border: 1px solid var(--border); + border-radius: var(--radius); + background: var(--surface); +} +.file-chip svg { width: 18px; height: 18px; color: var(--muted); flex: none; } +.file-chip .fc-info { min-width: 0; flex: 1; } +.file-chip .fc-name { font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } +.file-chip .fc-meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 1px; } +.file-chip .fc-remove { background: none; border: 0; color: var(--muted); font-size: 16px; line-height: 1; padding: 4px 8px; border-radius: 6px; flex: none; } +.file-chip .fc-remove:hover { color: var(--danger); background: var(--danger-soft); } + +.attach-pick { + display: inline-flex; align-items: center; gap: 7px; + padding: 7px 12px; + min-height: 34px; + border: 1.5px dashed color-mix(in oklch, var(--fg) 28%, var(--border)); + border-radius: var(--radius); + color: var(--muted); + font-size: 13px; + cursor: pointer; + transition: border-color 0.12s ease, color 0.12s ease, background 0.12s ease; +} +.attach-pick svg { width: 15px; height: 15px; } +.attach-pick:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); } + +/* ─── 数据表合计行 ─────────────────────────────────────────────── */ +.ds-table tfoot td { background: var(--bg); font-weight: 650; border-top: 1.5px solid color-mix(in oklch, var(--fg) 30%, var(--border)); border-bottom: 0; } + +/* ─── 入口页(index) ────────────────────────────────────────────── */ +.portal-wrap { min-height: 100vh; display: grid; place-items: center; padding: 40px 24px; } +.portal-inner { width: 100%; max-width: 880px; } +.portal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; } +.portal-card { + display: block; + background: var(--surface); + border: 1px solid var(--border); + border-radius: var(--radius-lg); + padding: 24px; + transition: border-color 0.12s ease, transform 0.12s ease; +} +.portal-card:hover { border-color: var(--accent); transform: translateY(-2px); } +.portal-card .pc-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--accent); } +.portal-card h3 { font-size: 17px; font-weight: 700; margin-top: 8px; } +.portal-card p { color: var(--muted); font-size: 13px; margin-top: 6px; } +.portal-card .pc-go { font-size: 12.5px; font-weight: 600; color: var(--accent); margin-top: 14px; } +@media (max-width: 720px) { .portal-grid { grid-template-columns: 1fr; } } diff --git a/web/index.html b/web/index.html index ce57708..3b71ca7 100644 --- a/web/index.html +++ b/web/index.html @@ -1,75 +1,33 @@ - - - - - 登录 · 河南金牛实业集团有限公司资金往来管理系统 - - - -
-
-
- - 河南金牛实业集团有限公司资金往来管理系统 -
-
+ + + + 金牛实业资金往来管理系统 · 入口 + + + +
+
+

JINNIU GROUP · INTERCOMPANY TREASURY

+

河南金牛实业集团有限公司 · 资金往来管理系统

+

集团内部公司间资金往来记账平台。银行流水导入后自动轧算往来余额,支持从集团汇总逐级穿透至银行原始流水。本系统包含总账管理端与公司业务端两套界面。

-
-
-

集团资金往来管理

-

集团内部资金往来登记、核对及台账查询入口

-
- -
- -
-
-
-

欢迎登录

-

请选择登录入口,使用账号和密码进入系统

-
- - - -
- - -
- - - - - - -
- - 首次登录需修改密码 -
- - - -

登录即表示你已阅读并遵守集团资金往来管理规范

-
-
-
- - + + + + diff --git a/web/login-admin.html b/web/login-admin.html new file mode 100644 index 0000000..c3ecfc8 --- /dev/null +++ b/web/login-admin.html @@ -0,0 +1,77 @@ + + + + + + 登录 · 金牛实业资金往来管理系统 + + + + + + + + + + diff --git a/web/login-company.html b/web/login-company.html new file mode 100644 index 0000000..912e1ca --- /dev/null +++ b/web/login-company.html @@ -0,0 +1,77 @@ + + + + + + 登录 · 金牛实业资金往来管理系统 + + + + + + + + + + diff --git a/web/login.js b/web/login.js new file mode 100644 index 0000000..94fc2ea --- /dev/null +++ b/web/login.js @@ -0,0 +1,96 @@ +const ROLE = document.body.dataset.role || "admin"; +const REDIRECT = ROLE === "admin" ? "admin.html" : "company.html"; + +const form = document.getElementById("login-form"); +const accountInput = document.getElementById("account"); +const passwordInput = document.getElementById("password"); +const accountErr = document.getElementById("account-err"); +const passwordErr = document.getElementById("password-err"); +const loginErr = document.getElementById("login-err"); +const submitButton = form.querySelector('button[type="submit"]'); + +const modal = document.getElementById("pwd-modal"); +const newPwd = document.getElementById("new-pwd"); +const newPwd2 = document.getElementById("new-pwd2"); +const newPwdErr = document.getElementById("new-pwd-err"); +const newPwd2Err = document.getElementById("new-pwd2-err"); +const pwdErr = document.getElementById("pwd-err"); +const pwdConfirm = document.getElementById("pwd-confirm"); + +const submitLabel = "登 录"; + +function setLoading(loading) { + submitButton.disabled = loading; + submitButton.textContent = loading ? "登录中…" : submitLabel; + accountInput.disabled = loading; + passwordInput.disabled = loading; +} + +function showLoginError(message) { + loginErr.textContent = message || ""; + loginErr.hidden = !message; +} + +function openPasswordModal() { + newPwd.value = ""; + newPwd2.value = ""; + newPwdErr.hidden = true; + newPwd2Err.hidden = true; + pwdErr.hidden = true; + modal.classList.add("open"); + newPwd.focus(); +} + +form.addEventListener("submit", async (event) => { + event.preventDefault(); + showLoginError(""); + const account = accountInput.value.trim(); + const password = passwordInput.value; + accountErr.hidden = Boolean(account); + passwordErr.hidden = Boolean(password); + if (!account || !password) return; + + setLoading(true); + const response = await fetch("/api/login", { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify({ username: account, password, portal: ROLE }), + }).catch(() => null); + const result = await response?.json().catch(() => ({})); + if (!response || !response.ok) { + showLoginError(result?.message || "登录服务暂时不可用,请稍后重试。"); + setLoading(false); + return; + } + if (result.must_change_password) { + setLoading(false); + openPasswordModal(); + return; + } + window.location.href = REDIRECT; +}); + +pwdConfirm.addEventListener("click", async () => { + const p1 = newPwd.value; + const p2 = newPwd2.value; + const valid = p1.length >= 8 && /[a-zA-Z]/.test(p1) && /\d/.test(p1); + newPwdErr.hidden = valid; + newPwd2Err.hidden = p1 === p2; + pwdErr.hidden = true; + if (!valid || p1 !== p2) return; + + pwdConfirm.disabled = true; + const response = await fetch("/api/password/change", { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify({ old_password: passwordInput.value, new_password: p1 }), + }).catch(() => null); + const result = await response?.json().catch(() => ({})); + if (!response || !response.ok) { + pwdErr.textContent = result?.message || "修改密码失败,请稍后重试。"; + pwdErr.hidden = false; + pwdConfirm.disabled = false; + return; + } + window.location.href = REDIRECT; +}); From 020b5568011b1f081bd266f93a7898b8425ecf25 Mon Sep 17 00:00:00 2001 From: leefer Date: Tue, 25 Aug 2026 09:32:40 +0800 Subject: [PATCH 2/7] =?UTF-8?q?HEL-121:=20=E7=AC=AC2=E6=89=B9=E2=80=94?= =?UTF-8?q?=E2=80=94=E4=B8=A4=E7=AB=AF=E5=A4=96=E5=A3=B3=20+=20=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E6=80=BB=E8=A7=88=20+=20=E5=85=AC=E5=8F=B8=E5=B7=A5?= =?UTF-8?q?=E4=BD=9C=E5=8F=B0=EF=BC=88=E6=8C=89=E5=8E=9F=E5=9E=8B=E6=8D=A2?= =?UTF-8?q?=E5=A3=B3=EF=BC=8C=E4=BF=9D=E7=95=99=20showView/=E8=A7=92?= =?UTF-8?q?=E6=A0=87/=E9=80=80=E5=87=BA=E9=80=BB=E8=BE=91=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: multica-agent --- web/admin.html | 368 ++++++++++++++++++++++++++++-------------- web/app.js | 45 +++--- web/company.html | 313 +++++++++++++++++++++++------------ web/design-system.css | 23 +-- web/styles.css | 75 +-------- 5 files changed, 496 insertions(+), 328 deletions(-) diff --git a/web/admin.html b/web/admin.html index 8e95f5d..48be864 100644 --- a/web/admin.html +++ b/web/admin.html @@ -6,144 +6,257 @@ 总账管理端 · 金牛集团 + - -
+
-
-
+
+
+ 总账管理端 / 管理总览 +
+ 账期 2026-07 + 统计截止 2026-08-20 + +
+
+ +
-

管理总览

集团账务口径与高优先级事项

-
- -
- - - -
+
+
+

管理总览

+

2026-01-01 至 2026-08-20,集团 6 家成员公司相互往来累计发生 8.11 亿元、392 笔明细。页面上任意数字与公司均可逐级穿透,直至银行原始流水。

+
+
+
-
- -
-
-
待审核事项7
- -

2 项高风险 · 影响当前结账

-
-
-
流水异常账户3
- -

1 个已逾期 · 最长缺口 21 天

-
-
-
未完成提交公司2/ 6
- -

4 家已完成 · 截止 08.05

-
-
-
当前结账状态待处理
- -

2026 年 7 月 · 3 项条件未通过

-
-
- -
-
全局起算日2026.01.01
-
当前统计截止2026.07.31
-
每月结账日次月 5 日
-
2 家公司存在起算缺口最早缺口始于 2026.01.01
-
- -
-
-

优先处理

影响当前账期可靠性的事项

-
- - - -
-
- -
-
-

公司借贷目录

统计区间 2026.01.01—2026.07.31 · 单位:万元

-
公司借方合计贷方合计期末方向待审核
-
-
- AA公司4 个银行账户2,416.001,136.00应收1,280.001 笔 -
-

借方明细

2,416.00
-

贷方明细

1,136.00
-
-
-
BB公司3 个银行账户3,020.001,740.00应付1,280.003 笔

借方明细

3,020.00

贷方明细

1,740.00
-
CC公司2 个银行账户1,894.001,052.00应收842.000 笔

借方明细

1,894.00

贷方明细

1,052.00
+
+
+
往来借方总额 · 年初至今
+
42,040.30万元
+
6 家公司合计 · 明细 392 笔
-
+
+
往来贷方总额 · 年初至今
+
39,040.30万元
+
6 家公司合计 · 与借方同源互证
+
+
+
借贷轧差 · 未匹配
+
3,000.00万元
+
由单边流水与待确认往来形成,可在往来查询核对
+
+
+
7 月账期确认进度
+
50%
+
+
3 家已完成 · 2 家在途 · 1 家未提交
+
+
-
-

账期时间轴

起算日 2026.01.01 · 每月 5 日结上月账

1 处断档 · 7 月结账日 08.05
-
+ +
+
+
+ 待办队列12 项待处理 · 下方为影响结账的前 4 项,从第 1 项开始 + +
+
+ +
+
金牛置业 · 中行尾号 8821 账户 7 月流水断档 11 天
+
07-06 至 07-16 无流水,影响与金牛煤业 320 万元往来的归集
+
+ +
+
+ +
+
金牛农业 7 月全部账户未提交流水
+
已发 2 次系统提醒,最近一次 08-18,仍未响应
+
+ +
+
+ +
+
金牛新能源 ↔ 金牛贸易 3 笔单边流水待对方证据
+
合计 486 万元,需新能源侧选择对方银行流水佐证
+
+ +
+
+ +
+
5 笔手工记录待确认往来科目
+
应收 / 其他应收待判定,涉及煤业、物流、贸易
+
+ +
+
+ 其余 8 项为低风险与已挂起事项 + +
+
+ +
+
+ 账期与结账每月 5 日结账 · 全局起算日 2026-01-01 +
+
+
当前账期
2026-07 · 进行中
+
结账日
2026-08-29(顺延)· 距今 9 天
+
上一账期
2026-06 · 已于 07-03 结账
+
+ +
+
+
@@ -232,5 +345,18 @@
+ diff --git a/web/app.js b/web/app.js index b0a1253..828dee8 100644 --- a/web/app.js +++ b/web/app.js @@ -78,7 +78,7 @@ function initMotion() { if (motionQuery.matches) return; animateView($(".app-view.is-active"), { initial: true }); - $$(".nav-item", $("#sidebar") || document).forEach((item, index) => { + $$(".side-nav a", $("#sidebar") || document).forEach((item, index) => { item.animate( [{ opacity: 0, transform: "translateX(-8px)" }, { opacity: 1, transform: "translateX(0)" }], { duration: 360, delay: 90 + index * 28, easing: "cubic-bezier(.22,1,.36,1)", fill: "both" }, @@ -168,9 +168,9 @@ function showView(view) { const navigationWasOpen = $("#sidebar")?.classList.contains("is-open"); state.currentView = view; $$(".app-view").forEach((page) => page.classList.toggle("is-active", page.dataset.page === view)); - $$(".nav-item[data-view]").forEach((item) => { + $$(".side-nav a[data-view]").forEach((item) => { const active = item.dataset.view === view; - item.classList.toggle("is-active", active); + item.classList.toggle("active", active); if (active) item.setAttribute("aria-current", "page"); else item.removeAttribute("aria-current"); }); @@ -400,15 +400,20 @@ async function initAuthGuard() { } function applyCompanyIdentity(me) { - // The company portal always shows the session-bound company, never a - // hard-coded one. - if (portal !== "company" || !me?.company_name) return; - const context = $(".company-context"); - if (context) { - const mark = $("span", context); - if (mark) mark.textContent = me.company_name.slice(0, 1); - const name = $("strong", context); - if (name) name.textContent = me.company_name; + if (!me) return; + const row = $(".side-foot .user-row"); + if (row) { + const name = me.username || (portal === "company" ? (me.company_name || "公司用户") : "系统管理员"); + const avatar = $(".avatar", row); + if (avatar) avatar.textContent = name.slice(0, 1); + const nameEl = $(".user-name", row); + if (nameEl) nameEl.textContent = name; + const metaEl = $(".user-meta", row); + if (metaEl) metaEl.textContent = portal === "company" ? (me.company_name || "公司业务端") : "集团总账会计"; + } + // The company portal always shows the session-bound company in page copy. + if (portal === "company" && me.company_name) { + $$(".company-identity").forEach((el) => { el.textContent = me.company_name; }); } } @@ -434,16 +439,16 @@ function initShell() { }); }); - $$(".nav-item").forEach((item) => { + $$(".side-nav a").forEach((item) => { const label = $("span", item)?.textContent.trim(); if (label) { item.setAttribute("aria-label", label); item.title = label; } }); - $$("[data-view]").forEach((button) => button.addEventListener("click", () => showView(button.dataset.view))); - $$("[data-view-link]").forEach((button) => button.addEventListener("click", () => showView(button.dataset.viewLink))); - $$('a.nav-item[href="index.html"]').forEach((link) => link.addEventListener("click", async (event) => { + $$("[data-view]").forEach((button) => button.addEventListener("click", (event) => { event.preventDefault(); showView(button.dataset.view); })); + $$("[data-view-link]").forEach((button) => button.addEventListener("click", (event) => { event.preventDefault(); showView(button.dataset.viewLink); })); + $$(".logout").forEach((control) => control.addEventListener("click", async (event) => { event.preventDefault(); try { await fetch("/api/logout", { method: "POST" }); @@ -475,7 +480,7 @@ function initShell() { const toastButton = event.target.closest("[data-toast]"); if (toastButton) showToast(toastButton.dataset.toast); }); - $(".nav-item[data-view].is-active")?.setAttribute("aria-current", "page"); + $(".side-nav a[data-view].active")?.setAttribute("aria-current", "page"); $("#globalSearch")?.addEventListener("input", (event) => { const view = $(`.app-view[data-page="${state.currentView}"]`); @@ -802,7 +807,7 @@ function updateAuditCounts() { const count = unresolved.filter((row) => type === "all" || row.dataset.auditType === type).length; button.textContent = `${button.dataset.label} ${count}`; }); - const badge = $('.nav-item[data-view="audit"] b'); + const badge = $('.side-nav a[data-view="audit"] .nav-badge'); if (badge) badge.textContent = unresolved.length; } @@ -1547,12 +1552,12 @@ function initCompany() { if (type === "match") $("#matchPendingCount").textContent = "0 笔"; else $("#subjectPendingCount").textContent = "0 笔"; const remaining = $$("#reviewList > article").length; - const badge = $('.nav-item[data-view="reconcile"] b'); + const badge = $('.side-nav a[data-view="reconcile"] .nav-badge'); if (badge) badge.textContent = remaining; $(`.cashier-tasks [data-task-type="${type}"]`)?.remove(); const workspaceRemaining = $$(".cashier-tasks > article").length; $("#workspacePendingStatus").textContent = `${workspaceRemaining} 项待处理`; - const workspaceBadge = $('.nav-item[data-view="workspace"] b'); + const workspaceBadge = $('.side-nav a[data-view="workspace"] .nav-badge'); if (workspaceBadge) workspaceBadge.textContent = workspaceRemaining; showToast("处理结果已记录", "待办状态、操作人、时间和依据已同步更新"); } diff --git a/web/company.html b/web/company.html index 8668bb2..f292de8 100644 --- a/web/company.html +++ b/web/company.html @@ -6,125 +6,230 @@ 公司业务端 · 金牛集团 + - -
+
-
-
+
+
+ 公司业务端 / 工作台 +
+ 账期 2026-07 + 统计截止 2026-08-20 +
+
+ +
-

本月待办

A公司 · 距离集团结账日还有 3 天

4 项待处理
-
- -
- - - -
+
+
+

工作台

+

河南金牛煤业有限公司 · 2026 年 7 月账期。本月 18 项账期任务已完成 13 项,剩余 4 项待办,其中 3 项阻断结账。

-
-
-
-
待上传账户1/ 4
- -

工商银行 9481 · 缺少 21 天

-
-
-
待确认流水1
- -

280.00 万元 · 有 2 个候选

-
-
-
待复核记录1
- -

已提交总账 · 等待管理员处理

-
-
-
本月完成进度75%
- -

3 / 4 个账户 · 距结账还有 3 天

-
-
-
7 月数据尚不能结账

工商银行账户缺少 07.01—07.21 流水,补齐后系统将重新计算匹配结果。

-
-

账户覆盖

A公司 · 4 个银行账户

3 / 4 连续
-
-
中信银行 · 5316基本户 · 最近导入 09:42
01.01—07.317 个月连续
连续
-
农业银行 · 3650一般户 · 最近导入 08:01
01.01—07.317 个月连续
连续
-
工商银行 · 9481一般户 · 已逾期 2 天
缺口 21 天07.01—07.21
断档
-
建设银行 · 0845一般户 · 最近导入 08:01
01.01—07.317 个月连续
连续
+
+ +
-
-
-
-

需要处理

按结账影响和期限排序

-
-
1

补传工商银行流水

账户尾号 9481 · 缺少 07.01—07.21

影响:7 月账户覆盖与双边匹配
-
2

确认 1 笔单边流水

对方:B公司 · 07.18 · 280.00 万元

系统找到 2 个候选,请核对摘要与账号
-
3

确认往来科目

对方:C公司 · 06.27 · 600.00 万元

待确认:应收或其他应收
-
4

阅读总账提醒

请于 08.08 前完成 7 月银行流水确认

管理员 · 今天 09:30
-
-
-
-
1

流水上传3 / 4 个账户完成

2

异常处理2 项待确认

3

公司确认尚未提交

4

集团结账次月 5 日

-
-

账期时间轴

起算日 2026.01.01 · 每月 5 日结上月账

距 7 月结账日 08.05 还有 3 天
-
+
+ +
+
+
+
+ 本月待办本月任务 13/18 · 按处理顺序排列,前 3 项阻断结账 + 4 项待处理 +
+
+ 阻断 +
+
处理 3 笔单边流水确认
+
选择对方银行流水作为证据后提交确认
+
+ +
+
+ 阻断 +
+
确认 2 笔其他应收科目
+
核对后改判或维持原科目
+
+ +
+
+ 阻断 +
+
补传交行尾号 7710 账户 7 月流水
+
账户已登记,待总行审核通过后即可导入
+
+ +
+
+ 一般 +
+
核对与金牛置业 320 万往来
+
置业 8821 账户 7 月流水断档,需人工核对
+
+ +
+
+ 完成以上 4 项后,7 月账期即可提交集团结账 +
+
+ +
+
+ 账户覆盖情况本公司已登记银行账户与流水上传覆盖区间 + +
+
+ + + + + + + + + + + + + + + + + + + + + +
银行账户流水覆盖区间状态
工商银行尾号 3305 · 基本户2026-01-01 ~ 2026-08-20已覆盖
中国银行尾号 9916 · 一般户2026-01-01 ~ 2026-08-12部分覆盖
交通银行尾号 7710 · 一般户未上传待审核
+
+
+
+ +
+
+
+ 本公司往来合计2026-01-01 至 2026-08-20 · 与集团总账口径一致 · 单位:万元 +
+
+
+
借方合计
+
18,420.50万元
+
+
+
贷方合计
+
12,386.00万元
+
+
+
明细笔数
+
128
+
+
+
期末净往来 · 应收方向
+
+6,034.50万元
+
+
+ +
+ +
+
+ 最新通知来自集团总账 + +
+
+ 提醒 +
+
7 月账期结账日顺延至 08-29
+
请在此之前完成往来确认事项
+
+ 08-18 +
+
+ 提醒 +
+
3 笔单边流水待确认
+
涉及金牛置业、金牛贸易往来
+
+ 08-16 +
+
+ 通过 +
+
中行尾号 9916 流水导入成功
+
流水覆盖至 08-12
+
+ 08-12 +
+
+
+
diff --git a/web/design-system.css b/web/design-system.css index ab2d2a3..3ddd4f1 100644 --- a/web/design-system.css +++ b/web/design-system.css @@ -135,6 +135,7 @@ p { margin: 0; } border-bottom: 1px solid var(--border); padding: 12px 28px; display: flex; align-items: center; gap: 16px; + flex-wrap: wrap; } .topbar .crumb { font-family: var(--font-mono); font-size: 12px; color: var(--muted); } .topbar .crumb b { color: var(--fg); font-weight: 600; } @@ -205,13 +206,13 @@ p { margin: 0; } /* ─── 栅格与布局工具 ────────────────────────────────────────────── */ .grid { display: grid; gap: 14px; } -.grid-2 { grid-template-columns: repeat(2, 1fr); } -.grid-3 { grid-template-columns: repeat(3, 1fr); } -.grid-4 { grid-template-columns: repeat(4, 1fr); } -.grid-5 { grid-template-columns: repeat(5, 1fr); } -.grid-2-1 { grid-template-columns: 2fr 1fr; align-items: start; } -.grid-1-2 { grid-template-columns: 1fr 2fr; align-items: start; } -.grid-3-2 { grid-template-columns: 3fr 2fr; align-items: start; } +.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } +.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } +.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } +.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } +.grid-2-1 { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); align-items: start; } +.grid-1-2 { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); align-items: start; } +.grid-3-2 { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); align-items: start; } .row { display: flex; align-items: center; gap: 10px; } .row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; } .stack { display: flex; flex-direction: column; gap: 14px; } @@ -221,8 +222,8 @@ p { margin: 0; } .mt-0 { margin-top: 0; } @media (max-width: 1100px) { - .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); } - .grid-3, .grid-2-1, .grid-1-2, .grid-3-2 { grid-template-columns: 1fr; } + .grid-4, .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); } + .grid-3, .grid-2-1, .grid-1-2, .grid-3-2 { grid-template-columns: minmax(0, 1fr); } } @media (max-width: 860px) { .shell { grid-template-columns: 1fr; } @@ -291,7 +292,7 @@ p { margin: 0; } } .field { display: flex; flex-direction: column; gap: 5px; min-width: 0; } .field > label { font-size: 12px; color: var(--muted); font-weight: 550; } -.input, .select, .textarea { +.input, .select, .textarea, .field .input, .field .select, .field .textarea { padding: 7px 11px; border: 1px solid var(--border); border-radius: var(--radius); @@ -301,7 +302,7 @@ p { margin: 0; } font-size: 13px; min-height: 34px; } -.input:focus, .select:focus, .textarea:focus { +.input:focus, .select:focus, .textarea:focus, .field .input:focus, .field .select:focus, .field .textarea:focus { outline: 2px solid var(--accent-soft); border-color: var(--accent); } diff --git a/web/styles.css b/web/styles.css index e2ece2f..12dac42 100644 --- a/web/styles.css +++ b/web/styles.css @@ -80,47 +80,11 @@ strong, .amount, .number, dd { font-variant-numeric: tabular-nums; } [hidden] { display: none !important; } /* Application frame */ -.app-shell { min-height: 100vh; display: grid; grid-template-columns: 266px minmax(0, 1fr); } -.sidebar { position: fixed; inset: 18px auto 18px 18px; z-index: 120; width: 248px; display: flex; flex-direction: column; padding: 16px 12px; border: 1px solid var(--color-line); border-radius: var(--radius-xl); background: rgba(12, 12, 12, 0.9); box-shadow: var(--shadow-panel); backdrop-filter: blur(26px) saturate(125%); } -.brand { min-height: 60px; display: flex; align-items: center; gap: 11px; padding: 7px 10px 20px; border-bottom: 1px solid var(--color-line); } -.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(112, 255, 174, 0.32); border-radius: 12px; background: var(--color-primary-wash); color: var(--color-primary-strong); box-shadow: var(--shadow-glow); font-size: 18px; font-weight: 800; } -.brand-copy { display: flex; flex-direction: column; min-width: 0; } -.brand-copy strong { font-size: 15px; } -.brand-copy small, .user-block small, .company-context small { color: var(--color-ink-muted); font-size: 10px; } -.company-context { min-height: 64px; display: flex; align-items: center; gap: 10px; margin: 12px 4px 2px; padding: 10px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-surface-muted); } -.company-context > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: var(--color-primary); color: var(--color-primary-dark); font-weight: 800; } -.company-context div { display: flex; flex-direction: column; } -.nav-list { display: grid; gap: 8px; padding: 14px 2px; overflow-y: auto; } -.nav-item { position: relative; width: 100%; min-height: 46px; display: flex; align-items: center; gap: 11px; padding: 0 12px; border: 1px solid transparent; border-radius: 14px; background: transparent; color: var(--color-ink-soft); text-align: left; cursor: pointer; transition: color var(--duration-fast), background var(--duration-fast), border-color var(--duration-fast), transform var(--duration-fast); } -.nav-item:hover { color: var(--color-ink); background: rgba(255, 255, 255, 0.045); transform: translateX(2px); } -.nav-item.is-active { border-color: rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.075); color: var(--color-ink); box-shadow: inset 0 1px rgba(255, 255, 255, 0.045), 0 8px 22px rgba(0, 0, 0, 0.2); } -.nav-item.is-active svg { color: var(--color-primary); filter: drop-shadow(0 0 8px rgba(55, 235, 137, 0.42)); } -.nav-item svg { width: 17px; flex: 0 0 auto; } -.nav-item span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -.nav-item b { min-width: 19px; height: 19px; display: grid; place-items: center; margin-left: auto; border-radius: 7px; background: var(--color-primary-wash); color: var(--color-primary); font-size: 10px; } -.sidebar-footer { display: grid; gap: 8px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--color-line); } -.user-block { min-height: 51px; display: flex; align-items: center; gap: 10px; padding: 7px 9px; } -.user-block > span:last-child { display: flex; flex-direction: column; } -.avatar { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #242c28; color: var(--color-primary-strong); font-weight: 700; } -.workspace { min-width: 0; grid-column: 2; } -.topbar { position: sticky; top: 0; z-index: 90; height: 56px; display: flex; align-items: center; gap: 13px; padding: 0 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.055); background: rgba(5, 5, 5, 0.82); backdrop-filter: blur(22px); } -.topbar-spacer { flex: 1; } -.workspace-name { display: flex; flex-direction: column; min-width: 150px; } -.workspace-name span { color: var(--color-ink-muted); font-size: 10px; } -.workspace-name strong { font-size: 14px; } -.demo-badge { padding: 3px 8px; border: 1px solid rgba(255, 188, 82, 0.22); border-radius: 8px; background: var(--color-warning-wash); color: var(--color-warning); font-size: 10px; } -.topbar-actions { display: flex; align-items: center; gap: 9px; margin-left: auto; } -.search-box { width: clamp(200px, 22vw, 340px); height: 40px; display: flex; align-items: center; gap: 9px; padding: 0 13px; border: 1px solid var(--color-line); border-radius: 14px; background: rgba(255, 255, 255, 0.035); color: var(--color-ink-muted); transition: border-color var(--duration-fast), background var(--duration-fast), box-shadow var(--duration-fast); } -.search-box:focus-within { border-color: rgba(55, 235, 137, 0.4); background: rgba(255, 255, 255, 0.055); box-shadow: var(--shadow-glow); } -.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--color-ink); } -.search-box input::placeholder, input::placeholder, textarea::placeholder { color: #626b66; } -.period-button, .icon-button, .inside-icon, .swap-button { display: inline-grid; place-items: center; border: 1px solid var(--color-line); background: var(--color-surface-muted); color: var(--color-ink-soft); cursor: pointer; transition: border-color var(--duration-fast), color var(--duration-fast), background var(--duration-fast), transform var(--duration-fast); } -.period-button { min-height: 40px; grid-auto-flow: column; gap: 8px; padding: 0 13px; border-radius: 14px; } +.icon-button, .inside-icon, .swap-button { display: inline-grid; place-items: center; border: 1px solid var(--color-line); background: var(--color-surface-muted); color: var(--color-ink-soft); cursor: pointer; transition: border-color var(--duration-fast), color var(--duration-fast), background var(--duration-fast), transform var(--duration-fast); } .icon-button { position: relative; width: 40px; height: 40px; border-radius: 13px; } .inside-icon { width: 36px; height: 36px; border: 0; background: transparent; } -.period-button:hover, .icon-button:hover, .inside-icon:hover, .swap-button:hover { border-color: var(--color-line-strong); background: rgba(255, 255, 255, 0.07); color: var(--color-ink); transform: translateY(-1px); } -.notification-dot { position: absolute; top: -5px; right: -5px; min-width: 17px; height: 17px; display: grid; place-items: center; border: 2px solid var(--color-bg); border-radius: 9px; background: var(--color-danger); color: #fff; font: 9px var(--font-data); } -.menu-button { display: none; } +.icon-button:hover, .inside-icon:hover, .swap-button:hover { border-color: var(--color-line-strong); background: rgba(255, 255, 255, 0.07); color: var(--color-ink); transform: translateY(-1px); } +input::placeholder, textarea::placeholder { color: #626b66; } main { width: min(1560px, 100%); margin: 0 auto; padding: 12px 32px 58px; } .app-view { display: none; } .app-view.is-active { display: block; } @@ -645,13 +609,6 @@ main { width: min(1560px, 100%); margin: 0 auto; padding: 12px 32px 58px; } } @media (max-width: 1180px) { - .app-shell { grid-template-columns: 88px minmax(0, 1fr); } - .sidebar { width: 70px; padding-inline: 9px; } - .workspace { grid-column: 2; } - .brand { justify-content: center; padding-inline: 0; } - .brand-copy, .nav-item span, .nav-item b, .user-block > span:last-child, .company-context div { display: none; } - .nav-item { justify-content: center; padding: 0; } - .user-block, .company-context { justify-content: center; padding-inline: 0; } .metric-grid { grid-template-columns: repeat(2, 1fr); } .period-ribbon { grid-template-columns: repeat(3, 1fr); } .period-ribbon > .period-warning { grid-column: 1 / -1; border-top: 1px solid var(--color-line); border-left: 0; } @@ -664,7 +621,6 @@ main { width: min(1560px, 100%); margin: 0 auto; padding: 12px 32px 58px; } @media (max-width: 900px) { main { padding-inline: 20px; } - .search-box { display: none; } .settings-layout, .reminder-layout { grid-template-columns: 1fr; } .pair-query-form { grid-template-columns: 1fr 40px 1fr; } .pair-query-form .field:nth-of-type(3) { grid-column: 1 / 3; } @@ -682,20 +638,6 @@ main { width: min(1560px, 100%); margin: 0 auto; padding: 12px 32px 58px; } } @media (max-width: 720px) { - .app-shell { display: block; } - .sidebar { inset: 10px auto 10px 10px; width: 242px; transform: translateX(calc(-100% - 20px)); transition: transform var(--duration-standard) var(--ease-out); } - .sidebar.is-open { transform: none; } - .sidebar.is-open .brand-copy, .sidebar.is-open .nav-item span, .sidebar.is-open .nav-item b, .sidebar.is-open .user-block > span:last-child, .sidebar.is-open .company-context div { display: flex; } - .sidebar.is-open .nav-item { justify-content: flex-start; padding: 0 12px; } - .sidebar.is-open .company-context { justify-content: flex-start; padding-inline: 10px; } - .workspace { display: block; } - .topbar { height: 64px; padding: 0 13px; gap: 9px; } - .menu-button { display: inline-grid; } - .workspace-name { min-width: 0; } - .workspace-name span { display: none; } - .demo-badge { padding: 2px 6px; } - .period-button { display: none; } - .topbar-actions .button { width: 40px; padding: 0; font-size: 0; } main { padding: 12px 13px 42px; } .page-heading { min-height: auto; flex-direction: column; margin-bottom: 18px; } .page-heading h1 { font-size: 27px; } @@ -779,7 +721,6 @@ main { width: min(1560px, 100%); margin: 0 auto; padding: 12px 32px 58px; } } /* ===== 参考图对齐:胶囊搜索条 / 账期时间轴 / 右侧详情面板 ===== */ -.content-toolbar > .search-box { border-radius: 999px; background: rgba(255, 255, 255, 0.045); backdrop-filter: blur(18px) saturate(120%); } .timeline-panel { margin-top: 18px; padding: 18px; } .timeline { padding: 10px 4px 0; } @@ -830,14 +771,10 @@ main { width: min(1560px, 100%); margin: 0 auto; padding: 12px 32px 58px; } --radius-xl: 30px; } -body::before { content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(52vw 42vh at 62% 32%, rgba(55, 235, 137, 0.055), transparent 62%), radial-gradient(40vw 34vh at 90% 4%, rgba(102, 168, 255, 0.032), transparent 60%), radial-gradient(46vw 40vh at 28% 96%, rgba(55, 235, 137, 0.028), transparent 60%); } -.app-shell { position: relative; z-index: 0; } - .metric-card { border-color: rgba(255, 255, 255, 0.12); background: radial-gradient(120% 90% at 50% 108%, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02) 42%, transparent 60%), linear-gradient(160deg, rgba(41, 41, 41, 0.86) 0%, rgba(23, 23, 23, 0.88) 50%, rgba(12, 12, 12, 0.9) 100%); } .metric-card::before { background: radial-gradient(130% 100% at 50% 112%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 45%, transparent 62%), linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 42%, transparent 72%); } .panel::before, .period-ribbon::before, .reconcile-summary::before, .work-progress::before { background: radial-gradient(150% 110% at 50% 118%, rgba(255, 255, 255, 0.05), transparent 55%), linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 70%); } -.nav-item.is-active { border-color: rgba(255, 255, 255, 0.16); background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)); box-shadow: inset 0 1px rgba(255, 255, 255, 0.14), 0 10px 26px rgba(0, 0, 0, 0.32), 0 0 18px rgba(55, 235, 137, 0.08); } .metric-value { font-size: clamp(28px, 2.6vw, 38px); font-weight: 800; color: #ffffff; white-space: nowrap; } .metric-grid { gap: 20px; margin-bottom: 20px; } @@ -851,12 +788,6 @@ body::before { content: ""; position: fixed; inset: 0; z-index: 0; pointer-event } /* ===== 反馈修正:侧栏质感 + 模块间距统一 ===== */ -.sidebar { border-color: rgba(255, 255, 255, 0.13); background: linear-gradient(170deg, rgba(26, 26, 26, 0.92), rgba(10, 10, 10, 0.94)); box-shadow: var(--shadow-panel), 0 0 44px rgba(55, 235, 137, 0.05); } -.sidebar::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(150% 110% at 50% 118%, rgba(255, 255, 255, 0.06), transparent 55%), linear-gradient(170deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 45%, transparent 70%); pointer-events: none; } -.nav-list { gap: 10px; } -.nav-item { min-height: 48px; border-radius: 16px; } -.user-block { border: 1px solid var(--color-line); border-radius: 16px; background: var(--color-surface-muted); } - .company-alert { margin-bottom: 20px; } .period-ribbon { margin-bottom: 20px; } .company-stack-panel { margin-bottom: 20px; } From 307f9ba76f491d0726657780d3188469a13a4d0f Mon Sep 17 00:00:00 2001 From: leefer Date: Tue, 25 Aug 2026 10:14:17 +0800 Subject: [PATCH 3/7] =?UTF-8?q?HEL-122:=20=E7=AC=AC3=E6=89=B9=E2=80=94?= =?UTF-8?q?=E2=80=94=E7=AE=A1=E7=90=86=E7=AB=AF=E5=89=A9=E4=BD=996?= =?UTF-8?q?=E9=A1=B5=20+=20=E5=AF=B9=E5=BA=94=E5=BC=B9=E7=AA=97=E6=8D=A2?= =?UTF-8?q?=E5=8E=9F=E5=9E=8B=E5=A3=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: multica-agent --- web/admin.html | 831 ++++++++++++++++++++++++++++++++++++++---- web/app.js | 675 +++++++++++++++++++++++++--------- web/design-system.css | 6 +- 3 files changed, 1284 insertions(+), 228 deletions(-) diff --git a/web/admin.html b/web/admin.html index 48be864..184e16c 100644 --- a/web/admin.html +++ b/web/admin.html @@ -260,89 +260,796 @@
-

往来查询

按公司对查询双方口径、科目和逐笔凭证

-
-
- - - - - -
-
-
-

A公司B公司

统计口径 2026.01.01—2026.07.31

含 1 笔待审核
-
期初余额0.00
本期借方2,416.00
本期贷方1,136.00
期末结果应收 1,280.00万元
-
-
交易日期方向科目本方账户对方账户摘要匹配金额(万元)
2026.07.18转出应收中信 · 5316工行 · 9481往来款双边匹配1,000.00
2026.07.06转入应收中信 · 5316工行 · 9481归还往来款双边匹配−320.00
2026.06.27转出其他应收建行 · 0845工行 · 9481资金调拨单边待核600.00
-
+
+
+

往来查询

+

按公司组合查询起算日 2026-01-01 起至统计截止日的逐笔往来余额,支持穿透至银行原始流水链路。

+
+
+ +
+
+ + +
+ +
+ + + +
+
+ + +
+ +
+ + + +
+
+ · 往来余额 + 统计口径 2026.01.01—2026.07.31 +
+ +
+
+
期初余额(2026-01-01)
+
0.00
+
起算日前结转
+
+
+
本期借方发生
+
0.00
+
应收增加 + 应付偿付
+
+
+
本期贷方发生
+
0.00
+
收回款项 + 应付计提
+
+
+
期末结果
+
+
含 1 笔待审核
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + + + + + + + + +
交易日期方向科目本方账户对方账户摘要匹配金额(万元)操作
+
+
+ 点击「穿透」查看银行原始流水链路 +
+
+
-

审核中心

统一处理核算异常、账户登记与公司手工记录

-
-
风险公司 / 事项类型涉及期间影响状态操作
A公司 · 工商银行 9481上期截止 06.30,下期始于 07.22流水断档07.01—07.217 月结账已逾期
B公司 ↔ D公司金额与日期存在 2 个候选单边匹配07.18312.00 万元待审核
E公司 ↔ F公司规则无法区分应收与其他应收科目待确认07.0988.00 万元待确认
F公司 · 农业银行 3650公司已提交无业务说明起算校准01.01—01.16期初口径待复核
A公司 · MR-DEMO-001付款 80,000.00 元 · B公司 · 其他应收手工记录2026.07.29待确认往来 8.00 万元待复核
+
+
+

审核中心

+

集中处理流水断档、单边匹配、科目确认等待审事项。审核结论将同步至结账检查与各公司往来台账。

+
+ +
+ +
+ +
+
当前 0 项待审核
+
全部待审事项须在顺延后的结账日前处理完毕,逾期将阻断 7 月结账。
+
+
+ +
+
+ + + + + + + +
+
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
风险等级公司 / 事项类型期间影响状态操作
金牛置业 · 中行尾号 882107-06 至 07-16 无流水流水断档2026-0711 天无流水,与金牛煤业 320 万煤炭采购款往来无法归集,阻断 7 月结账待审核
金牛新能源 ↔ 金牛贸易3 笔单边合计 486 万单边匹配2026-07单边支付无对方对应流水,往来差异挂账,待对方选择流水佐证待审核
金牛煤业 · 手工记录场地押金 42 万科目确认2026-07「应收 / 其他应收」科目待判定,影响科目汇总口径待审核
金牛物流 · 工行基本户期初与上年结转差 28.6 万起算区间校准2026-01 起算期初余额与上年结转不衔接,全年累计数失真,需校准起算区间待审核
金牛贸易 · 手工补录现金缴存 64 万公司手工记录2026-07无银行回单附件,需人工核实后方可入账待审核
+
+ 共 0 项 · 待审核 0 项 + 审核人:系统管理员 · 操作实时写入审核日志 +
+
-

流水管理

查询全部公司的银行原始流水与归集状态

-
-
当前结果 4导出保留银行、账户、流水号、批次与源行定位
日期公司 / 银行账户方向对方户名摘要银行流水号归集状态金额
2026.07.18A公司中信银行 · 5316转出B公司往来款CIT260718018双边匹配10,000,000.00
2026.07.18B公司工商银行 · 9481转入A公司往来款ICB260718109双边匹配10,000,000.00
2026.07.12A公司建设银行 · 0845转出A公司同名账户调拨CCB260712031同公司调拨2,000,000.00
2026.07.09C公司建设银行 · 6120转出E公司资金调拨CCB260709088单边待核880,000.00
+
+
+

流水管理

+

六家成员公司上报的银行原始流水总表,含归集状态。点击任意一行可穿透查看原始流水要素与归集链路。

+
+
+ +
+
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + +
日期公司银行账户方向对方摘要银行流水号归集状态金额
+
+ 共 0 笔 + 数据范围:2026-01-01 起算 · 每月 5 日结账(7 月顺延至 08-29) +
+
-

公司与账号

维护公司主档、银行账户和一对一公司账号

-
公司全称统一社会信用代码银行账户公司账号出纳人员状态操作
+
+
+

公司与账号

+

集团成员公司的档案、银行账户与登录账号管理。公司新登记的银行账户须经审核中心确认后方可参与流水归集。

+
+
+ +
+
+ + + +
+
+ 成员公司数据截至 2026-08-20 +
+
+ + + + + + + + + + + + +
公司名称银行账户数登录账号出纳启用状态操作
+
+
+ 共 0 家公司 + 登录账号初始密码由集团总账统一发放 +
+
-

结账与期初

统一管理计算窗口、月结规则和公司期初余额

-
-

系统计算口径

修改后影响全部公司

-

公司期初余额

按公司对录入,修改保留审计记录

本方对方科目方向金额(万元)生效日状态
A公司B公司应收借方0.002026.01.01已确认
C公司E公司其他应收借方120.002026.01.01待复核
-

月度结账

2026 年 7 月 · 当前未达到结账条件

已阻断
公司流水提交5 / 6 家已完成
账户连续性2 个账户存在断档
审核事项7 项尚未处理
期初余额已锁定 2026.01.01
最近结账:2026 年 6 月 · 系统管理员 · 2026.07.05 18:10
-
+
+
+

结账与期初

+

维护全局结账参数与各公司期初往来余额,并在月度检查全部通过后执行结账。

+
+
+ +
+
+ 账期时间轴全局起算日 2026-01-01 起,每月 5 日结账 +
+
+
2026-01
已结账
+
2026-02
已结账
+
2026-03
已结账
+
2026-04
已结账
+
2026-05
已结账
+
2026-06
已结账
+
2026-07
进行中
+
2026-08
归集中
+
+
+ +
+
+
+
+ 结账设置对全部成员公司生效 +
+
+
+ + + 期初余额以此日前一日的期末数为准 +
+
+ + + 每月几号执行上月结账 · 2026-07 因故顺延至 08-29 +
+
+ +
+ + +
+ 提醒对象为当月尚未提交流水的公司联系人 +
+
+ + +
+
+
+ +
+
+ 期初余额管理2026-01-01 起算的公司间往来期初数 + +
+
+ + + + + +
本方公司对方公司科目方向金额(万元)生效日状态
+
+
+
+ +
+
+ 月度结账2026 年 7 月 · 当前未达到结账条件 + 已阻断 +
+
+
+ 公司流水提交 +
流水提交
5 / 6 家已完成
+
待处理
+
+
+ 账户连续性 +
账户连续
2 个账户存在断档
+
阻断
+
+
+ 审核事项 +
审核完成
0 项尚未处理
+
阻断
+
+
+ 期初余额 +
期初锁定
已锁定 2026.01.01
+
已通过
+
+
+ + + + +
+ 最近结账:2026 年 6 月 · 系统管理员 · 2026.07.05 18:10 + + +
+
+
-

提醒管理

查看自动提醒,并向公司出纳发送站内提醒

-
-

发送手动提醒

当前仅支持系统内通知

-

提醒记录

自动与手动提醒统一留痕

A公司 7 月流水缺失自动提醒 · 截止 08.05 · 已逾期未处理
B公司单边流水待核验手动提醒 · 管理员 · 今天 09:30处理中
C公司 7 月流水已确认自动提醒 · 昨天 16:42已完成
+
+
+

提醒管理

+

向成员公司发送处理提醒,并跟踪系统提醒与人工提醒的触达与处理状态。

+
+
+ +
+
+
+ 发送处理提醒将以人工提醒形式送达所选公司出纳与财务负责人 +
+
+
+ +
+ +
+
+ + +
+
+ + + +
+
+ + +
+ + +
+
+ +
+
+ 提醒历史含系统自动触发与人工发送的全部提醒记录 +
+
+ + + +
+
+ + + + + + + + + + + + + +
公司类型内容摘要发送时间截止日期处理状态操作
+
+
+ 共 0 条提醒记录 + 未读 0 · 处理中 0 · 已完成 0 +
+
- -
-

新增公司

公司主档与公司账号可一次创建

-

创建后生成随机初始密码,仅显示一次,首次登录必须修改。

-
-
-
- -
-

新增期初余额

按本方视角记录公司间期初方向

-

提交后进入复核,不能直接修改已确认期初。

-
-
-
- -
-

审核事项

原始证据与处理决定将一并留痕

-
-
-
-
- -
-

执行 2026 年 7 月结账

结账后本期结果将锁定,补录流水需走重开流程

-
结账检查已通过公司提交、账户连续性、审核事项和期初余额均符合当前口径。
-
-
-
+ + + + + + + + + + + + + + + + + + + + + + + + + +
From 1d07812fa84cd870b0c2c448089efbacb4ee49d1 Mon Sep 17 00:00:00 2001 From: leefer Date: Tue, 25 Aug 2026 11:49:38 +0800 Subject: [PATCH 5/7] =?UTF-8?q?HEL-124:=20=E7=AC=AC5=E6=89=B9=E2=80=94?= =?UTF-8?q?=E2=80=94=E7=BC=BA=E5=8F=A3=E6=80=81=E8=A1=A5=E7=94=BB=20+=20?= =?UTF-8?q?=E5=93=8D=E5=BA=94=E5=BC=8F=E6=89=AB=E5=B0=BE=20+=20=E6=B8=85?= =?UTF-8?q?=E7=90=86=E6=97=A7=E9=BB=91=E7=BB=BF=E6=AE=8B=E7=95=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - design-system.css: 补 .app-view/.is-active/.sr-only/.skip-link 结构类、Toast(带 kind)、侧滑详情抽屉、加载骨架/加载中行、.notice.success、窄屏侧栏折叠(汉堡菜单) - app.js: 重写 showToast(带 kind) 与 initDetailDrawer 用新 token;fetch 补加载中/错误/空态;detailContent 改真实文案并接线 data-detail 触发;清理 animateView/initMotion/initShell 旧类名残留;COMPANY_FLOWS 加「原型占位」注释 - admin.html/company.html: 移除 styles.css 引用、bump ?v=3;待办列表接 data-detail - 删除 web/styles.css(源头删净 #050505/#37eb89/--color-*/--jn-* 等旧黑绿残留) - index/login 页 bump ?v=2 Co-authored-by: multica-agent --- web/admin.html | 13 +- web/app.js | 222 +++++------ web/company.html | 13 +- web/design-system.css | 118 ++++++ web/index.html | 2 +- web/login-admin.html | 4 +- web/login-company.html | 4 +- web/styles.css | 827 ----------------------------------------- 8 files changed, 247 insertions(+), 956 deletions(-) delete mode 100644 web/styles.css diff --git a/web/admin.html b/web/admin.html index 184e16c..a3d3afe 100644 --- a/web/admin.html +++ b/web/admin.html @@ -5,8 +5,7 @@ 总账管理端 · 金牛集团 - - + @@ -206,7 +205,7 @@ 待办队列12 项待处理 · 下方为影响结账的前 4 项,从第 1 项开始 -
+
金牛置业 · 中行尾号 8821 账户 7 月流水断档 11 天
@@ -214,7 +213,7 @@
-
+
金牛农业 7 月全部账户未提交流水
@@ -222,7 +221,7 @@
-
+
金牛新能源 ↔ 金牛贸易 3 笔单边流水待对方证据
@@ -230,7 +229,7 @@
-
+
5 笔手工记录待确认往来科目
@@ -1051,7 +1050,7 @@
- + + diff --git a/web/design-system.css b/web/design-system.css index 2052ad2..a849891 100644 --- a/web/design-system.css +++ b/web/design-system.css @@ -363,6 +363,9 @@ p { margin: 0; } .list-row .lr-title { font-weight: 550; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .list-row .lr-sub { font-size: 12px; color: var(--muted); margin-top: 1px; } .list-row .lr-side { text-align: right; flex: none; } +[data-detail] { cursor: pointer; } +.list-row[data-detail]:hover { background: var(--fg-soft); } +.list-row[data-detail] { margin-inline: -4px; padding-inline: 4px; border-radius: var(--radius); } /* ─── 弹窗 ──────────────────────────────────────────────────────── */ .modal-backdrop { @@ -573,3 +576,118 @@ a.flow-step.doing:hover { background: color-mix(in oklch, var(--warn) 16%, trans .portal-card p { color: var(--muted); font-size: 13px; margin-top: 6px; } .portal-card .pc-go { font-size: 12.5px; font-weight: 600; color: var(--accent); margin-top: 14px; } @media (max-width: 720px) { .portal-grid { grid-template-columns: 1fr; } } + +/* ─── SPA 视图切换 / 无障碍结构类 ───────────────────────────────── */ +.app-view { display: none; } +.app-view.is-active { display: block; } +.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } +.skip-link { + position: fixed; top: 8px; left: 50%; z-index: 500; + padding: 8px 14px; + border-radius: var(--radius); + background: var(--accent); color: var(--surface); + font-size: 13px; font-weight: 600; + transform: translate(-50%, -150%); + transition: transform 0.12s ease; +} +.skip-link:focus { transform: translate(-50%, 0); } + +/* ─── 图标按钮 / 窄屏侧栏折叠 ──────────────────────────────────── */ +.icon-button { + display: inline-grid; place-items: center; + width: 34px; height: 34px; + border: 1px solid var(--border); + border-radius: var(--radius); + background: var(--surface); color: var(--muted); + cursor: pointer; + transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease; +} +.icon-button:hover { color: var(--fg); border-color: color-mix(in oklch, var(--fg) 40%, var(--border)); background: var(--fg-soft); } +.icon-button svg { width: 18px; height: 18px; } +.menu-button { display: none; } +@media (max-width: 860px) { + .menu-button { display: inline-grid; } + .shell { grid-template-columns: 1fr; } + .sidebar { + position: fixed; top: 0; left: 0; bottom: 0; z-index: 40; + width: var(--side-w); height: 100dvh; + transform: translateX(-100%); + transition: transform 0.2s ease; + } + .sidebar.is-open { transform: none; box-shadow: 0 0 48px color-mix(in oklch, var(--fg) 22%, transparent); } +} + +/* ─── Toast 轻量提示 ───────────────────────────────────────────── */ +.toast-region { position: fixed; right: 16px; bottom: 16px; z-index: 300; display: grid; gap: 8px; } +.toast { + display: flex; align-items: flex-start; gap: 9px; + min-width: 260px; max-width: 380px; + padding: 11px 14px; + border: 1px solid var(--border); + border-radius: var(--radius-lg); + background: var(--surface); + box-shadow: 0 12px 34px color-mix(in oklch, var(--fg) 18%, transparent); + font-size: 13px; +} +.toast .t-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; margin-top: 5px; background: var(--muted); } +.toast .t-body { min-width: 0; } +.toast .t-title { font-weight: 650; } +.toast .t-detail { color: var(--muted); font-size: 12px; margin-top: 1px; } +.toast.success { border-color: color-mix(in oklch, var(--success) 35%, var(--border)); } +.toast.success .t-dot { background: var(--success); } +.toast.warn { border-color: color-mix(in oklch, var(--warn) 40%, var(--border)); } +.toast.warn .t-dot { background: var(--warn); } +.toast.danger { border-color: color-mix(in oklch, var(--danger) 35%, var(--border)); } +.toast.danger .t-dot { background: var(--danger); } +.toast.info { border-color: color-mix(in oklch, var(--info) 35%, var(--border)); } +.toast.info .t-dot { background: var(--info); } +@media (max-width: 720px) { + .toast-region { right: 12px; bottom: 12px; left: 12px; } + .toast { min-width: 0; max-width: none; } +} + +/* ─── 侧滑详情抽屉(用 modal/card token 重画) ─────────────────── */ +.drawer { + position: fixed; top: 0; right: 0; bottom: 0; z-index: 60; + width: min(400px, calc(100vw - 24px)); + display: flex; flex-direction: column; + background: var(--surface); + border-left: 1px solid var(--border); + box-shadow: -18px 0 50px color-mix(in oklch, var(--fg) 22%, transparent); + transform: translateX(100%); + visibility: hidden; + transition: transform 0.22s ease, visibility 0.22s; +} +.drawer.is-open { transform: none; visibility: visible; } +.drawer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 18px 20px 12px; border-bottom: 1px solid var(--border); } +.drawer-head .d-title { font-size: 16px; font-weight: 700; margin-top: 6px; } +.drawer-head .d-desc { color: var(--muted); font-size: 12.5px; margin-top: 4px; } +.drawer-body { flex: 1; overflow-y: auto; padding: 16px 20px; } +.drawer-body .kv { grid-template-columns: auto 1fr; gap: 8px 18px; } +.drawer-body .kv dt { color: var(--muted); white-space: nowrap; } +.drawer-body .kv dd { text-align: right; word-break: break-all; } +.drawer-tip { margin: 0 20px 12px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); color: var(--muted); font-size: 12.5px; } +.drawer-tip strong { display: block; color: var(--fg); margin-bottom: 4px; } +.drawer-foot { display: flex; justify-content: flex-end; gap: 8px; padding: 14px 20px; border-top: 1px solid var(--border); } + +/* ─── 加载中骨架 / 表内加载行 ──────────────────────────────────── */ +.skeleton { display: block; border-radius: var(--radius); background: var(--fg-soft); position: relative; overflow: hidden; } +.skeleton::after { + content: ""; position: absolute; inset: 0; + background: linear-gradient(90deg, transparent, color-mix(in oklch, var(--surface) 60%, transparent), transparent); + animation: skeleton-shimmer 1.3s ease-in-out infinite; +} +@keyframes skeleton-shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } } +.skeleton-line { height: 12px; margin-bottom: 10px; } +.loading-row { padding: 40px 20px; text-align: center; color: var(--muted); font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em; } +.loading-inline { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-family: var(--font-mono); font-size: 12.5px; } +.loading-inline::before { + content: ""; width: 12px; height: 12px; border-radius: 50%; + border: 2px solid var(--border); border-top-color: var(--accent); + animation: loading-spin 0.7s linear infinite; +} +@keyframes loading-spin { to { transform: rotate(360deg); } } + +/* ─── 提示条补充:成功态 ───────────────────────────────────────── */ +.notice.success { background: var(--success-soft); border-color: color-mix(in oklch, var(--success) 30%, transparent); } +.notice.success .n-title { color: color-mix(in oklch, var(--success) 82%, black); } diff --git a/web/index.html b/web/index.html index 3b71ca7..2a00177 100644 --- a/web/index.html +++ b/web/index.html @@ -4,7 +4,7 @@ 金牛实业资金往来管理系统 · 入口 - +
diff --git a/web/login-admin.html b/web/login-admin.html index c3ecfc8..bd8c8e0 100644 --- a/web/login-admin.html +++ b/web/login-admin.html @@ -4,7 +4,7 @@ 登录 · 金牛实业资金往来管理系统 - +
- + diff --git a/web/login-company.html b/web/login-company.html index 912e1ca..ebf7f8c 100644 --- a/web/login-company.html +++ b/web/login-company.html @@ -4,7 +4,7 @@ 登录 · 金牛实业资金往来管理系统 - +
- + diff --git a/web/styles.css b/web/styles.css deleted file mode 100644 index 12dac42..0000000 --- a/web/styles.css +++ /dev/null @@ -1,827 +0,0 @@ -:root { - color-scheme: dark; - --font-ui: "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", system-ui, sans-serif; - --font-data: "Segoe UI", "Microsoft YaHei UI", system-ui, sans-serif; - --color-bg: #050505; - --color-bg-soft: #0a0a0a; - --color-nav: #0a0a0a; - --color-surface: rgba(22, 22, 22, 0.82); - --color-surface-solid: #161616; - --color-surface-raised: #1c1c1c; - --color-surface-muted: rgba(255, 255, 255, 0.035); - --color-line: rgba(255, 255, 255, 0.09); - --color-line-strong: rgba(255, 255, 255, 0.16); - --color-ink: #f2f7f4; - --color-ink-soft: #a6b0aa; - --color-ink-muted: #89938d; - --color-primary: #37eb89; - --color-primary-strong: #70ffae; - --color-primary-dark: #08160e; - --color-primary-wash: rgba(55, 235, 137, 0.11); - --color-positive: #37eb89; - --color-positive-wash: rgba(55, 235, 137, 0.1); - --color-warning: #ffbc52; - --color-warning-wash: rgba(255, 188, 82, 0.11); - --color-danger: #ff626d; - --color-danger-wash: rgba(255, 98, 109, 0.11); - --color-info: #66a8ff; - --color-info-wash: rgba(102, 168, 255, 0.11); - --radius-sm: 10px; - --radius-md: 16px; - --radius-lg: 22px; - --radius-xl: 28px; - --shadow-panel: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.035); - --shadow-low: 0 12px 32px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.06), inset 0 -1px 0 rgba(0, 0, 0, 0.22); - --shadow-glow: 0 0 28px rgba(55, 235, 137, 0.12); - --duration-fast: 150ms; - --duration-standard: 260ms; - --ease-out: cubic-bezier(0.22, 1, 0.36, 1); - /* Login page — 深海军蓝 × 账房金 (HEL-32 已定稿) */ - --jn-navy-900: #0B2740; - --jn-navy-800: #123A5C; - --jn-navy-700: #1B4F7A; - --jn-blue-600: #1D4ED8; - --jn-blue-700: #1E40AF; - --jn-blue-800: #1E3A8A; - --jn-blue-50: #EFF6FF; - --jn-gold-500: #C9A227; - --jn-gold-400: #D9B84A; - --jn-bg-page: #F5F7FA; - --jn-bg-panel: #FFFFFF; - --jn-text-1: #1F2937; - --jn-text-2: #6B7280; - --jn-text-3: #9CA3AF; - --jn-border: #E5E7EB; - --jn-border-strong: #D1D5DB; - --jn-error: #DC2626; - --jn-error-bg: #FEF2F2; - --jn-disabled-bg: #F3F4F6; -} - -* { box-sizing: border-box; } -html { min-width: 320px; background: var(--color-bg); scroll-behavior: smooth; } -body { margin: 0; min-width: 320px; min-height: 100vh; background: var(--color-bg); color: var(--color-ink); font: 14px/1.6 var(--font-ui); -webkit-font-smoothing: antialiased; } -button, input, select, textarea { font: inherit; } -button, a, summary { -webkit-tap-highlight-color: transparent; } -button { color: inherit; } -a { color: inherit; text-decoration: none; } -h1, h2, h3, p, dl, dd { margin: 0; } -svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; } -strong, .amount, .number, dd { font-variant-numeric: tabular-nums; } -::selection { background: rgba(55, 235, 137, 0.26); color: #fff; } -::-webkit-scrollbar { width: 9px; height: 9px; } -::-webkit-scrollbar-track { background: transparent; } -::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 10px; background: rgba(255, 255, 255, 0.15); background-clip: padding-box; } - -.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } -.skip-link { position: fixed; top: 8px; left: 50%; z-index: 500; padding: 8px 12px; border-radius: var(--radius-sm); background: var(--color-primary); color: var(--color-primary-dark); transform: translate(-50%, -150%); } -.skip-link:focus { transform: translate(-50%, 0); } -:focus-visible { outline: 2px solid var(--color-primary-strong); outline-offset: 3px; } -[hidden] { display: none !important; } - -/* Application frame */ -.icon-button, .inside-icon, .swap-button { display: inline-grid; place-items: center; border: 1px solid var(--color-line); background: var(--color-surface-muted); color: var(--color-ink-soft); cursor: pointer; transition: border-color var(--duration-fast), color var(--duration-fast), background var(--duration-fast), transform var(--duration-fast); } -.icon-button { position: relative; width: 40px; height: 40px; border-radius: 13px; } -.inside-icon { width: 36px; height: 36px; border: 0; background: transparent; } -.icon-button:hover, .inside-icon:hover, .swap-button:hover { border-color: var(--color-line-strong); background: rgba(255, 255, 255, 0.07); color: var(--color-ink); transform: translateY(-1px); } -input::placeholder, textarea::placeholder { color: #626b66; } -main { width: min(1560px, 100%); margin: 0 auto; padding: 12px 32px 58px; } -.app-view { display: none; } -.app-view.is-active { display: block; } -.page-heading { min-height: 56px; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 18px; } -.page-heading h1 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; letter-spacing: 0; } -.page-heading p { margin-top: 5px; color: var(--color-ink-muted); } -.content-toolbar { display: contents; } -.content-toolbar > .search-box { margin-inline: auto; width: clamp(260px, 42vw, 520px); } -.content-toolbar .toolbar-group { display: flex; align-items: center; gap: 10px; flex-shrink: 0; } -.dashboard-head { align-items: center; gap: 20px; margin-bottom: 20px; } - -/* Commands and fields */ -.button { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 15px; border: 1px solid transparent; border-radius: 13px; font-weight: 700; cursor: pointer; transition: transform var(--duration-fast), box-shadow var(--duration-fast), background var(--duration-fast), border-color var(--duration-fast); } -.button:hover { transform: translateY(-1px); } -.button:active { transform: translateY(0) scale(0.985); } -.button.primary { background: var(--color-primary); color: var(--color-primary-dark); box-shadow: 0 8px 24px rgba(55, 235, 137, 0.18); } -.button.primary:hover { background: var(--color-primary-strong); box-shadow: 0 10px 30px rgba(55, 235, 137, 0.25); } -.button.secondary { border-color: var(--color-line); background: rgba(255, 255, 255, 0.045); color: var(--color-ink); } -.button.secondary:hover { border-color: var(--color-line-strong); background: rgba(255, 255, 255, 0.08); } -.button.small { min-height: 34px; padding-inline: 11px; border-radius: 11px; font-size: 11px; } -.button.wide { width: 100%; } -.button:disabled { opacity: 0.42; cursor: not-allowed; transform: none; } -.text-button { padding: 3px 0; border: 0; background: none; color: var(--color-primary); cursor: pointer; } -.text-button:hover { color: var(--color-primary-strong); } -.full-text-button { width: 100%; padding: 13px; border-top: 1px solid var(--color-line); } -.field { min-width: 0; display: flex; flex-direction: column; gap: 6px; color: var(--color-ink-soft); } -.field > span { color: var(--color-ink-muted); font-size: 11px; } -.field input, .field select, .field textarea { width: 100%; min-height: 40px; padding: 9px 11px; border: 1px solid var(--color-line); border-radius: 11px; outline: 0; background: rgba(2, 5, 3, 0.48); color: var(--color-ink); transition: border-color var(--duration-fast), box-shadow var(--duration-fast), background var(--duration-fast); } -.field textarea { resize: vertical; } -.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(55, 235, 137, 0.5); background: rgba(2, 5, 3, 0.7); box-shadow: 0 0 0 3px rgba(55, 235, 137, 0.08); } -.field select { color-scheme: dark; } -.field.compact { min-width: 150px; } -.password-field { display: grid; grid-template-columns: 1fr 38px; border: 1px solid var(--color-line); border-radius: 12px; background: rgba(2, 5, 3, 0.48); } -.password-field input { border: 0; background: transparent; } -.check-field { display: flex; align-items: center; gap: 8px; color: var(--color-ink-soft); } -.check-field input { accent-color: var(--color-primary); } -.swap-button { width: 38px; height: 38px; border-radius: 12px; align-self: end; } - -/* Glass surfaces */ -.panel, .period-ribbon, .query-band, .filter-bar, .filter-grid, .pair-report, .work-progress, .reconcile-summary { position: relative; border: 1px solid var(--color-line); border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(28, 28, 28, 0.82) 0%, rgba(16, 16, 16, 0.86) 50%, rgba(10, 10, 10, 0.88) 100%); box-shadow: var(--shadow-low); backdrop-filter: blur(22px) saturate(120%); transition: transform var(--duration-standard) var(--ease-out), box-shadow var(--duration-standard), border-color var(--duration-standard); } -.panel::before, .period-ribbon::before, .reconcile-summary::before, .work-progress::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0) 70%); pointer-events: none; } -.panel:hover { box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32), inset 0 1px rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.14); } -.panel { min-width: 0; overflow: hidden; } -.panel > * { position: relative; } -.panel-heading { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 14px 17px; border-bottom: 1px solid var(--color-line); } -.panel-heading h2 { font-size: 15px; } -.panel-heading p { margin-top: 3px; color: var(--color-ink-muted); font-size: 11px; } -.status { display: inline-flex; align-items: center; justify-content: center; gap: 5px; width: max-content; min-height: 23px; padding: 2px 8px; border: 1px solid transparent; border-radius: 8px; font-size: 10px; font-style: normal; white-space: nowrap; } -.status.success { border-color: rgba(55, 235, 137, 0.18); background: var(--color-positive-wash); color: var(--color-positive); } -.status.warning { border-color: rgba(255, 188, 82, 0.18); background: var(--color-warning-wash); color: var(--color-warning); } -.status.danger { border-color: rgba(255, 98, 109, 0.18); background: var(--color-danger-wash); color: var(--color-danger); } -.status.neutral { border-color: var(--color-line); background: rgba(255, 255, 255, 0.045); color: var(--color-ink-soft); } -.task-level { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 10px; font-size: 10px; font-style: normal; font-weight: 800; } -.task-level.danger { background: var(--color-danger-wash); color: var(--color-danger); } -.task-level.warning { background: var(--color-warning-wash); color: var(--color-warning); } -.task-level.neutral { background: rgba(255, 255, 255, 0.055); color: var(--color-ink-soft); } - -/* Dashboard */ -.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin: 0 0 18px; } -.metric-card { position: relative; min-height: 164px; display: grid; grid-template-columns: minmax(0, 1fr) 48px; align-content: space-between; gap: 14px; padding: 24px 22px; overflow: hidden; border: 1px solid var(--color-line); border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(28, 28, 28, 0.86) 0%, rgba(14, 14, 14, 0.88) 50%, rgba(8, 8, 8, 0.9) 100%); box-shadow: var(--shadow-low); backdrop-filter: blur(24px) saturate(125%); transform: perspective(900px) rotateX(0.6deg) rotateY(-0.8deg); transform-origin: center bottom; transition: transform var(--duration-standard) var(--ease-out), border-color var(--duration-standard), box-shadow var(--duration-standard); } -.metric-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(165deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0) 72%); pointer-events: none; } -.metric-card::after { content: ""; position: absolute; inset: auto 15% -1px 15%; height: 1px; background: currentColor; opacity: 0.35; box-shadow: 0 -8px 24px currentColor; transition: opacity var(--duration-standard), box-shadow var(--duration-standard); } -.metric-card:hover::after { opacity: 0.7; box-shadow: 0 -10px 34px currentColor; } -.metric-card:hover { transform: perspective(900px) rotateX(3.5deg) rotateY(-4.5deg) translateY(-10px); border-color: rgba(255, 255, 255, 0.32); box-shadow: 0 36px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 1px rgba(255, 255, 255, 0.14); } -.metric-copy { align-self: start; } -.metric-label { display: block; color: var(--color-ink-soft); font-size: 13px; } -.metric-value { display: block; margin-top: 7px; font: 700 34px/1.05 var(--font-data); letter-spacing: 0; } -.metric-value small { margin-left: 5px; color: var(--color-ink-muted); font: 11px var(--font-ui); } -.metric-icon { position: relative; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--color-line); border-radius: 50%; background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02) 70%); color: var(--color-ink-soft); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); } -.metric-icon::after { content: ""; position: absolute; inset: -3px; border-radius: 50%; border: 1px solid currentColor; opacity: 0.12; pointer-events: none; } -.metric-foot { grid-column: 1 / -1; color: var(--color-ink-muted); font-size: 11px; } -.metric-foot strong { color: var(--color-positive); } -.metric-card.warning { color: var(--color-warning); } -.metric-card.danger { color: var(--color-danger); } -.metric-card.success { color: var(--color-positive); } -.metric-card .metric-copy { color: var(--color-ink); } -.metric-card .metric-icon { color: var(--color-ink-soft); } -.metric-card .metric-foot { color: var(--color-ink-muted); } -.metric-card[data-metric-link], .metric-card[data-metric-action] { cursor: pointer; } -.metric-card.warning .metric-icon, .metric-card.warning .metric-foot strong { color: var(--color-warning); } -.metric-card.warning .metric-icon::after { opacity: 0.28; } -.metric-card.danger .metric-icon, .metric-card.danger .metric-foot strong { color: var(--color-danger); } -.metric-card.danger .metric-icon::after { opacity: 0.32; } -.metric-card.success .metric-icon { color: var(--color-positive); } -.metric-card.success .metric-icon::after { opacity: 0.22; border-color: var(--color-positive); } -.period-ribbon { display: grid; grid-template-columns: 1fr 1fr 1fr minmax(310px, 1.4fr); margin-bottom: 18px; overflow: hidden; } -.period-ribbon > div { min-height: 72px; display: flex; flex-direction: column; justify-content: center; padding: 13px 17px; border-left: 1px solid var(--color-line); } -.period-ribbon > div:first-child { border-left: 0; } -.period-ribbon span, .period-ribbon small { color: var(--color-ink-muted); } -.period-ribbon strong { margin-top: 3px; } -.period-ribbon > .period-warning { display: grid; grid-template-columns: 24px minmax(0, 1fr) auto; align-items: center; gap: 10px; } -.period-warning > svg { color: var(--color-warning); } -.period-warning > span { display: flex; flex-direction: column; } -.period-warning > span strong { color: var(--color-ink); } -.admin-dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(310px, 0.58fr); gap: 18px; margin-bottom: 18px; } -.task-list button { width: 100%; min-height: 73px; display: grid; grid-template-columns: 32px minmax(0, 1fr) auto 18px; align-items: center; gap: 11px; padding: 12px 16px; border: 0; border-top: 1px solid var(--color-line); background: transparent; text-align: left; cursor: pointer; transition: background var(--duration-fast); } -.task-list button:first-child { border-top: 0; } -.task-list button:hover { background: rgba(255, 255, 255, 0.035); } -.task-list button > span:nth-child(2) { display: flex; flex-direction: column; } -.task-list small, .task-list button > b { color: var(--color-ink-muted); font-size: 11px; } -.task-list button > svg { color: var(--color-ink-muted); } -.quick-pair-form { display: grid; grid-template-columns: 1fr 38px 1fr; gap: 10px; padding: 16px; } -.quick-pair-form .button { grid-column: 1 / -1; } -.quick-result { margin: 0 16px 16px; padding: 14px; border: 1px solid rgba(55, 235, 137, 0.16); border-radius: var(--radius-md); background: var(--color-primary-wash); } -.quick-result span, .quick-result p { color: var(--color-ink-muted); } -.quick-result strong { display: block; margin: 4px 0; color: var(--color-primary-strong); font: 700 22px var(--font-data); } -.quick-result small { margin-left: 4px; font: 10px var(--font-ui); } - -/* Key-company / account-coverage flat list (replaces the floating 3D card stack) */ -.company-list { display: grid; gap: 8px; padding: 10px 12px 14px; } -.company-row { position: relative; display: grid; grid-template-columns: 34px minmax(0, 1fr) auto auto; align-items: center; gap: 12px; min-height: 62px; padding: 11px 13px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: linear-gradient(160deg, rgba(22, 22, 22, 0.7) 0%, rgba(12, 12, 12, 0.75) 100%); cursor: pointer; transition: background var(--duration-fast), border-color var(--duration-fast), transform var(--duration-standard) var(--ease-out), box-shadow var(--duration-standard); } -.company-row:hover { background: linear-gradient(160deg, rgba(32, 32, 32, 0.8) 0%, rgba(18, 18, 18, 0.85) 100%); border-color: var(--color-line-strong); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25); } -.company-row:focus-visible { outline: 2px solid var(--color-primary-strong); outline-offset: 2px; } -.company-row-mark { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: var(--color-primary-wash); color: var(--color-primary); font-weight: 800; font-size: 13px; } -.company-row.is-warning .company-row-mark { background: var(--color-warning-wash); color: var(--color-warning); } -.company-row.is-danger .company-row-mark { background: var(--color-danger-wash); color: var(--color-danger); } -.company-row-body { display: flex; flex-direction: column; min-width: 0; } -.company-row-body strong { font-size: 14px; } -.company-row-body small { color: var(--color-ink-muted); font-size: 11px; } -.company-row-figure { display: flex; flex-direction: column; align-items: flex-end; text-align: right; min-width: 92px; } -.company-row-figure strong { font: 600 14px var(--font-data); color: var(--color-ink); } -.company-row-figure small { color: var(--color-ink-muted); font-size: 11px; } -.company-row .status { flex: 0 0 auto; } - -/* Timeline-strip: horizontal calculation window ribbon */ -.timeline-strip { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 14px; align-items: stretch; padding: 16px 18px; border: 1px solid var(--color-line); border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(22, 22, 22, 0.86), rgba(10, 10, 10, 0.86)); box-shadow: var(--shadow-low); backdrop-filter: blur(22px) saturate(125%); } -.timeline-strip::before { content: ""; position: absolute; } -.timeline-legend { display: flex; flex-direction: column; justify-content: center; gap: 6px; } -.timeline-legend strong { font-size: 13px; } -.timeline-legend span { color: var(--color-ink-muted); font-size: 11px; } -.timeline-body { position: relative; min-height: 88px; padding-top: 6px; } -.timeline-axis { position: relative; height: 14px; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); border-bottom: 1px solid var(--color-line); } -.timeline-axis span { font: 600 10px var(--font-data); color: var(--color-ink-muted); align-self: end; padding-bottom: 4px; text-align: left; } -.timeline-axis span + span { border-left: 1px solid var(--color-line); padding-left: 4px; } -.timeline-rows { display: grid; gap: 8px; margin-top: 12px; } -.timeline-row { position: relative; display: grid; grid-template-columns: 96px minmax(0, 1fr); align-items: center; gap: 10px; font-size: 11px; } -.timeline-row > span { color: var(--color-ink-soft); } -.timeline-track { position: relative; height: 14px; border-radius: 7px; background: rgba(255, 255, 255, 0.04); overflow: hidden; } -.timeline-track i { position: absolute; top: 0; bottom: 0; border-radius: inherit; } -.timeline-track i.coverage { background: linear-gradient(90deg, rgba(55, 235, 137, 0.35), rgba(55, 235, 137, 0.55)); box-shadow: inset 0 0 0 1px rgba(112, 255, 174, 0.32); } -.timeline-track i.warning { background: linear-gradient(90deg, rgba(255, 188, 82, 0.32), rgba(255, 188, 82, 0.52)); box-shadow: inset 0 0 0 1px rgba(255, 188, 82, 0.32); } -.timeline-track i.danger { background: linear-gradient(90deg, rgba(255, 98, 109, 0.32), rgba(255, 98, 109, 0.52)); box-shadow: inset 0 0 0 1px rgba(255, 98, 109, 0.32); } -.timeline-today { position: absolute; top: -2px; bottom: -2px; width: 2px; background: var(--color-primary-strong); box-shadow: 0 0 12px rgba(112, 255, 174, 0.6); border-radius: 1px; } -.timeline-today::after { content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 10px; height: 10px; border-radius: 50%; background: var(--color-primary-strong); box-shadow: 0 0 0 4px rgba(112, 255, 174, 0.18); } -.timeline-strip-panel { position: relative; } - -/* Ledger and queries */ -.inline-search { width: min(240px, 38vw); height: 36px; display: flex; align-items: center; gap: 8px; padding: 0 11px; border: 1px solid var(--color-line); border-radius: 11px; background: rgba(0, 0, 0, 0.18); color: var(--color-ink-muted); } -.inline-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--color-ink); } -.ledger-head, .company-ledger summary { display: grid; grid-template-columns: minmax(210px, 1.4fr) repeat(2, minmax(100px, 0.75fr)) minmax(150px, 0.9fr) 86px 24px; align-items: center; gap: 10px; } -.ledger-head { min-height: 42px; padding: 0 16px; border-bottom: 1px solid var(--color-line); color: var(--color-ink-muted); font-size: 10px; } -.company-ledger { border-top: 1px solid var(--color-line); } -.company-ledger:first-child { border-top: 0; } -.company-ledger summary { min-height: 72px; padding: 10px 16px; list-style: none; cursor: pointer; transition: background var(--duration-fast); } -.company-ledger summary::-webkit-details-marker { display: none; } -.company-ledger summary:hover { background: rgba(255, 255, 255, 0.035); } -.company-ledger summary > svg { transition: transform var(--duration-standard) var(--ease-out); } -.company-ledger[open] summary > svg { transform: rotate(180deg); } -.company-name { display: grid; grid-template-columns: 38px minmax(0, 1fr); align-items: center; column-gap: 10px; } -.company-name i { width: 36px; height: 36px; grid-row: 1 / 3; display: grid; place-items: center; border-radius: 12px; background: var(--color-primary-wash); color: var(--color-primary); font-style: normal; font-weight: 800; } -.company-name small { color: var(--color-ink-muted); } -.amount { font: 600 13px var(--font-data); } -.amount.debit { color: var(--color-positive); } -.amount.credit { color: var(--color-warning); } -.ledger-breakdown { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--color-line); background: rgba(0, 0, 0, 0.13); } -.ledger-breakdown section { padding: 14px 16px; } -.ledger-breakdown section + section { border-left: 1px solid var(--color-line); } -.ledger-breakdown header { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--color-ink-soft); } -.subject-row { width: 100%; min-height: 48px; display: grid; grid-template-columns: minmax(0, 1fr) auto 18px; align-items: center; gap: 10px; padding: 8px 10px; border: 0; border-top: 1px solid var(--color-line); background: transparent; text-align: left; cursor: pointer; } -.subject-row:hover { background: rgba(255, 255, 255, 0.035); } -.subject-row span { display: flex; flex-direction: column; } -.subject-row small { color: var(--color-ink-muted); } -.query-band, .filter-grid { padding: 17px; margin-bottom: 18px; } -.pair-query-form { display: grid; grid-template-columns: minmax(150px, 1fr) 38px minmax(150px, 1fr) minmax(150px, 0.8fr) auto; align-items: end; gap: 11px; } -.pair-report { overflow: hidden; } -.pair-report-heading { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; border-bottom: 1px solid var(--color-line); } -.pair-report-heading p { color: var(--color-ink-muted); } -.pair-result { text-align: right; } -.pair-result strong { display: block; color: var(--color-primary); font: 700 22px var(--font-data); } -.pair-balance-line { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--color-line); } -.pair-balance-line div { min-height: 76px; display: flex; flex-direction: column; justify-content: center; padding: 12px 16px; border-left: 1px solid var(--color-line); } -.pair-balance-line div:first-child { border-left: 0; } -.pair-balance-line span, .pair-balance-line small { color: var(--color-ink-muted); } -.pair-balance-line strong { margin-top: 3px; font: 600 15px var(--font-data); } -.pair-final strong { color: var(--color-primary); font-size: 19px; } -.subject-strip { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--color-line); } -.subject-strip button { min-height: 62px; display: flex; flex-direction: column; justify-content: center; padding: 9px 14px; border: 0; border-left: 1px solid var(--color-line); background: rgba(255, 255, 255, 0.018); text-align: left; cursor: pointer; } -.subject-strip button:first-child { border-left: 0; } -.subject-strip button.is-active { background: var(--color-primary-wash); color: var(--color-primary); box-shadow: inset 0 -2px var(--color-primary); } -.subject-strip span { color: var(--color-ink-muted); font-size: 10px; } - -/* Filters and tables */ -.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px; margin-bottom: 18px; } -.segmented { display: flex; gap: 4px; padding: 4px; overflow-x: auto; border: 1px solid var(--color-line); border-radius: 13px; background: rgba(0, 0, 0, 0.18); } -.segmented button { min-height: 32px; padding: 0 11px; border: 0; border-radius: 9px; background: transparent; color: var(--color-ink-muted); white-space: nowrap; cursor: pointer; } -.segmented button.is-active { background: rgba(255, 255, 255, 0.09); color: var(--color-ink); } -.flow-filters { display: grid; grid-template-columns: repeat(5, minmax(130px, 1fr)) minmax(200px, 1.4fr) auto; align-items: end; gap: 11px; } -.flow-filters .grow { min-width: 0; } -.table-summary { min-height: 51px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 16px; border-bottom: 1px solid var(--color-line); color: var(--color-ink-muted); font-size: 11px; } -.table-scroll { max-width: 100%; overflow: auto; } -.data-table { width: 100%; min-width: 860px; border-collapse: collapse; } -.data-table th { height: 42px; padding: 8px 13px; border-bottom: 1px solid var(--color-line); background: rgba(255, 255, 255, 0.025); color: var(--color-ink-muted); font-size: 10px; font-weight: 500; text-align: left; white-space: nowrap; } -.data-table td { height: 55px; padding: 9px 13px; border-bottom: 1px solid rgba(255, 255, 255, 0.055); color: var(--color-ink-soft); vertical-align: middle; } -.data-table tbody tr { transition: background var(--duration-fast); } -.data-table tbody tr:hover { background: rgba(55, 235, 137, 0.035); } -.data-table tbody tr:last-child td { border-bottom: 0; } -.data-table td strong, .data-table td small { display: block; } -.data-table td strong { color: var(--color-ink); } -.data-table td small { color: var(--color-ink-muted); } -.data-table .number { color: var(--color-ink); text-align: right; font-family: var(--font-data); font-variant-numeric: tabular-nums; } - -/* Settings, reminders and company work */ -.settings-layout { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 18px; } -.form-body { display: grid; gap: 15px; padding: 17px; } -.panel form footer, form.panel footer { display: flex; justify-content: flex-end; gap: 9px; padding: 13px 17px; border-top: 1px solid var(--color-line); } -.closing-panel { grid-column: 1 / -1; } -.closing-checks { display: grid; grid-template-columns: repeat(4, 1fr); } -.closing-checks article { min-height: 75px; display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-left: 1px solid var(--color-line); } -.closing-checks article:first-child { border-left: 0; } -.closing-checks svg { color: var(--color-positive); } -.closing-checks .is-blocked svg { color: var(--color-danger); } -.closing-checks span { display: flex; flex-direction: column; } -.closing-checks small { color: var(--color-ink-muted); } -.closing-footer { min-height: 62px; display: flex; align-items: center; justify-content: flex-end; gap: 10px; padding: 10px 16px; border-top: 1px solid var(--color-line); } -.closing-footer > span { margin-right: auto; color: var(--color-ink-muted); } -.reminder-layout { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 18px; } -.notification-list article { min-height: 76px; display: grid; grid-template-columns: 38px minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 12px 16px; border-top: 1px solid var(--color-line); } -.notification-list article:first-child { border-top: 0; } -.notification-list article.is-unread { background: rgba(102, 168, 255, 0.045); } -.notification-list article > span:nth-child(2) { display: flex; flex-direction: column; } -.notification-list small, .notification-list p { color: var(--color-ink-muted); } -.notification-list p { margin-top: 4px; } -.notification-icon { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 12px; background: rgba(255, 255, 255, 0.055); color: var(--color-ink-soft); } -.notification-icon.danger { background: var(--color-danger-wash); color: var(--color-danger); } -.notification-icon.warning { background: var(--color-warning-wash); color: var(--color-warning); } -.notification-icon.success { background: var(--color-positive-wash); color: var(--color-positive); } -.company-alert { min-height: 78px; display: grid; grid-template-columns: 32px minmax(0, 1fr) auto; align-items: center; gap: 14px; margin-bottom: 18px; padding: 14px 16px; border: 1px solid rgba(255, 98, 109, 0.22); border-radius: var(--radius-lg); background: var(--color-danger-wash); box-shadow: var(--shadow-low); } -.company-alert > svg { color: var(--color-danger); } -.company-alert p { color: #c18e92; } -.company-dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr); gap: 18px; } -.cashier-tasks article { min-height: 92px; display: grid; grid-template-columns: 32px minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 13px 16px; border-top: 1px solid var(--color-line); } -.cashier-tasks article:first-child { border-top: 0; } -.cashier-tasks p, .cashier-tasks small { color: var(--color-ink-muted); } -.coverage-list article { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 16px; border-top: 1px solid var(--color-line); } -.coverage-list article:first-child { border-top: 0; } -.coverage-list article > span { display: flex; flex-direction: column; } -.coverage-list small { color: var(--color-ink-muted); } -.work-progress { display: grid; grid-template-columns: minmax(130px, 1fr) 40px minmax(130px, 1fr) 40px minmax(130px, 1fr) 40px minmax(130px, 1fr); align-items: center; margin-top: 18px; padding: 18px; } -.work-progress div { display: flex; align-items: center; gap: 10px; } -.work-progress div > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 11px; background: var(--color-positive); color: var(--color-primary-dark); font-weight: 800; } -.work-progress p { display: flex; flex-direction: column; } -.work-progress small { color: var(--color-ink-muted); } -.work-progress i { height: 1px; background: var(--color-line-strong); } -.work-progress .pending > span { background: rgba(255, 255, 255, 0.065); color: var(--color-ink-muted); } -.reconcile-summary { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 18px; overflow: hidden; } -.reconcile-summary div { min-height: 86px; display: flex; flex-direction: column; justify-content: center; padding: 14px 18px; border-left: 1px solid var(--color-line); } -.reconcile-summary div:first-child { border-left: 0; } -.reconcile-summary span, .reconcile-summary small { color: var(--color-ink-muted); } -.reconcile-summary strong { font: 600 19px var(--font-data); } -.review-list > article { padding: 16px; border-top: 1px solid var(--color-line); } -.review-list > article:first-child { border-top: 0; } -.review-main { display: grid; grid-template-columns: 38px 1fr; gap: 10px; } -.review-main p { color: var(--color-ink-muted); } -.candidate { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin: 13px 0 0 48px; padding: 12px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: rgba(0, 0, 0, 0.15); } -.candidate-options { display: grid; gap: 8px; margin: 13px 0 0 48px; padding: 12px; border: 1px solid var(--color-line); border-radius: var(--radius-md); } -.candidate-options legend { padding: 0 5px; color: var(--color-ink-muted); } -.candidate-options label { display: flex; align-items: center; gap: 9px; padding: 9px; border-radius: 11px; background: rgba(255, 255, 255, 0.035); } -.candidate-options input { accent-color: var(--color-primary); } -.candidate-options label span { display: flex; flex-direction: column; } -.candidate-options small { color: var(--color-ink-muted); } -.review-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 10px; } -.review-history { padding: 14px 16px; border-top: 1px solid var(--color-line); background: var(--color-positive-wash); } -.evidence-block { padding: 12px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: rgba(0, 0, 0, 0.16); } -.evidence-block strong, .evidence-block small { display: block; } -.evidence-block small { color: var(--color-ink-muted); } -.account-directory { display: grid; grid-template-columns: repeat(3, minmax(240px, 1fr)); gap: 16px; } -.account-directory article { overflow: hidden; border: 1px solid var(--color-line); border-radius: var(--radius-lg); background: var(--color-surface); box-shadow: var(--shadow-low); } -.account-directory header { display: grid; grid-template-columns: 38px minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 15px; border-bottom: 1px solid var(--color-line); } -.account-directory header div { display: flex; flex-direction: column; } -.account-directory header small { color: var(--color-ink-muted); } -.bank-mark { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 12px; background: var(--color-primary-wash); color: var(--color-primary); font-weight: 800; } -.account-directory dl { display: grid; grid-template-columns: repeat(3, 1fr); } -.account-directory dl div { padding: 12px; border-left: 1px solid var(--color-line); } -.account-directory dl div:first-child { border-left: 0; } -.account-directory dt { color: var(--color-ink-muted); font-size: 10px; } -.account-directory dd { margin-top: 3px; font-size: 11px; } -.manual-layout { display: grid; grid-template-columns: minmax(340px, 390px) minmax(0, 1fr); align-items: start; gap: 18px; } -.manual-records-table { min-width: 900px; } - -/* Dialogs and feedback */ -.dialog { width: min(580px, calc(100% - 28px)); padding: 0; overflow: hidden; border: 1px solid var(--color-line-strong); border-radius: var(--radius-lg); background: rgba(17, 17, 17, 0.96); color: var(--color-ink); box-shadow: var(--shadow-panel); backdrop-filter: blur(28px); } -.dialog::backdrop { background: rgba(0, 0, 0, 0.74); backdrop-filter: blur(6px); } -.dialog > form > header { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 18px; border-bottom: 1px solid var(--color-line); } -.dialog header p { color: var(--color-ink-muted); } -.dialog-body { display: grid; gap: 15px; padding: 18px; } -.dialog > form > footer { display: flex; justify-content: flex-end; gap: 9px; padding: 13px 18px; border-top: 1px solid var(--color-line); } -.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; } -.form-callout { display: flex; align-items: center; gap: 9px; padding: 10px; border: 1px solid rgba(102, 168, 255, 0.22); border-radius: 12px; background: var(--color-info-wash); color: #9ac6ff; } -.dropzone { min-height: 168px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border: 1px dashed rgba(255, 255, 255, 0.24); border-radius: var(--radius-md); background: rgba(0, 0, 0, 0.15); color: var(--color-ink-soft); text-align: center; transition: border-color var(--duration-fast), background var(--duration-fast); } -.dropzone:hover, .dropzone.is-dragging { border-color: var(--color-primary); background: var(--color-primary-wash); } -.dropzone input { position: absolute; width: 1px; height: 1px; opacity: 0; } -.dropzone > svg { width: 30px; height: 30px; color: var(--color-primary); } -.file-preview { display: grid; grid-template-columns: 40px minmax(0, 1fr) 40px; align-items: center; gap: 10px; padding: 10px; border: 1px solid var(--color-line); border-radius: var(--radius-md); } -.file-preview > span:nth-child(2) { display: flex; flex-direction: column; min-width: 0; } -.file-preview strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -.file-preview small { color: var(--color-ink-muted); } -.file-type { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--color-primary-wash); color: var(--color-primary); } -.parse-result { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px; padding: 11px; border: 1px solid rgba(55, 235, 137, 0.22); border-radius: var(--radius-md); background: var(--color-positive-wash); } -.parse-result p { color: #9bd7b6; } -.parse-result.is-exception { border-color: rgba(255, 188, 82, 0.25); background: var(--color-warning-wash); } -.parse-result.is-exception p { color: #e7bd78; } -.sheet-review { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--color-line); } -.sheet-review h3 { font-size: 14px; } -.sheet-review-hint { margin-top: 4px; color: var(--color-ink-muted); font-size: 12px; line-height: 1.5; } -.sheet-list { display: grid; gap: 8px; margin-top: 10px; max-height: 220px; overflow-y: auto; } -.sheet-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; padding: 10px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-surface-muted); } -.sheet-item.is-pending { border-color: rgba(255, 188, 82, 0.45); } -.sheet-item-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; } -.sheet-item-head strong { font-size: 13px; } -.sheet-item-head small { color: var(--color-ink-muted); } -.sheet-item-meta { margin-top: 5px; color: var(--color-ink-muted); font-size: 12px; line-height: 1.5; } -.sheet-item-actions { display: flex; align-items: center; gap: 6px; } -.sheet-item-actions .text-button { font-size: 12px; padding: 4px 8px; } -.sheet-item-reason { margin-top: 6px; padding: 6px 8px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); color: var(--color-ink-muted); font-size: 12px; } -.toast-region { position: fixed; right: 20px; bottom: 20px; z-index: 200; display: grid; gap: 8px; } -.toast { min-width: 280px; max-width: 390px; padding: 13px 15px; border: 1px solid var(--color-line-strong); border-radius: var(--radius-md); background: rgba(20, 20, 20, 0.96); color: var(--color-ink); box-shadow: var(--shadow-panel); backdrop-filter: blur(20px); } -.toast strong, .toast small { display: block; } -.toast small { color: var(--color-ink-muted); } - -/* Login — 深海军蓝 × 账房金 (HEL-32) */ -.entry-page { - color-scheme: light; - background: var(--jn-bg-page); - color: var(--jn-text-1); - overflow-x: hidden; -} -.entry-page::before { display: none; } -.entry-page :focus-visible { outline: 2px solid var(--jn-blue-600); outline-offset: 3px; } - -.entry-shell { - width: 100%; - margin: 0; - padding: 0; - min-height: 100vh; - min-height: 100dvh; - display: grid; - grid-template-columns: minmax(420px, 42%) minmax(0, 1fr); - grid-template-rows: 56px minmax(0, 1fr); - grid-template-areas: "topbar topbar" "context form"; -} - -.entry-topbar { - grid-area: topbar; - display: flex; - align-items: center; - padding: 0 24px; - background: var(--jn-bg-panel); - border-bottom: 1px solid var(--jn-border); -} -.entry-brand { display: flex; align-items: center; gap: 12px; min-width: 0; } -.entry-seal { - width: 28px; height: 28px; flex: 0 0 auto; - display: grid; place-items: center; - border: 1.5px solid var(--jn-gold-500); - border-radius: 6px; - background: var(--jn-bg-panel); - color: var(--jn-gold-500); - font-size: 17px; line-height: 1; font-weight: 700; -} -.entry-system-name { - font-size: 17px; line-height: 26px; font-weight: 600; - color: var(--jn-text-1); - white-space: nowrap; overflow: hidden; text-overflow: ellipsis; -} - -.entry-context { - grid-area: context; - position: relative; - display: flex; flex-direction: column; justify-content: center; - padding: 64px; - background: linear-gradient(160deg, var(--jn-navy-800), var(--jn-navy-900)); - overflow: hidden; -} -.entry-statement { max-width: 520px; } -.entry-statement h1 { font-size: 32px; line-height: 40px; font-weight: 700; color: #ffffff; letter-spacing: 0; } -.entry-statement p { margin-top: 12px; max-width: 440px; font-size: 14px; line-height: 22px; color: #B9CBDD; } -.entry-figure { width: 100%; height: auto; max-width: 520px; margin-top: 48px; display: block; } -.entry-figure .fig-bar { fill: none; stroke: var(--jn-navy-700); stroke-width: 1.5; } -.entry-figure .fig-arc { fill: none; stroke: var(--jn-navy-700); stroke-width: 80; opacity: 0.2; } -.entry-figure .fig-line { fill: none; stroke: var(--jn-gold-500); stroke-width: 1.5; } - -.entry-form-wrap { - grid-area: form; - display: grid; place-items: center; - padding: 48px 40px; - background: var(--jn-bg-panel); -} -.entry-form { width: min(400px, 100%); display: grid; gap: 20px; } -.entry-form header h2 { font-size: 24px; line-height: 32px; font-weight: 600; color: var(--jn-text-1); } -.entry-form header p { margin-top: 6px; font-size: 14px; line-height: 22px; color: var(--jn-text-2); } - -#loginError { - padding: 10px 14px; - border-left: 3px solid var(--jn-error); - border-radius: 8px; - background: var(--jn-error-bg); - color: var(--jn-error); - font-size: 13px; line-height: 18px; -} - -.role-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; } -.role-switch label { cursor: pointer; } -.role-switch input { position: absolute; opacity: 0; } -.role-switch span { - min-height: 76px; - display: grid; grid-template-columns: 24px 1fr; - align-content: center; gap: 2px 10px; - padding: 12px 14px; - border: 1px solid var(--jn-border); - border-radius: 8px; - background: var(--jn-bg-panel); - transition: border-color 150ms ease-out, background 150ms ease-out; -} -.role-switch span:hover { border-color: var(--jn-border-strong); } -.role-switch svg { grid-row: 1 / 3; align-self: center; color: var(--jn-text-3); } -.role-switch b { font-size: 15px; line-height: 22px; font-weight: 600; color: var(--jn-text-2); } -.role-switch small { font-size: 12px; line-height: 18px; color: var(--jn-text-3); } -.role-switch input:focus-visible + span { border-color: var(--jn-blue-600); box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15); } -.role-switch input:checked + span { border: 1.5px solid var(--jn-blue-600); background: var(--jn-blue-50); } -.role-switch input:checked + span svg { color: var(--jn-blue-600); } -.role-switch input:checked + span b { color: var(--jn-blue-600); } - -.entry-form .field { display: flex; flex-direction: column; gap: 8px; } -.entry-form .field > span { font-size: 14px; line-height: 20px; font-weight: 500; color: var(--jn-text-1); } -.entry-form .field input { - width: 100%; height: 44px; - padding: 0 14px; - border: 1px solid var(--jn-border); - border-radius: 8px; - outline: 0; - background: var(--jn-bg-panel); - color: var(--jn-text-1); - font-size: 15px; line-height: 22px; - transition: border-color 150ms ease-out, box-shadow 150ms ease-out; -} -.entry-form .field input::placeholder { color: var(--jn-text-3); } -.entry-form .field input:hover { border-color: var(--jn-border-strong); } -.entry-form .field input:focus { border-color: var(--jn-blue-600); box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15); } -.entry-form .password-field { - display: grid; grid-template-columns: 1fr 44px; - border: 1px solid var(--jn-border); - border-radius: 8px; - background: var(--jn-bg-panel); - transition: border-color 150ms ease-out, box-shadow 150ms ease-out; -} -.entry-form .password-field:hover { border-color: var(--jn-border-strong); } -.entry-form .password-field:focus-within { border-color: var(--jn-blue-600); box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15); } -.entry-form .password-field input { border: 0; box-shadow: none; background: transparent; } -.entry-form .password-field input:focus { border: 0; box-shadow: none; } -.entry-form .inside-icon { width: 44px; height: 44px; color: var(--jn-text-3); border: 0; background: transparent; } -.entry-form .inside-icon:hover { color: var(--jn-text-2); background: transparent; transform: none; } -.entry-form .inside-icon svg { width: 20px; height: 20px; } - -.entry-options { display: flex; align-items: center; justify-content: space-between; } -.entry-form .check-field { display: flex; align-items: center; gap: 8px; font-size: 13px; line-height: 18px; color: var(--jn-text-2); cursor: pointer; } -.entry-form .check-field input { width: 16px; height: 16px; accent-color: var(--jn-blue-600); } -.entry-hint { font-size: 13px; line-height: 18px; color: var(--jn-blue-600); } -.entry-hint:hover { color: var(--jn-blue-700); } - -.entry-form .entry-note { font-size: 12px; line-height: 18px; color: var(--jn-text-2); } - -.entry-form .button.primary { - width: 100%; height: 44px; - border-radius: 8px; - background: var(--jn-blue-600); - color: #ffffff; - box-shadow: none; - font-size: 15px; line-height: 22px; font-weight: 600; -} -.entry-form .button.primary:hover { background: var(--jn-blue-700); box-shadow: none; transform: none; } -.entry-form .button.primary:active { background: var(--jn-blue-800); transform: none; } -.entry-form .button.primary:disabled { background: var(--jn-disabled-bg); color: var(--jn-text-3); opacity: 1; cursor: not-allowed; transform: none; } -.entry-form .button.primary.is-loading:disabled { background: var(--jn-blue-600); color: #ffffff; opacity: 0.7; } -.spinner { - width: 16px; height: 16px; flex: 0 0 auto; - display: none; - border: 2px solid rgba(255, 255, 255, 0.35); - border-top-color: #ffffff; - border-radius: 50%; - animation: jn-spin 1s linear infinite; -} -.button.is-loading .spinner { display: inline-block; } -.button.is-loading .submit-arrow { display: none; } -@keyframes jn-spin { to { transform: rotate(360deg); } } - -.entry-compliance { font-size: 12px; line-height: 18px; color: var(--jn-text-3); text-align: center; } - -@media (max-width: 1023px) { - .entry-shell { grid-template-columns: 1fr; grid-template-rows: 56px 180px minmax(0, 1fr); grid-template-areas: "topbar" "context" "form"; } - .entry-context { padding: 32px 40px; justify-content: center; } - .entry-statement h1 { font-size: 24px; line-height: 32px; } - .entry-figure { display: none; } - .entry-form-wrap { padding: 48px 40px; } - .entry-form { width: min(440px, 100%); } -} - -@media (max-width: 767px) { - .entry-shell { grid-template-rows: 56px 96px minmax(0, 1fr); } - .entry-topbar { padding: 0 16px; } - .entry-seal { width: 24px; height: 24px; font-size: 14px; border-radius: 6px; } - .entry-system-name { font-size: 15px; line-height: 22px; } - .entry-context { padding: 24px; } - .entry-statement h1 { font-size: 18px; line-height: 26px; } - .entry-statement p { display: none; } - .entry-form-wrap { padding: 24px 16px; } - .entry-form { gap: 16px; } - .entry-form .field input { height: 48px; } - .entry-form .password-field { grid-template-columns: 1fr 48px; } - .entry-form .inside-icon { width: 48px; height: 48px; } - .entry-form .button.primary { height: 48px; } - .role-switch { grid-template-columns: 1fr; } -} - -@media (max-width: 1180px) { - .metric-grid { grid-template-columns: repeat(2, 1fr); } - .period-ribbon { grid-template-columns: repeat(3, 1fr); } - .period-ribbon > .period-warning { grid-column: 1 / -1; border-top: 1px solid var(--color-line); border-left: 0; } - .admin-dashboard-grid, .company-dashboard-grid { grid-template-columns: 1fr; } - .flow-filters { grid-template-columns: repeat(3, 1fr); } - .flow-filters .button { min-height: 40px; } - .manual-layout { grid-template-columns: 1fr; } - .account-directory { grid-template-columns: repeat(2, 1fr); } -} - -@media (max-width: 900px) { - main { padding-inline: 20px; } - .settings-layout, .reminder-layout { grid-template-columns: 1fr; } - .pair-query-form { grid-template-columns: 1fr 40px 1fr; } - .pair-query-form .field:nth-of-type(3) { grid-column: 1 / 3; } - .pair-query-form .button { grid-column: 3; } - .ledger-head { display: none; } - .company-ledger summary { grid-template-columns: minmax(180px, 1.4fr) repeat(2, minmax(100px, 0.7fr)) 28px; } - .company-ledger summary > span:nth-child(4), .company-ledger summary > span:nth-child(5) { display: none; } - .ledger-breakdown { grid-template-columns: 1fr; } - .ledger-breakdown section + section { border-top: 1px solid var(--color-line); border-left: 0; } - .pair-balance-line { grid-template-columns: repeat(3, 1fr); } - .pair-balance-line .pair-final { grid-column: 1 / -1; border-top: 1px solid var(--color-line); border-left: 0; } - .subject-strip { grid-template-columns: repeat(3, 1fr); } - .work-progress { grid-template-columns: 1fr 24px 1fr; row-gap: 16px; } - .work-progress i:nth-of-type(2) { display: none; } -} - -@media (max-width: 720px) { - main { padding: 12px 13px 42px; } - .page-heading { min-height: auto; flex-direction: column; margin-bottom: 18px; } - .page-heading h1 { font-size: 27px; } - .page-heading > .button { align-self: stretch; } - .metric-grid { grid-template-columns: 1fr 1fr; gap: 10px; } - .metric-card { min-height: 128px; grid-template-columns: minmax(0, 1fr) 38px; padding: 15px; } - .metric-icon { width: 38px; height: 38px; border-radius: 12px; } - .metric-value { font-size: 25px; } - .period-ribbon { grid-template-columns: 1fr 1fr; } - .period-ribbon > div { min-height: 64px; } - .period-ribbon > div:nth-child(3) { border-top: 1px solid var(--color-line); border-left: 0; } - .period-warning { grid-column: 1 / -1; } - .panel-heading { min-height: 60px; padding: 11px 13px; } - .inline-search { display: none; } - .task-list button { grid-template-columns: 30px minmax(0, 1fr) 18px; padding-inline: 12px; } - .task-list button > b { display: none; } - .quick-pair-form { grid-template-columns: 1fr 38px 1fr; padding-inline: 12px; } - .quick-result { margin-inline: 12px; } - .company-ledger summary { grid-template-columns: minmax(145px, 1fr) 100px 24px; padding-inline: 12px; } - .company-ledger summary > strong:nth-of-type(2), .company-ledger summary > span:nth-child(4), .company-ledger summary > span:nth-child(5) { display: none; } - .company-name { grid-template-columns: 30px minmax(0, 1fr); } - .company-name i { width: 28px; height: 28px; } - .filter-bar { align-items: stretch; flex-direction: column; } - .segmented { width: 100%; } - .flow-filters { grid-template-columns: 1fr 1fr; } - .flow-filters .grow, .flow-filters .button { grid-column: 1 / -1; } - .pair-query-form { grid-template-columns: 1fr 38px 1fr; } - .pair-query-form .field:nth-of-type(3), .pair-query-form .button { grid-column: 1 / -1; } - .pair-report-heading { align-items: flex-start; flex-direction: column; } - .pair-balance-line { grid-template-columns: 1fr 1fr; } - .pair-balance-line .pair-final { grid-column: auto; border-left: 1px solid var(--color-line); } - .subject-strip { grid-template-columns: 1fr 1fr; } - .company-alert { grid-template-columns: 28px 1fr; } - .company-alert .button { grid-column: 1 / -1; } - .cashier-tasks article { grid-template-columns: 30px minmax(0, 1fr); } - .cashier-tasks .button { grid-column: 2; justify-self: start; } - .work-progress { grid-template-columns: 1fr; } - .work-progress i { display: none; } - .reconcile-summary { grid-template-columns: 1fr; } - .reconcile-summary div { min-height: 70px; border-top: 1px solid var(--color-line); border-left: 0; } - .reconcile-summary div:first-child { border-top: 0; } - .candidate, .candidate-options { align-items: stretch; flex-direction: column; margin-left: 0; } - .account-directory { grid-template-columns: 1fr; } - .account-directory dl { grid-template-columns: 1fr 1fr; } - .closing-checks { grid-template-columns: 1fr; } - .closing-checks article { border-top: 1px solid var(--color-line); border-left: 0; } - .closing-footer { align-items: stretch; flex-direction: column; } - .notification-list article { grid-template-columns: 34px minmax(0, 1fr); } - .notification-list article > em { grid-column: 2; justify-self: start; } - .table-summary { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 9px; } - .dialog { width: 100%; max-width: none; height: 100%; max-height: none; border-radius: 0; } - .dialog > form { min-height: 100%; display: flex; flex-direction: column; } - .dialog-body { flex: 1; } - .form-grid { grid-template-columns: 1fr; } - .toast-region { right: 12px; bottom: 12px; left: 12px; } - .toast { min-width: 0; max-width: none; } -} - -@media (max-width: 460px) { - .metric-card { min-height: 150px; padding: 13px; } - .metric-copy { min-height: 52px; } - .metric-label { font-size: 11px; } - .metric-value { font-size: 23px; } -} - -@media (max-width: 1180px) { - .timeline-strip { grid-template-columns: 1fr; } - .timeline-legend { padding-bottom: 4px; } -} - -@media (max-width: 900px) { - .company-row { grid-template-columns: 34px minmax(0, 1fr) auto; } - .company-row-figure { display: none; } -} - -@media (max-width: 720px) { - .timeline-strip { padding: 14px; } - .timeline-rows { gap: 6px; } - .timeline-row { grid-template-columns: 80px minmax(0, 1fr); } - .timeline-axis span { font-size: 9px; } -} - -/* ===== 参考图对齐:胶囊搜索条 / 账期时间轴 / 右侧详情面板 ===== */ - -.timeline-panel { margin-top: 18px; padding: 18px; } -.timeline { padding: 10px 4px 0; } -.timeline-bar { position: relative; height: 14px; border: 1px solid var(--color-line); border-radius: 999px; background: rgba(255, 255, 255, 0.05); } -.timeline-seg, .timeline-gap { position: absolute; top: 2px; bottom: 2px; border-radius: 999px; } -.timeline-seg.is-closed { background: linear-gradient(90deg, rgba(55, 235, 137, 0.5), rgba(55, 235, 137, 0.28)); } -.timeline-seg.is-current { background: linear-gradient(90deg, rgba(255, 188, 82, 0.4), rgba(255, 188, 82, 0.18)); } -.timeline-gap { background: repeating-linear-gradient(45deg, rgba(255, 98, 109, 0.75) 0 6px, rgba(255, 98, 109, 0.35) 6px 12px); box-shadow: 0 0 12px rgba(255, 98, 109, 0.25); } -.timeline-today { position: absolute; top: -4px; bottom: -4px; width: 2px; background: var(--color-primary-strong); box-shadow: 0 0 10px rgba(55, 235, 137, 0.6); } -.timeline-today::after { content: "今天"; position: absolute; top: -19px; right: 5px; font-size: 10px; font-style: normal; color: var(--color-primary-strong); white-space: nowrap; } -.timeline-ticks { position: relative; height: 34px; margin-top: 8px; } -.timeline-ticks span { position: absolute; display: flex; flex-direction: column; transform: translateX(-50%); font-size: 10px; color: var(--color-ink-muted); text-align: center; } -.timeline-ticks span:first-child { transform: none; text-align: left; } -.timeline-ticks span:last-child { transform: translateX(-100%); text-align: right; } -.timeline-ticks small { color: var(--color-ink-soft); } -.timeline-panel .timeline-legend { display: flex; flex-direction: row; flex-wrap: wrap; gap: 6px 18px; margin: 10px 0 0; padding: 0; list-style: none; font-size: 11px; color: var(--color-ink-soft); } -.timeline-panel .timeline-legend li { display: flex; align-items: center; gap: 6px; } -.timeline-panel .dot { width: 8px; height: 8px; border-radius: 50%; } -.dot.success { background: var(--color-positive); } -.dot.warning { background: var(--color-warning); } -.dot.danger { background: var(--color-danger); } -.dot.today { background: var(--color-primary-strong); box-shadow: 0 0 6px rgba(55, 235, 137, 0.7); } - -.detail-drawer { position: fixed; top: 16px; right: 16px; bottom: 16px; z-index: 80; width: min(380px, calc(100vw - 32px)); display: flex; flex-direction: column; border: 1px solid var(--color-line-strong); border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(28, 28, 28, 0.92), rgba(12, 12, 12, 0.94)); box-shadow: var(--shadow-panel); backdrop-filter: blur(26px) saturate(125%); transform: translateX(calc(100% + 32px)); visibility: hidden; transition: transform var(--duration-standard) var(--ease-out), visibility var(--duration-standard); } -.detail-drawer.is-open { transform: none; visibility: visible; } -.detail-drawer > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 18px 18px 12px; border-bottom: 1px solid var(--color-line); } -.detail-drawer h2 { margin-top: 8px; font-size: 17px; } -.detail-drawer .detail-desc { margin-top: 4px; color: var(--color-ink-muted); font-size: 12px; } -.detail-fields { display: grid; gap: 10px; margin: 0; padding: 14px 18px; overflow-y: auto; } -.detail-fields > div { display: flex; justify-content: space-between; gap: 14px; padding-bottom: 10px; border-bottom: 1px dashed var(--color-line); } -.detail-fields dt { flex-shrink: 0; color: var(--color-ink-muted); font-size: 12px; } -.detail-fields dd { margin: 0; text-align: right; font-size: 12px; } -.detail-tip { margin: 0 18px 12px; padding: 12px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-surface-muted); color: var(--color-ink-soft); font-size: 12px; } -.detail-tip strong { display: block; margin-bottom: 4px; color: var(--color-ink); } -.detail-drawer > footer { display: flex; gap: 10px; margin-top: auto; padding: 14px 18px; border-top: 1px solid var(--color-line); } -.detail-drawer > footer .button { flex: 1; justify-content: center; } -.detail-drawer .status { align-self: flex-start; } -[data-detail] { cursor: pointer; } - -@media (max-width: 720px) { - .detail-drawer { top: 8px; right: 8px; bottom: 8px; width: calc(100vw - 16px); } - .timeline-panel { padding: 14px; } -} - -/* ===== 质感打磨:玻璃光泽 / 氛围光 / 对比与呼吸感 ===== */ -:root { - --radius-lg: 24px; - --radius-xl: 30px; -} - -.metric-card { border-color: rgba(255, 255, 255, 0.12); background: radial-gradient(120% 90% at 50% 108%, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02) 42%, transparent 60%), linear-gradient(160deg, rgba(41, 41, 41, 0.86) 0%, rgba(23, 23, 23, 0.88) 50%, rgba(12, 12, 12, 0.9) 100%); } -.metric-card::before { background: radial-gradient(130% 100% at 50% 112%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 45%, transparent 62%), linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 42%, transparent 72%); } -.panel::before, .period-ribbon::before, .reconcile-summary::before, .work-progress::before { background: radial-gradient(150% 110% at 50% 118%, rgba(255, 255, 255, 0.05), transparent 55%), linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 70%); } - -.metric-value { font-size: clamp(28px, 2.6vw, 38px); font-weight: 800; color: #ffffff; white-space: nowrap; } - -.metric-grid { gap: 20px; margin-bottom: 20px; } -.admin-dashboard-grid { gap: 20px; margin-bottom: 20px; } -.company-dashboard-grid { gap: 20px; } -.page-heading { margin-bottom: 22px; } - -@media (max-width: 720px) { - .metric-grid { gap: 10px; margin-bottom: 14px; } - .page-heading { margin-bottom: 18px; } -} - -/* ===== 反馈修正:侧栏质感 + 模块间距统一 ===== */ -.company-alert { margin-bottom: 20px; } -.period-ribbon { margin-bottom: 20px; } -.company-stack-panel { margin-bottom: 20px; } -.work-progress { margin-top: 20px; } -.timeline-panel { margin-top: 20px; } - -/* ===== 反馈修正:整体提亮 + 列表改为玻璃行(去掉线条隔断) ===== */ -:root { - --color-ink-soft: #b6c0ba; - --color-ink-muted: #99a39d; -} - -.panel, .period-ribbon, .query-band, .filter-bar, .filter-grid, .pair-report, .work-progress, .reconcile-summary { border-color: rgba(255, 255, 255, 0.12); background: linear-gradient(160deg, rgba(37, 37, 37, 0.84) 0%, rgba(21, 21, 21, 0.87) 50%, rgba(12, 12, 12, 0.89) 100%); } -.panel::before, .period-ribbon::before, .reconcile-summary::before, .work-progress::before { background: radial-gradient(150% 110% at 50% 118%, rgba(255, 255, 255, 0.06), transparent 55%), linear-gradient(165deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.04) 40%, transparent 70%); } - -.task-list, .cashier-tasks, .coverage-list, .notification-list, .review-list { display: grid; gap: 8px; padding: 12px 14px 14px; } -.task-list button, .cashier-tasks article, .coverage-list article, .notification-list article, .review-list > article, .subject-row { border: 1px solid var(--color-line); border-radius: var(--radius-md); background: linear-gradient(160deg, rgba(32, 32, 32, 0.72) 0%, rgba(15, 15, 15, 0.78) 100%); transition: background var(--duration-fast), border-color var(--duration-fast), box-shadow var(--duration-fast), transform var(--duration-fast); } -.task-list button:hover, .cashier-tasks article:hover, .coverage-list article:hover, .notification-list article:hover, .review-list > article:hover, .subject-row:hover { border-color: rgba(255, 255, 255, 0.2); background: linear-gradient(160deg, rgba(44, 44, 44, 0.82) 0%, rgba(22, 22, 22, 0.86) 100%); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28); } -.notification-list article.is-unread { border-color: rgba(102, 168, 255, 0.3); background: linear-gradient(160deg, rgba(102, 168, 255, 0.1), rgba(102, 168, 255, 0.04)); } -.company-ledger { margin: 8px 14px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: linear-gradient(160deg, rgba(32, 32, 32, 0.72) 0%, rgba(15, 15, 15, 0.78) 100%); overflow: hidden; } -.company-ledger[open] { border-color: rgba(255, 255, 255, 0.18); } -.company-ledger:last-child { margin-bottom: 14px; } - -.data-table { border-collapse: separate; border-spacing: 0 8px; } -.data-table th { height: 28px; padding: 0 13px; border-bottom: 0; background: transparent; } -.data-table td { border-bottom: 0; border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); background: linear-gradient(160deg, rgba(32, 32, 32, 0.72) 0%, rgba(15, 15, 15, 0.78) 100%); } -.data-table td:first-child { border-left: 1px solid var(--color-line); border-radius: 12px 0 0 12px; } -.data-table td:last-child { border-right: 1px solid var(--color-line); border-radius: 0 12px 12px 0; } -.data-table tbody tr:hover td { background: linear-gradient(160deg, rgba(44, 44, 44, 0.85) 0%, rgba(22, 22, 22, 0.88) 100%); } -.data-table tbody tr:last-child td { border-bottom: 1px solid var(--color-line); } -.table-scroll { padding: 2px 14px 8px; } -.table-summary { margin: 0 14px; } - -@media (prefers-reduced-motion: reduce) { - *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } - .button.is-loading .spinner { animation-duration: 1s !important; animation-iteration-count: infinite !important; } -} From 31fdc2e45626e6be803b41a53922ccf807cab32b Mon Sep 17 00:00:00 2001 From: leefer Date: Tue, 25 Aug 2026 12:03:54 +0800 Subject: [PATCH 6/7] =?UTF-8?q?HEL-124=20=E8=BF=94=E5=B7=A5=EF=BC=9A?= =?UTF-8?q?=E8=A7=A3=E6=9E=90=E5=90=8E=E6=81=A2=E5=A4=8D=20#parseButton=20?= =?UTF-8?q?=E5=8F=AF=E7=82=B9=20+=20detailContent=20=E5=8A=A0=E3=80=8C?= =?UTF-8?q?=E5=8E=9F=E5=9E=8B=E5=8D=A0=E4=BD=8D=E3=80=8D=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: multica-agent --- web/app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/app.js b/web/app.js index 4832002..eca6e74 100644 --- a/web/app.js +++ b/web/app.js @@ -184,6 +184,8 @@ function showView(view) { window.scrollTo({ top: 0, behavior: motionQuery.matches ? "auto" : "smooth" }); } +// 原型占位,非本司真待办/真断档数据:detailContent 仅用于演示总览/工作台事项 +// 点开抽屉的静态文案,真实待办与断档来自审核中心 / 往来确认等接口数据。 const detailContent = { "admin-gap": { tag: ["danger", "高风险"], title: "金牛置业 · 中行账户断档", desc: "中国银行尾号 8821 缺少 07-06 至 07-16 流水,已影响 7 月结账。", fields: [["公司", "金牛置业"], ["账户", "中国银行 · 尾号 8821"], ["缺口期间", "2026-07-06 — 07-16 · 11 天"], ["影响", "7 月结账 · 与金牛煤业 320 万往来无法归集"], ["当前状态", "阻断结账"]], tip: "先向金牛置业出纳发送补传提醒,补齐流水后到审核中心复核覆盖区间。", action: ["去审核中心处理", "audit"] }, "admin-unsubmitted": { tag: ["danger", "高风险"], title: "金牛农业 7 月未提交流水", desc: "全部账户 7 月流水均未提交,已发 2 次系统提醒。", fields: [["公司", "金牛农业"], ["账户", "全部账户"], ["已提醒", "2 次 · 最近一次 08-18"], ["当前状态", "未响应"]], tip: "可再次发送提醒,或在提醒管理里查看已发出的提醒记录。", action: ["去提醒管理", "reminders"] }, @@ -1691,6 +1693,7 @@ function renderParseResult(result, parsed) { const button = $("#parseButton"); button.dataset.stage = "confirm"; + button.disabled = false; if (!parsed) { button.querySelector("span").textContent = "关闭"; } else if (opaque) { From 20d967a4a49ae56dc5949cd49d8debcc3541a556 Mon Sep 17 00:00:00 2001 From: leefer Date: Tue, 25 Aug 2026 12:15:24 +0800 Subject: [PATCH 7/7] HEL-125: bump web asset ?v= to 4 for test-env deploy cache bust EOF Co-authored-by: Cursor Co-authored-by: multica-agent --- web/admin.html | 4 ++-- web/company.html | 4 ++-- web/index.html | 2 +- web/login-admin.html | 4 ++-- web/login-company.html | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/web/admin.html b/web/admin.html index a3d3afe..1aa72b4 100644 --- a/web/admin.html +++ b/web/admin.html @@ -5,7 +5,7 @@ 总账管理端 · 金牛集团 - + @@ -1050,7 +1050,7 @@
- + + diff --git a/web/index.html b/web/index.html index 2a00177..6e276ca 100644 --- a/web/index.html +++ b/web/index.html @@ -4,7 +4,7 @@ 金牛实业资金往来管理系统 · 入口 - +
diff --git a/web/login-admin.html b/web/login-admin.html index bd8c8e0..537ff1a 100644 --- a/web/login-admin.html +++ b/web/login-admin.html @@ -4,7 +4,7 @@ 登录 · 金牛实业资金往来管理系统 - +
- + diff --git a/web/login-company.html b/web/login-company.html index ebf7f8c..90c48b4 100644 --- a/web/login-company.html +++ b/web/login-company.html @@ -4,7 +4,7 @@ 登录 · 金牛实业资金往来管理系统 - +
- +