Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
article_category.html 5.76 KB
Copy Edit Raw Blame History
liang-xs authored 2021-07-08 19:43 . 文章列表管理-删除功能完成
<!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="./css/reset.css">
<link rel="stylesheet" href="./css/iconfont.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./libs/layui/css/layui.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">
<div class="btn btn-success" id="xinzengfenlei" data-toggle="modal" data-target="#myModal">新增分类
</div>
</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">保存</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">保存</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- 编辑分类布局区域-结束 -->
<script src="./libs/jquery/jquery.min.js"></script>
<!-- 导入bootstrap的js文件 -->
<script src="./libs/bootstrap/js/bootstrap.min.js"></script>
<!-- 引入 layui -->
<script src="./libs/layui/layui.js"></script>
<!-- 引入 模版引擎 -->
<script src="./libs/art-template/template-web.js"></script>
<!-- 公共js文件 -->
<script src="./js/common.js"></script>
<!-- 自己js文件 首页正常的业务 -->
<script src="./js/article_category.js"></script>
<!-- 模版html -->
<script type="text/html" id="trTpl">
{{each list}}
<tr data-obj='{{$value}}'>
<td>{{$value.name}}</td>
<td>{{$value.slug}}</td>
<td class="text-center">
<button data-toggle="modal" data-target="#editModal" class="edit btn btn-info btn-xs">编辑</button>
<button class="delete btn btn-danger btn-xs">删除</button>
</td>
</tr>
{{/each}}
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化