9 lines
265 B
JavaScript
9 lines
265 B
JavaScript
|
|
import { request } from '../../utils/request'
|
||
|
|
|
||
|
|
export function getOwnerOptions({ keyword = '', limit = 20 } = {}) {
|
||
|
|
return request({
|
||
|
|
url: `/psychology/user/options?keyword=${encodeURIComponent(keyword)}&limit=${encodeURIComponent(limit)}`,
|
||
|
|
method: 'GET'
|
||
|
|
})
|
||
|
|
}
|