lyg
2025-03-04 72bbec1590f85974d369ce7aeaa05be8905672a0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{extend name="../../base/view/common/base" /}
<!-- 主体 -->
{block name="body"}
<div class="p-page">
    <div class="gg-form-bar border-t border-x">
        <h3 class="pb-3">数据还原</h3>
    </div>
    <table cellspacing="0" cellpadding="0" border="0" class="layui-table layui-table-form">
        <tr style="background-color:#FAFAFA">
            <th style=" text-align: center; font-weight: 800;"><span>文件名称</span></th>
            <th style=" text-align: center; font-weight: 800;"><span>文件格式</span></th>
            <th style=" text-align: center; font-weight: 800;"><span>分隔符</span></th>
            <th style=" text-align: center; font-weight: 800;"><span>文件总大小</span></th>
            <th style=" text-align: center; font-weight: 800;"><span>分卷总数</span></th>
            <th style=" text-align: center; font-weight: 800; width:222px"><span>操作</span></th>
        </tr>
        {empty name="list"}
        <tr>
            <td colspan="6" align="center" style="padding:20px 0; color:#999">暂无备份数据</td>
        </tr>
        {/empty}
        {volist name="list" id="vo" key="k"}
        <tr style="background-color: #fafafa;">
            <td><strong>备份时间:{$vo.time}</strong>{if $vo.timespan == $lock_time}<span style="color:red; margin-left:20px;">该备份不是完整备份,请删除重新备份</span>{/if}</td>
            <td align="center"><span>.sql</span></td>
            <td align="center"><span>{$vo.data.compress}</span></td>
            <td align="center"><span>{:format_bytes($vo.data.size)}</span></td>
            <td align="center"><span>{$vo.data.part}</span></td>
            <td align="center">
                <div class="layui-btn-group" data-time='{$vo.timespan}'>
                    {if $vo.timespan == $lock_time}
                    <a class="layui-btn layui-btn-xs layui-btn-danger" lay-event="reset">清除不完整的备份</a>
                    {else/}
                    <a class="layui-btn layui-btn-xs layui-btn-normal" lay-event="import">数据还原</a>
                    <a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del">删除备份</a>
                    {/if}
                </div>
            </td>
        </tr>
        {for start="0" end="$vo.data.part" step="1"}
        <tr>
            <td colspan="5">
                {:date("Ymd",$vo.timespan)}{$vo.data.compress}{:date("His",$vo.timespan)}{$vo.data.compress}{$i+1}.sql
            </td>
            <td align="center">
                <a class="layui-btn layui-btn-xs" href='/home/database/downfile?time={$vo.data.time}&part={$i+1}'>下载备份(分卷{$i+1})</a>
            </td>
        </tr>
        {/for}
        {/volist}
    </table>
</div>
 
{/block}
<!-- /主体 -->
 
<!-- 脚本 -->
{block name="script"}
<script>
    function gouguInit() {
        function importData(data) {
            if (data.code == 0) {
                console.log(data.msg);
                layer.closeAll();
                layer.msg(data.msg, { time: 200000 });
                if ($.isPlainObject(data.data)) {
                    $.ajax({
                        url: "/home/database/import",
                        type: 'get',
                        data: { "part": data.data.part, "start": data.data.start, time: data.data.time },
                        success: function (res) {
                            importData(res);
                        }
                    })
                } else {
                    layer.msg(data.msg);
                    window.onbeforeunload = function () { return null; }
                }
            } else {
                layer.msg(data.msg);
            }
        }
        //监听行工具事件
        $('[lay-event="import"]').on('click', function () {
            var time = $(this).parent().data('time');
            layer.confirm('确认要还原该备份吗?', {
                icon: 3,
                title: '提示'
            }, function (index) {
                layer.msg("数据还原中...", { time: 200000 });
                $.ajax({
                    url: "/home/database/import?time=" + time,
                    type: 'post',
                    success: function (res) {
                        importData(res);
                    }
                })
                window.onbeforeunload = function () { return "正在还原数据库,请不要关闭!" }
                layer.close(index);
            });
            return false;
        })
 
        $('[lay-event="del"]').on('click', function () {
            var time = $(this).parent().data('time');
            layer.confirm('确认要删除该备份吗?', {
                icon: 3,
                title: '提示'
            }, function (index) {
                $.ajax({
                    url: "/home/database/del",
                    data: { 'time': time },
                    success: function (res) {
                        layer.msg(res.msg);
                        if (res.code == 0) {
                            setTimeout(function () {
                                location.reload();
                            }, 2000)
                        }
                    }
                })
                layer.close(index);
            });
            return false;
        })
 
        $('[lay-event="reset"]').on('click', function () {
            var time = $(this).parent().data('time');
            layer.confirm('确认要清除该备份吗?', {
                icon: 3,
                title: '提示'
            }, function (index) {
                $.ajax({
                    url: "/home/database/del",
                    data: { 'time': time, 'lock': 1 },
                    success: function (res) {
                        layer.msg(res.msg);
                        if (res.code == 0) {
                            setTimeout(function () {
                                location.reload();
                            }, 2000)
                        }
                    }
                })
                layer.close(index);
            });
            return false;
        })
    }
</script>
{/block}
<!-- /脚本 -->