mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
10 lines
159 B
JavaScript
10 lines
159 B
JavaScript
import fetch from 'utils/fetch';
|
|
|
|
export function userSearch(name) {
|
|
return fetch({
|
|
url: '/search/user',
|
|
method: 'get',
|
|
params: { name }
|
|
});
|
|
}
|