律师系统前端
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.

36 lines
564 B

4 months ago
/**
* 承诺书签订表 api 封装
*
* @Author: wzh
* @Date: 2025-12-22 17:43:06
* @Copyright 1
*/
import { postRequest, getRequest } from '/@/lib/axios';
export const letterApi = {
/**
* 分页查询 @author wzh
*/
queryPage : (param) => {
return postRequest('/letter/queryPage', param);
},
/**
* 增加 @author wzh
*/
add: (param) => {
return postRequest('/letter/add', param);
},
/**
* 修改 @author wzh
*/
update: (param) => {
return postRequest('/letter/update', param);
},
};