29 lines
947 B
HTML
29 lines
947 B
HTML
<!doctype html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
<title>快速记账原型已合并</title>
|
||
<link rel="stylesheet" href="./原型样式.css" />
|
||
</head>
|
||
<body>
|
||
<main class="stage">
|
||
<section class="phone">
|
||
<header class="appbar">
|
||
<div class="toolbar">
|
||
<button class="icon-button" aria-label="关闭">×</button>
|
||
<h1 class="title">快速记账</h1>
|
||
<span class="toolbar-spacer" aria-hidden="true"></span>
|
||
</div>
|
||
</header>
|
||
|
||
<div class="deprecated-note">
|
||
<h2>已并入账本流水页</h2>
|
||
<p>快速记账不再作为独立页面。请在账本流水页查看底部抽屉和分类轮盘交互。</p>
|
||
<a href="./账本流水.html">打开账本流水原型</a>
|
||
</div>
|
||
</section>
|
||
</main>
|
||
</body>
|
||
</html>
|