|
|
- // 成员管理相关接口
-
- 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
|