fix: roles api not fetch

This commit is contained in:
caturbgs
2021-12-22 15:46:41 +07:00
parent 5039fa736a
commit 84ff8c12f8
2 changed files with 15 additions and 34 deletions

View File

@@ -2,8 +2,8 @@ import {makeAutoObservable} from "mobx";
import {http} from "../utils/http";
export class Role {
page = null;
pageSize = null;
page = 0;
pageSize = 10;
data = [];
total_data = 0;