hejianhao
4 天以前 23e65c431f1fe66daae125e2ca13114721b302fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { request } from '@umijs/max';
 
// 获取诉求列表
export const getList = async (data) => {
    return request(`/api/huacheng-sangeshenbian/complaint/page`, {
        method: 'POST',
        data
    });
}
 
// 获取述求详情
export const getDetail = async (data) => {
    return request(`/api/huacheng-sangeshenbian/complaint/detail/${data.id}`, {
        method: 'GET',
        data
    });
}