...
|
...
|
@@ -10,21 +10,24 @@ export const getRandCode = params => { return http.get(`/cloud-user-center/anony |
|
|
|
|
|
export const getUserListPage = params => { return http.get(`/user/list`,params) };
|
|
|
|
|
|
export const removeUser = params => { return http.del(`${baseUrl}/del`,params)};
|
|
|
export const removeUser = params => { return http.post(`${baseUrl}/del`,params)};
|
|
|
|
|
|
export const batchRemoveUser = params => { return http.del(`${baseUrl}/batchremove`, { params: params }); };
|
|
|
export const batchRemoveUser = params => { return http.post(`${baseUrl}/batchremove`, { params: params }); };
|
|
|
|
|
|
export const editPass = params => { return http.put(`${baseUrl}/password`,params)};
|
|
|
export const editPass = params => { return http.post(`${baseUrl}/password`,params)};
|
|
|
|
|
|
export const editUser = params => { return http.put(`${baseUrl}/edit`,params)};
|
|
|
export const editUser = params => { return http.post(`${baseUrl}/edit`,params)};
|
|
|
|
|
|
export const addUser = params => { return http.post(`${baseUrl}/add`,params)};
|
|
|
|
|
|
export const heartBeat = params => { return http.post(`${serviceName}/heartbeat`,params)};
|
|
|
|
|
|
export const setUserRole = params => { return http.put(`${baseUrl}/roleset`,params)};
|
|
|
export const userLock = params => { return http.post(`${baseUrl}/lock`,params)};
|
|
|
|
|
|
export const setUserRole = params => { return http.post(`${baseUrl}/roleset`,params)};
|
|
|
|
|
|
export const resetToken = params => { return http.post(`${baseUrl}/resetToken`,params)};
|
|
|
|
|
|
export const resetToken = params => { return http.put(`${baseUrl}/resetToken`,params)};
|
|
|
|
|
|
|
|
|
export const loginedUserInfo = () => {
|
...
|
...
|
|