1 Star 0 Fork 0

四海先生/events66

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
article_list.html 4.05 KB
一键复制 编辑 原始数据 按行查看 历史
chenguanmou 提交于 2021-07-13 17:38 . 评论管理的完成
<!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 opt_btns">
<div class="col-xs-6">
<div class="form-inline">
<input type="text" id="aname" class="form-control input-sm" placeholder="输入文章标题...">
<select id="selCategory" name="" class="form-control input-sm">
</select>
<select id="selStatus" name="" class="form-control input-sm">
<option value="">所有状态</option>
<option value="草稿">草稿</option>
<option value="已发布">已发布</option>
</select>
<input id="btnSearch" type="button" value="筛选" class="btn btn-success btn-sm">
<input id="btnReset" type="reset" value="重置" class="btn btn-danger btn-sm">
</div>
</div>
<div class="col-xs-6">
<a href="./article_add.html" class="btn btn-success btn-sm pull-right" id="release_btn">发表文章</a>
</div>
</div>
<table class="table table-striped table-bordered table-hover mp20">
<thead>
<tr>
<th>标题</th>
<th>作者</th>
<th>分类</th>
<th class="text-center">发表时间</th>
<th class="text-center">状态</th>
<th class="text-center" width="100">操作</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div id="pager" ></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_list.js"></script>
<!-- 模版 -->
<script type="text/html" id="trTpl">
{{each list}}
<tr data-id="{{$value.id}}">
<td>{{$value.title}}</td>
<td>{{$value.author}}</td>
<td>{{$value.category}}</td>
<td class="text-center">{{$value.date}} </td>
<td class="text-center">{{$value.state}}</td>
<td class="text-center">
<a href="article_edit.html?id={{$value.id}}" class="btn btn-default btn-xs">编辑</a>
<a href="javascript:void(0);" class="btn btn-danger btn-xs delete">删除</a>
</td>
</tr>
{{/each}}
</script>
</body>
</html>
<!-- author: "管理员"
category: "爱生活"
categoryId: 1
content: "见智对美团点评的“分部估值法”持有保留意见,两种估值方法得到截然相反的估值结果,本质上是对外卖业务的价值评估分歧。"
cover: "http://localhost/https://wpimg.wallstcn.com/9778718c-e680-4cef-88ad-9b62f21043a8.jpg"
date: "2019-05-28"
id: 220
read: 768
state: "已发布"
title: "借美团点评发布最佳财报之际,我们讨论一下估值分歧 | 见智研究团队" -->
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ATOMYAE86/events66.git
git@gitee.com:ATOMYAE86/events66.git
ATOMYAE86
events66
events66
dev

搜索帮助