鸿宇研学生前端代码
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.
 
 
 

34 lines
605 B

// 成员管理相关接口
const api = {
// 成员管理-查询绑定成员列表
queryBindList: {
url: '/bind/queryBindList',
method: 'GET',
auth: true,
},
// 成员管理-查询绑定人信息
queryBindUser: {
url: '/bind/queryBindUser',
method: 'GET',
auth: true,
},
// 成员管理-绑定申请
addBind: {
url: '/bind/addBind',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
// 成员管理-审批绑定申请
updateBind: {
url: '/bind/updateBind',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
}
export default api