skyouc
2025-03-26 a8bf6a39b243af3e6b3c0d52b7b836c9cdc743de
rsf-admin/src/page/components/ImportModal.jsx
@@ -80,7 +80,9 @@
    };
    const downloadTemplate = async (type) => {
        const res = await request.post(`/${value}/template/download`, {})
        const res = await request.post(`/${value}/template/download`, {}, {
            responseType: "blob",
        })
        const url = window.URL.createObjectURL(
            new Blob([res.data], { type: res.headers["content-type"] }),
        );