feat(client): 出入库单详情抽屉明细增加生产日期+批次号列(两端,抽屉加宽 660,原型同步)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -217,7 +217,7 @@ td.num{font-family:var(--font-mono);}
|
||||
/* ---- 抽屉 ---- */
|
||||
.drawer{position:fixed; top:0; right:0; height:100vh; width:480px; max-width:94vw; background:var(--surface); border-left:1px solid var(--border); box-shadow:-16px 0 50px var(--shadow); transform:translateX(100%); transition:transform .25s; z-index:var(--z-drawer); display:flex; flex-direction:column;}
|
||||
.drawer.show{transform:translateX(0);}
|
||||
.drawer.wide{width:600px;}
|
||||
.drawer.wide{width:660px;}
|
||||
/* 抽屉遮罩:点击空白处关闭抽屉(z-index 在抽屉之下) */
|
||||
.drawer-mask{position:fixed; inset:0; background:var(--scrim); opacity:0; pointer-events:none; transition:opacity .25s; z-index:var(--z-drawer-scrim);}
|
||||
.drawer-mask.show{opacity:1; pointer-events:auto;}
|
||||
@@ -256,6 +256,9 @@ td.num{font-family:var(--font-mono);}
|
||||
.lcell .lcode{display:block; font-family:var(--font-mono); color:var(--muted); font-size:var(--fs-xs); margin-top:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
|
||||
.lcell .lspec{display:block; color:var(--muted); font-size:var(--fs-xs); margin-top:1px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
|
||||
.lcell .lser{display:block; color:var(--text); font-weight:500; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
|
||||
/* 明细行新增列:生产日期 / 批次号(2026-07-14,出入库单详情) */
|
||||
.lcell .lpdate{display:block; font-family:var(--font-mono); color:var(--text); font-size:var(--fs-sm); white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
|
||||
.lcell .lbatch{display:block; font-family:var(--font-mono); color:var(--faint); font-size:var(--fs-xs); margin-top:1px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
|
||||
/* 抽屉底部操作分组:审核类 / 打印类 */
|
||||
.dactions{margin-top:18px; display:flex; flex-direction:column; gap:14px;}
|
||||
.dact-group{display:flex; flex-direction:column; gap:8px;}
|
||||
|
||||
Reference in New Issue
Block a user