#
luxiaotao1123
2024-02-17 1c2570d63ddd3f2796bfa19f58a75b75947a1020
zy-asrs-flow/src/pages/system/role/index.jsx
@@ -73,7 +73,9 @@
const handleExport = async () => {
    const hide = message.loading('正在导出');
    try {
        await Http.doPost('api/role/export');
        const resp = await Http.doPostBlob('api/role/export');
        const blob = new Blob([resp], {type: 'application/vnd.ms-excel'});
        window.location.href = window.URL.createObjectURL(blob);
        hide();
        message.success('导出成功');
        return true;