17 lines
366 B
TypeScript
17 lines
366 B
TypeScript
import http from '@/api/http';
|
|
|
|
export interface Role {
|
|
id: number;
|
|
name: string;
|
|
description: string | null;
|
|
sortId: number;
|
|
}
|
|
|
|
export default (): Promise<Role[]> => {
|
|
return new Promise((resolve, reject) => {
|
|
http.get('/api/application/roles')
|
|
.then(({ data }) => resolve(data || []))
|
|
.catch(reject);
|
|
});
|
|
};
|