You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
859 B
49 lines
859 B
|
3 months ago
|
/**
|
||
|
|
* 律师事务所年度经营报表 api 封装
|
||
|
|
*
|
||
|
|
* @Author: wzh
|
||
|
|
* @Date: 2026-01-07 15:57:43
|
||
|
|
* @Copyright 1.0
|
||
|
|
*/
|
||
|
|
import { postRequest, getRequest } from '/@/lib/axios';
|
||
|
|
|
||
|
|
export const firmReportsApi = {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 分页查询 @author wzh
|
||
|
|
*/
|
||
|
|
queryPage : (param) => {
|
||
|
|
return postRequest('/firmReports/queryPage', param);
|
||
|
|
},
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 增加 @author wzh
|
||
|
|
*/
|
||
|
|
add: (param) => {
|
||
|
|
return postRequest('/firmReports/add', param);
|
||
|
|
},
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 修改 @author wzh
|
||
|
|
*/
|
||
|
|
update: (param) => {
|
||
|
|
return postRequest('/firmReports/update', param);
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 删除 @author wzh
|
||
|
|
*/
|
||
|
|
delete: (id) => {
|
||
|
|
return getRequest(`/firmReports/delete/${id}`);
|
||
|
|
},
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 批量删除 @author wzh
|
||
|
|
*/
|
||
|
|
batchDelete: (idList) => {
|
||
|
|
return postRequest('/firmReports/batchDelete', idList);
|
||
|
|
},
|
||
|
|
|
||
|
|
};
|