星油企业版更新

This commit is contained in:
caolc
2023-02-13 15:43:06 +08:00
parent 41c2629561
commit d6e55390f3
51 changed files with 5176 additions and 480 deletions

58
api/Financial.js Normal file
View File

@@ -0,0 +1,58 @@
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
})
},
}

View File

@@ -2,6 +2,7 @@ const baseURL = 'https://www.51xingka.net/LSMDRIVER/'
const starUrl = 'https://xingka51.oss-cn-hangzhou.aliyuncs.com/applets/starOil/'
const mainURL = 'https://xingka51.oss-cn-hangzhou.aliyuncs.com/applets/cloudSite/'
const imgURL = 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/'
const newImgURL = 'https://xoil-public.oss-cn-beijing.aliyuncs.com/enterprise_startoil/'
const yellowURL = 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-xq/'
const qqMapKey = 'NYEBZ-YURY3-XTU3N-YBR54-PKW6E-ROB2F'
@@ -11,5 +12,6 @@ export default {
mainURL,
imgURL,
qqMapKey,
yellowURL
yellowURL,
newImgURL
}