家谱现有接口调试50%
This commit is contained in:
@@ -0,0 +1,123 @@
|
||||
<!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-merit-edit-page>
|
||||
<header class="site-header">
|
||||
<div class="container nav">
|
||||
<a class="brand magnetic" href="profile.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-content.html">内容发布</a
|
||||
><a class="active" href="profile-merit.html">功德录</a>
|
||||
</nav>
|
||||
<div class="nav-actions">
|
||||
<a href="profile-merit.html">返回功德录</a
|
||||
><button class="btn primary magnetic" type="submit" form="merit-edit-form">保存</button>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<main>
|
||||
<section class="module-hero">
|
||||
<div class="container">
|
||||
<div class="module-kicker">Merit Editor</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-content.html">内容发布</a
|
||||
><a class="active" href="profile-merit.html">功德录</a
|
||||
><a href="profile-gift.html">贺礼邀请</a
|
||||
><a href="profile-growth.html">成长日志</a>
|
||||
</aside>
|
||||
<div class="module-main">
|
||||
<section class="module-panel">
|
||||
<h2>功德资料</h2>
|
||||
<form id="merit-edit-form" class="editor-form layui-form" data-merit-form>
|
||||
<div class="editor-two">
|
||||
<div class="editor-field">
|
||||
<label for="meritName">姓名</label
|
||||
><input
|
||||
id="meritName"
|
||||
name="donorName"
|
||||
type="text"
|
||||
placeholder="请输入姓名"
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
<div class="editor-field">
|
||||
<label for="meritDate">日期</label
|
||||
><input
|
||||
id="meritDate"
|
||||
name="meritTime"
|
||||
type="text"
|
||||
placeholder="请选择日期"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="editor-field">
|
||||
<label for="meritTitle">功德标题</label>
|
||||
<input id="meritTitle" name="meritTitle" type="text" placeholder="请输入功德标题" required />
|
||||
</div>
|
||||
<div class="editor-field">
|
||||
<label for="meritContent">事迹内容</label
|
||||
><textarea
|
||||
id="meritContent"
|
||||
name="meritContent"
|
||||
class="js-rich-editor"
|
||||
placeholder="请输入内容"
|
||||
></textarea>
|
||||
</div>
|
||||
<div class="editor-two">
|
||||
<div class="editor-field">
|
||||
<label for="meritType">功德类型</label>
|
||||
<select id="meritType" name="meritType">
|
||||
<option value="donation">捐赠</option>
|
||||
<option value="service">义务服务</option>
|
||||
<option value="other">其他</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="editor-field">
|
||||
<label for="meritAmount">金额</label>
|
||||
<input id="meritAmount" name="amount" type="number" step="0.01" placeholder="请输入金额" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="bottom-actions">
|
||||
<button class="btn primary magnetic" type="submit">保存</button
|
||||
><a class="btn ghost magnetic" href="profile-merit.html"
|
||||
>取消</a
|
||||
>
|
||||
</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/ke/kindeditor.min.js"></script>
|
||||
<script src="public/js/rich-editor.js"></script>
|
||||
<script src="public/js/profile-common.js"></script>
|
||||
<script src="public/js/api-client.js"></script>
|
||||
<script src="public/js/ceremony-pages.js"></script>
|
||||
<script src="public/js/page-effects.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user