2 Star 3 Fork 1

万少/big-event

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
article_category.html 4.86 KB
一键复制 编辑 原始数据 按行查看 历史
万少 提交于 2021-11-08 17:54 . 文章分类-删除-完成
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>文章列表</title>
<link rel="stylesheet" href="./libs/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="./libs/layui/css/layui.css">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/iconfont.css">
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<div class="container-fluid">
<div class="common_title">
文章类别管理
</div>
<div class="container-fluid common_con">
<div class="row" style="margin-top: 10px;">
<div
class="col-xs-offset-10 col-sm-offset-10 col-md-offset-10 col-lg-offset-10 col-xs-2 col-sm-2 col-md-2 col-lg-2">
<a href="#" class="btn btn-success" id="xinzengfenlei" data-toggle="modal" data-target="#myModal">新增分类</a>
</div>
</div>
<table class="table table-striped table-bordered table-hover mp20 category_table">
<thead>
<tr>
<th>名称</th>
<th>描述</th>
<th class="text-center" width="100">操作</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<!-- 新增分类布局区域-开始 -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="myModalLabel">新增分类</h4>
</div>
<div class="modal-body">
<form id="addform">
<div class="add_category">
<div class="form-group">
<label for="name">分类名</label>
<input type="text" class="form-control" name="name" placeholder="分类名">
</div>
<div class="form-group">
<label for="slug">分类别名</label>
<input type="text" class="form-control" name="slug" placeholder="分类别名">
</div>
</div>
<div class="modal-footer">
<button type="button" data-dismiss="modal" class="btn btn-default">取消</button>
<button type="button" class="btn btn-primary btn_opt btn_opt_add ">保存</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- 新增分类布局区域-结束 -->
<!-- 编辑分类布局区域-开始 -->
<div class="modal fade" id="editModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="myModalLabel">编辑分类</h4>
</div>
<div class="modal-body">
<form id="editform">
<div class="add_category">
<div class="form-group">
<label for="name">分类名</label>
<input type="text" class="form-control" id="name" placeholder="分类名">
</div>
<div class="form-group">
<label for="slug">分类别名</label>
<input type="text" class="form-control" id="slug" placeholder="分类别名">
</div>
</div>
<div class="modal-footer">
<button type="button" data-dismiss="modal" class="btn btn-default">取消</button>
<button type="button" class="btn btn-primary btn_opt btn_opt_edit">保存</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- 编辑分类布局区域-结束 -->
<!-- 文章类别列表模版 -->
<script type="text/html" id="trTpl">
{{each list}}
<tr>
<td>{{$value.name}}</td>
<td>{{$value.slug}}</td>
<td class="text-center">
<button data-item="{{$value}}" class="edit btn btn-info btn-xs">编辑</button>
<button data-id="{{$value.id}}" class="delete btn btn-danger btn-xs">删除</button>
</td>
</tr>
{{/each}}
</script>
<!-- 文章类别列表模版 -->
<script src="./libs/jquery/jquery.min.js"></script>
<script src="./libs/bootstrap/js/bootstrap.min.js"></script>
<!-- 引入 模版引擎 art-template -->
<script src="./libs/art-template/template-web.js"></script>
<script src="./libs/layui/layui.js"></script>
<script src="./js/common.js"></script>
<script src="./js/article_category.js"></script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ukSir/big-event.git
git@gitee.com:ukSir/big-event.git
ukSir
big-event
big-event
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385