feat: 初始化
This commit is contained in:
11
services/capital/withDraw.ts
Normal file
11
services/capital/withDraw.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { request } from '@/utils/request';
|
||||
|
||||
export function saveWithdraw(data: Record<string, any>) {
|
||||
return request({ url: '/api/app/capital/goldOut/save', method: 'POST', data });
|
||||
}
|
||||
export function saveIBWithdraw(data: Record<string, any>) {
|
||||
return request({ url: '/api/app/ibHome/fundOut/save', method: 'POST', data });
|
||||
}
|
||||
export function sendBankMail(data: Record<string, any>) {
|
||||
return request({ url: '/api/app/personal/sendBankMail', method: 'POST', data });
|
||||
}
|
Reference in New Issue
Block a user