LFPay admin web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

71 lines
1.3 KiB

import request from '@/utils/request'
// 查询用户注册列表
export function listUserRegister(query) {
return request({
url: '/business/userRegister/list',
method: 'get',
params: query
})
}
// 查询用户注册详细
export function getUserRegister(id) {
return request({
url: '/business/userRegister/' + id,
method: 'get'
})
}
// 新增用户注册
export function addUserRegister(data) {
return request({
url: '/business/userRegister',
method: 'post',
data: data
})
}
// 修改用户注册
export function updateUserRegister(data) {
return request({
url: '/business/userRegister',
method: 'put',
data: data
})
}
// 删除用户注册
export function delUserRegister(id) {
return request({
url: '/business/userRegister/' + id,
method: 'delete'
})
}
// 新增用户信息
export function addUserInfo(data) {
return request({
url: '/business/userInfo',
method: 'post',
data: data
})
}
// 新增用户信息-商户扩展
export function addUserInfoBus(data) {
return request({
url: '/business/userInfoBus',
method: 'post',
data: data
})
}
// 重置用户密码
export function resetUserPassword(id) {
return request({
url: '/business/userRegister/passwordReset',
method: 'post',
data: id
})
}