shj
2022-07-06 476201c97b910a0fda2713a7331e26530ecd7bd3
1
2
3
4
5
6
7
8
9
10
11
12
import request from '/@/utils/request';
 
export function useRoleApi() {
    return {
        getRoleList: () => {
            return request({
                url: `/role/list`,
                method: 'post',
            });
        },
    };
}