修改页面,完成单页模式新增首页返回上一页按钮
This commit is contained in:
Vendored
+92
@@ -0,0 +1,92 @@
|
||||
<!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="public/css/public.css" />
|
||||
<link rel="stylesheet" href="public/layui/css/layui.css" />
|
||||
<link rel="stylesheet" href="public/css/profile-module.css" />
|
||||
</head>
|
||||
<body class="page-profile-module" data-join-review-page>
|
||||
<header class="site-header">
|
||||
<div class="container nav">
|
||||
<a class="brand magnetic" href="index.html"
|
||||
><img class="brand-logo brand-logo-mark" src="public/images/logo-mark.png" alt="" /><span class="brand-text">个人中心</span></a
|
||||
>
|
||||
<nav class="nav-links">
|
||||
<a href="profile-messages.html">消息中心</a
|
||||
><a href="profile-family-admin.html">家族管理</a
|
||||
><a class="active" href="profile-join-review.html">入谱审核</a>
|
||||
</nav>
|
||||
<div class="nav-actions">
|
||||
<a href="profile-family-admin.html" data-genealogy-context-link>返回家族管理</a>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<main>
|
||||
<section class="module-hero">
|
||||
<div class="container">
|
||||
<div class="module-kicker">入谱审核</div>
|
||||
<div class="module-title-row">
|
||||
<div>
|
||||
<h1>入谱审核</h1>
|
||||
<p>审核当前家谱的加入申请。只有家谱管理者可以执行通过或拒绝。</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container module-layout">
|
||||
<aside class="module-nav">
|
||||
<a href="profile-messages.html">消息中心</a
|
||||
><a class="active" href="profile-join-review.html" data-genealogy-context-link>入谱审核</a
|
||||
><span class="module-nav-unavailable">邀请家人<small>即将开放</small></span
|
||||
><a href="profile-admin-permissions.html" data-genealogy-context-link>管理员权限</a>
|
||||
</aside>
|
||||
<div class="module-main">
|
||||
<section class="module-panel">
|
||||
<div class="module-title-row">
|
||||
<h2>待审核申请</h2>
|
||||
<button class="btn ghost" type="button" data-join-review-refresh>刷新</button>
|
||||
</div>
|
||||
<div class="form-note" role="status" aria-live="polite" data-join-review-status></div>
|
||||
<div class="module-list" data-join-apply-list="pending">
|
||||
<div class="api-state api-state--loading" data-api-state="loading" role="status" aria-live="polite" aria-busy="true">
|
||||
正在读取待审核申请…
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section id="join-review-form" class="module-panel" data-join-review-editor hidden>
|
||||
<h2 data-join-review-form-title>审核加入申请</h2>
|
||||
<form class="editor-form" data-join-review-form novalidate>
|
||||
<input name="applyId" type="hidden" />
|
||||
<input name="status" type="hidden" />
|
||||
<div class="editor-field">
|
||||
<label for="joinAuditRemark">审核说明</label>
|
||||
<textarea id="joinAuditRemark" name="auditRemark" rows="4" maxlength="500" disabled placeholder="可选;拒绝时可说明原因,最多 500 个字符"></textarea>
|
||||
</div>
|
||||
<div class="form-status" role="status" aria-live="polite" data-join-review-form-status></div>
|
||||
<div class="bottom-actions">
|
||||
<button class="btn primary magnetic" type="submit" data-join-review-submit disabled>提交审核</button>
|
||||
<button class="btn ghost" type="button" data-join-review-cancel disabled>取消</button>
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<script src="public/js/jquery360.js"></script>
|
||||
<script src="public/layui/layui.js"></script>
|
||||
<script src="public/js/lay-config.js"></script>
|
||||
<script src="public/js/profile-common.js"></script>
|
||||
<script src="config.js"></script>
|
||||
<script src="utils/StorageUtil.js"></script>
|
||||
<script src="utils/axios.js"></script>
|
||||
<script src="utils/AxiosRequestUtil.js"></script>
|
||||
<script src="utils/ApiClient.js"></script>
|
||||
<script src="public/js/join-review-pages.js"></script>
|
||||
<script src="public/js/page-effects.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user