Your Name
2022-07-04 41b20b89eb03e1a7e52e7e31ce3fd3f240f67c46
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import request from '/@/utils/request';
 
export function userApi() {
    return {
        getUserList: (data: any) => {
            return request({
                url: `/account/page/list`,
                method: 'post',
                data:data
            });
        },
        addUser: (data: object) => {
            return request({
                url: `/account/add`,
                method: 'post',
                data:data
            });
        },
        modUser: (data: object) => {
            return request({
                url: `/account/mod`,
                method: 'post',
                data:data
            });
        },
    };
}