|
|
|
|
|
<!DOCTYPE HTML>
|
<html xmlns:th="http://www.thymeleaf.org" xmlns:matrix="http://www.w3.org/1999/xhtml">
|
<head>
|
<meta charset="utf-8">
|
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
<meta name="renderer" content="webkit|ie-comp|ie-stand">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
<meta name="viewport"
|
content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
|
<meta http-equiv="Cache-Control" content="no-siteapp" />
|
<LINK rel="Bookmark" href="../images/favicon.ico">
|
<!-- 本框架基本脚本和样式 -->
|
<script type="text/javascript"
|
th:src="@{/js/plugin/jquery-2.1.4.min.js}"></script>
|
<script type="text/javascript"
|
th:src="@{/js/systools/MBase.js}"></script>
|
</head>
|
<body class="gray-bg">
|
<!-- <nav class="huiNav">
|
<i class="fa fa-home"></i> 首页 <span>></span>商城管理<span>></span>团购秒杀
|
<a class="btn btn-info btn-sm pull-right"
|
href="javascript:location.replace(location.href);" title="刷新"><i
|
class="fa fa-refresh"></i></a>
|
</nav> -->
|
|
<div class="ibox-content">
|
<!-- 搜索框部分start -->
|
<form class="form-inline" id="serchform">
|
<div class="form-group mr-20">
|
<label>操作时间:</label>
|
<input autocomplete="off" name="beginTimeVo" type="text" class="form-control datetimepicker" id="beginTime">-
|
<input autocomplete="off" name="endTimeVo" type="text" class="form-control datetimepicker" id="endTime">
|
</div>
|
<!-- <div class="form-group mr-20">
|
<label for="staus">订单状态:</label> <select class="form-control "
|
name="state">
|
<option value=''>--请选择团购状态--</option>
|
<option value='上架'>上架</option>
|
<option value='下架'>下架</option>
|
</select>
|
</div> -->
|
<!-- <div class="form-group mr-20">
|
<label for="staus">是否结束</label> <select class="form-control "
|
name="isOver">
|
<option value=''>--请选结束状态--</option>
|
<option value='是'>是</option>
|
<option value='否'>否</option>
|
</select>
|
</div> -->
|
<button onclick="myGrid.serchData()" type="button"
|
class="btn btn-info btn-sm">
|
<i class="fa fa-search "></i> 搜索
|
</button>
|
<button type="reset" class="btn btn-info btn-sm">
|
<i class="fa fa-refresh "></i> 重置
|
</button>
|
</form>
|
|
|
|
<table id="mgrid">
|
<thead>
|
<tr>
|
<th data-field="id" data-align="center" data-width="30px">序号</th>
|
<th data-field="point">积分</th>
|
<th data-field="remark">备注</th>
|
<th data-field="flowNo">积分规则编号</th>
|
<th data-field="operTime" data-formatter="MGrid.getTime"
|
ata-sortable="true">操作时间</th>
|
</tr>
|
</thead>
|
</table>
|
</div>
|
|
<script type="text/javascript" th:src="@{/js/systools/MJsBase.js}"></script><script type="text/javascript">
|
var myGrid;
|
$(function() {
|
var initParam = {
|
format : "yyyy-mm-dd hh:ii", //默认显示年与日,如果想显示十分秒:"yyyy-mm-dd hh:ii:ss"
|
minView: "0", //"month",只显示年月日的选择,不会再跳转去选择时分秒;如果想要选择时分秒的:"hour"
|
}
|
MTools.ininDatetimepicker(initParam);
|
//限制结束时间不小于开始时间
|
MTools.limitStartEndTime({});
|
|
MTools.autoFullSelect();
|
|
myGrid = MGrid.initGrid({
|
url : basePath+"/admin/showdate/showPoint",
|
detailView : true,
|
});
|
});
|
|
|
</script>
|
</body>
|
</html>
|