This commit is contained in:
2025-09-02 19:13:43 +08:00
parent 253e395ace
commit 1a476b8ee8
6 changed files with 283 additions and 99 deletions

View File

@ -24,3 +24,11 @@ export const exportWord = (params) => {
method: 'post'
});
};
// 导出模版
export const exportExcel = (params) => {
return request({
url: '/design/collect/exportExcel',
method: 'post',
params: params
});
};