123456789101112131415161718192021222324252627282930313233343536373839 |
- <style type="text/css">
- .queryform_item{float:left;width: 20%}
- .queryform_label{float:left;width: 7rem;text-align: right;}
- .queryform_inputblock{float:left;margin:1rem !important;width:13.5rem;}
- </style>
- <script type="text/javascript" src="/static/js/log.js"></script>
- <div class="children-content">
- <blockquote class="layui-elem-quote" style="padding:10px;line-height:25px;">
- 系统管理 / 数据备份与还原
- </blockquote>
- <div>
- <div style="position:relative;width:100%;">
- <div class="layui-panel" id="log_query_panel" style="height:5rem;line-height: 4.5rem;">
- <form class="layui-form layui-form-pane" action="">
- <div style="float:left;width: 100%">
- <button id="btnSearch" type="button" class="layui-btn layui-btn-normal" style="margin-left:40px;height:32px;line-height:32px;" onclick="LogObject.NewDbBackup();">备份</button>
- <button id="btnSearch" type="button" class="layui-btn layui-btn-normal" style="margin-left:40px;height:32px;line-height:32px;" onclick="LogObject.SearchDbBackupList();">刷新</button>
- </div>
- </form>
- </div>
- </div>
- <table id="table-dbbackup" lay-filter="oparation-data">
- </table>
- </div>
- </div>
- <script type="text/javascript">
- $(document).ready(function () {
- LogObject.SearchDbBackupList();
- $('#text_startdate,#text_enddate').val(Global.GetCurrentDate());
- layui.use(['form', 'layedit', 'laydate'], function () {
- var laydate = layui.laydate;
- laydate.render({
- elem: '#text_startdate,#text_enddate'
- });
- });
- });
- </script>
|