工单小程序2024-11-20
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.
 
 
 

39 lines
657 B

// 用户相关接口
const api = {
//用户信息-根据id查询用户信息
queryUserById: {
url: '/workorder/user/queryUserById',
method: 'GET',
auth : true,
},
//用户信息-资料修改
updateUser: {
url: '/workorder/user/updateUser',
method: 'POST',
auth : true,
showLoading : true,
},
//用户列表
queryUserList: {
url: '/workorder/user/queryUserList',
method: 'GET',
auth : true,
},
//账号密码登录
login: {
url: '/workorder/user/login',
method: 'POST',
showLoading : true,
},
//注册
register: {
url: '/workorder/user/register',
method: 'POST',
showLoading : true,
},
}
export default api