This commit is contained in:
2025-04-22 11:47:25 +08:00
parent eab81e29df
commit 86aa66800c
10 changed files with 227 additions and 229 deletions

View File

@@ -147,6 +147,112 @@ const admin = {
data: data
});
},
getInterventionList: async (data) => {
return request({
url: '/admin/intervention/getInterventionList',
method: Method.POST,
data: data
});
},
getBusinessmoneylogPlatform: async () => {
return request({
url: '/admin/businessmoneylog/getPlatform',
method: Method.POST,
});
},
getBusinessmoneylogPurpose: async () => {
return request({
url: '/admin/businessmoneylog/getPurpose',
method: Method.POST,
});
},
getBusinessmoneylogList: async (data) => {
return request({
url: '/admin/businessmoneylog/getList',
method: Method.POST,
data: data
});
},
getUsermoneylogPlatform: async () => {
return request({
url: '/admin/usermoneylog/getPlatform',
method: Method.POST,
});
},
getUsermoneylogPurpose: async () => {
return request({
url: '/admin/usermoneylog/getPurpose',
method: Method.POST,
});
},
getUsermoneylogList: async (data) => {
return request({
url: '/admin/usermoneylog/getList',
method: Method.POST,
data: data
});
},
getWithdrawalPerson: async () => {
return request({
url: '/admin/withdrawal/getPerson',
method: Method.POST,
});
},
getWithdrawalPlatform: async () => {
return request({
url: '/admin/withdrawal/getPlatform',
method: Method.POST,
});
},
getWithdrawalList: async (data) => {
return request({
url: '/admin/withdrawal/getList',
method: Method.POST,
data: data
});
},
getWithdrawllogStatus: async (data) => {
return request({
url: '/admin/withdrawallog/getStatus',
method: Method.POST,
data: data
});
},
getWithdrawllogList: async (data) => {
return request({
url: '/admin/withdrawallog/getList',
method: Method.POST,
data: data
});
},
getBusinessList: async (data) => {
return request({
url: '/admin/business/getList',
method: Method.POST,
data: data
});
},
getUserList: async (data) => {
return request({
url: '/admin/user/getList',
method: Method.POST,
data: data
});
},
getAccountList: async (data) => {
return request({
url: '/admin/account/getList',
method: Method.POST,
data: data
});
},
getTaskblockList: async (data) => {
return request({
url: '/admin/taskblock/getList',
method: Method.POST,
data: data
});
},
}
export default admin;