admin-fe/src/api/remoteSearch.js

10 lines
159 B
JavaScript
Raw Normal View History

2017-05-15 09:56:45 +00:00
import fetch from 'utils/fetch';
2017-04-23 11:50:32 +00:00
export function userSearch(name) {
return fetch({
url: '/search/user',
method: 'get',
params: { name }
});
}