| | |
| | | |
| | | // var img_url = APIUrl.util.image // 这个就是图片上传的api url |
| | | |
| | | |
| | | // 股东减持开关接口 |
| | | export function stockDzDisplay(options) { |
| | | return get('/user/stockDzDisplay.do', options) |
| | | } |
| | | // 龙虎榜 |
| | | export function stockgetlhb(options) { |
| | | return get('/api/stock/getlhb.do', options) |
| | |
| | | export function buy(options) { |
| | | return post('/user/buy.do', options) |
| | | } |
| | | // 获取手续费 |
| | | export function getFee(options) { |
| | | return post('/user/fee.do', options) |
| | | } |
| | | |
| | | // 指数下单 |
| | | export function indexBuy(options) { |
| | |
| | | } |
| | | |
| | | // 获取网站设置信息 |
| | | export function generateAgreementPdf(options) { |
| | | return post('/user/generateAgreementPdf.do', options) |
| | | } |
| | | |
| | | export function viewAgreementPdf() { |
| | | return get('/user/viewAgreementPdf.do') |
| | | } |
| | | |
| | | export function saveAgreementSignature(formData) { |
| | | return post('/user/saveAgreementSignature.do', formData, { |
| | | headers: { |
| | | 'Content-Type': 'multipart/form-data' |
| | | } |
| | | }) |
| | | } |
| | | |
| | | export function generateAgreementContractPdf(options) { |
| | | return post('/user/generateAgreementContractPdf.do', options) |
| | | } |
| | | |
| | | export function viewAgreementContractPdf() { |
| | | return get('/user/viewAgreementContractPdf.do') |
| | | } |
| | | |
| | | export function saveAgreementContractSignature(formData) { |
| | | return post('/user/saveAgreementContractSignature.do', formData, { |
| | | headers: { |
| | | 'Content-Type': 'multipart/form-data' |
| | | } |
| | | }) |
| | | } |
| | | |
| | | export function getInfoSite(options) { |
| | | return post('/api/site/getInfo.do', options) |
| | | } |
| | |
| | | export function sendRegSms(options) { |
| | | return post(`/api/sms/sendRegSms.do`, options) |
| | | } |
| | | // 收益日历 |
| | | export function getProfitCalendar(options) { |
| | | return post('/user/calendar.do', options) |
| | | } |