1 2 3 4 5 6 7 8 9
import axios from "../axios" import roleUrls from "../urls/role" export default { // 获取权限列表 fetchGetRoleList () { return axios.post(roleUrls.getRoleList) },
10
}