This commit is contained in:
caolc
2023-02-07 14:39:12 +08:00
parent 0e0012880f
commit ce2d0cefd6
75 changed files with 13116 additions and 3 deletions

66
api/Financial.js Normal file
View File

@@ -0,0 +1,66 @@
import request from '@/utils/request'
export default {
//
findHomePageReport(data) {
return request({
url: `/oil-interfaces/xoilSinoiovCustomerRiskevalReport/findHomePageReport`,
method: 'get',
params: data
})
},
//获取支付记录
getByPage(data) {
return request({
url: `/oil-interfaces/xoilSinoiovCustomerPayRecord/getByPage`,
method: 'post',
data: data
})
},
//获取 产品列表
Productlist(data) {
return request({
url: `/oil-interfaces/xoilSinoiovProduct/list`,
method: 'GET',
params: data
})
},
//微信支付
weiXinPay(data) {
return request({
url: `/oil-interfaces/xoilSinoiovCustomerPayRecord/weiXinPay`,
method: 'post',
data: data
})
},
//查询评分报告详情
xoilSinoiovCustomerRiskevalReport(data) {
return request({
url: `/oil-interfaces/xoilSinoiovCustomerRiskevalReport/get/${data.id}`,
method: 'get',
})
},
//查询评估报告
getEvaluationReportById(data) {
return request({
url: `/oil-interfaces/xoilSinoiovCustomerSafeinfoReport/getEvaluationReportById`,
method: 'get',
params: data
})
},
//获取
findOldPlate(data) {
return request({
url: `/oil-interfaces/xoilSinoiovCustomerPayRecord/findOldPlate`,
method: 'get',
params: data
})
},
//获取
ybPay(data) {
return request({
url: `/oil-interfaces/xoilSinoiovCustomerPayRecord/ybPay`,
method: 'post',
data: data
})
},
}

View File

@@ -3,11 +3,12 @@ const starUrl = 'https://xoil-public.oss-cn-beijing.aliyuncs.com/baichuan_MP/'
const mainURL = 'https://xingka51.oss-cn-hangzhou.aliyuncs.com/applets/cloudSite/'
const imgURL = 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/'
const qqMapKey = 'NYEBZ-YURY3-XTU3N-YBR54-PKW6E-ROB2F'
const newImgURL = 'https://xoil-public.oss-cn-beijing.aliyuncs.com/enterprise_startoil/'
export default {
baseURL,
starUrl,
mainURL,
imgURL,
qqMapKey
qqMapKey,
newImgURL
}