wangzhibo
2026-07-16 b57020623cf0c946706573bf102e548c3a544423
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
<template>
    <cl-crud ref="Crud">
        <cl-row>
            <!-- 刷新按钮 -->
            <cl-refresh-btn />
            <el-button
                type="success"
                :disabled="Table?.selection.length == 0"
                @click="restore()"
                v-permission="service.recycle.data.permission.restore"
            >
                {{ $t('批量恢复') }}
            </el-button>
 
            <cl-flex1 />
            <!-- 关键字搜索 -->
            <cl-search-key />
        </cl-row>
 
        <cl-row>
            <!-- 数据表格 -->
            <cl-table ref="Table" />
        </cl-row>
 
        <cl-row>
            <cl-flex1 />
            <!-- 分页控件 -->
            <cl-pagination />
        </cl-row>
    </cl-crud>
</template>
 
<script lang="ts" setup>
defineOptions({
    name: 'recycle-data'
});
 
import { useCrud, useTable } from '@cool-vue/crud';
import { ElMessage, ElMessageBox } from 'element-plus';
import { onActivated } from 'vue';
import { useCool } from '/@/cool';
import { useI18n } from 'vue-i18n';
 
const { service } = useCool();
 
const { t } = useI18n();
 
// cl-table
const Table = useTable({
    contextMenu: [],
    columns: [
        {
            type: 'selection'
        },
        { label: t('操作人'), prop: 'userName', minWidth: 120 },
        {
            label: t('被删除的数据'),
            prop: 'data',
            minWidth: 200,
            component: {
                name: 'cl-code-json',
                props: {
                    popover: true
                }
            }
        },
        {
            label: t('请求的接口'),
            prop: 'url',
            showOverflowTooltip: true,
            minWidth: 150
        },
        {
            label: t('请求参数'),
            prop: 'params',
            minWidth: 150,
            component: {
                name: 'cl-code-json',
                props: {
                    popover: true
                }
            }
        },
        { label: t('删除条数'), prop: 'count', minWidth: 120, sortable: 'custom' },
        {
            label: t('创建时间'),
            prop: 'createTime',
            minWidth: 170,
            sortable: 'desc'
        },
        {
            type: 'op',
            width: 120,
            buttons: [
                {
                    label: t('恢复'),
                    hidden: !service.recycle.data._permission.restore,
                    type: 'success',
                    onClick({ scope }) {
                        restore(scope.row.id);
                    }
                }
            ]
        }
    ]
});
 
// cl-crud
const Crud = useCrud({
    service: service.recycle.data
});
 
// 刷新
function refresh(params?: any) {
    Crud.value?.refresh(params);
}
 
// 数据恢复
function restore(id?: string) {
    const ids = id ? [id] : Table.value?.selection.map(e => e.id);
 
    ElMessageBox.confirm(t('此操作将恢复被删除的数据,是否继续?'), t('提示'), {
        type: 'warning'
    })
        .then(() => {
            service.recycle.data
                .restore({
                    ids
                })
                .then(() => {
                    ElMessage.success(t('数据恢复成功'));
                    refresh();
                })
                .catch(err => {
                    ElMessage.error(err.message);
                });
        })
        .catch(() => null);
}
 
onActivated(() => {
    refresh();
});
</script>