feat: 本次提交更新内容如下
新项目模板初始化
This commit is contained in:
22
nkebao/src/api/module/auth.ts
Normal file
22
nkebao/src/api/module/auth.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import { request } from '@/api/request';
|
||||
|
||||
export const list = (data?: any) =>
|
||||
request('/cw/companyUser/list', data, 'GET');
|
||||
|
||||
export const joinAudit = (data: any) =>
|
||||
request('/cw/companyUser/joinAudit', data, 'PUT');
|
||||
|
||||
export const listJoinAudit = (data?: any) =>
|
||||
request('/cw/companyUser/listJoinAudit', data, 'GET');
|
||||
|
||||
export const CwCompanyUserApplyAdd = (data: any) =>
|
||||
request('/cw/CwCompanyUserApply/add', data, 'PUT');
|
||||
|
||||
export const CwCompanyUserApplyAdminList = (data?: any) =>
|
||||
request('/cw/CwCompanyUserApply/adminList', data, 'GET');
|
||||
|
||||
export const CwCompanyUserApplyAudit = (data: any) =>
|
||||
request('/cw/CwCompanyUserApply/audit', data, 'POST');
|
||||
|
||||
export const CwCompanyUserApplyUserList = (data?: any) =>
|
||||
request('/cw/CwCompanyUserApply/userList', data, 'GET');
|
||||
Reference in New Issue
Block a user