Files
Yi.Framework/Yi.Vue2.x/src/api/userApi.js
2022-05-04 15:54:40 +08:00

22 lines
514 B
JavaScript

import myaxios from '@/util/myaxios'
export default {
GetUserInRolesByHttpUser() {
return myaxios({
url: `/User/GetUserInRolesByHttpUser`,
method: 'get'
})
},
GetMenuByHttpUser() {
return myaxios({
url: `/User/GetMenuByHttpUser`,
method: 'get'
})
},
GetRoleListByUserId(userId) {
return myaxios({
url: `/User/GetRoleListByUserId?userId=${userId}`,
method: 'get'
})
},
}