This commit is contained in:
kk
2026-07-08 18:00:33 +08:00
commit e66b4a3680
312 changed files with 54718 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import request from '@/axios';
export const getList = (current, size, params) => {
return request({
url: '/blade-report/report/rest/list',
method: 'get',
params: {
...params,
current,
size,
},
});
};
export const remove = ids => {
return request({
url: '/blade-report/report/rest/remove',
method: 'post',
params: {
ids,
},
});
};