14 lines
264 B
TypeScript
14 lines
264 B
TypeScript
import createAxios from '/@/utils/axios'
|
|
|
|
export const url = '/admin/user.ScoreLog/'
|
|
|
|
export function add(userId: string) {
|
|
return createAxios({
|
|
url: url + 'add',
|
|
method: 'get',
|
|
params: {
|
|
userId: userId,
|
|
},
|
|
})
|
|
}
|