xinli/xinlidsj/api/psychology/user.js

9 lines
265 B
JavaScript
Raw Permalink Normal View History

2026-02-24 16:49:05 +08:00
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'
})
}