Files
MP_XOIL_company_new/api/oil-finance.js

29 lines
641 B
JavaScript
Raw Normal View History

2022-08-08 09:17:43 +08:00
import request from '@/utils/request'
const service_name = "oil-finance"
const group_name = "oilOrderInfo"
export default {
// 微信下单 支付
aggregatePay(data) {
return request({
url: `/${service_name}/${group_name}/aggregatePay`,
method: 'post',
data: data
})
},
2023-07-05 18:19:02 +08:00
//获取所有油卡
getLoginCustomerId(customerId) {
return request({
url: `/oil-finance/oilCustomerCompanyAccount/getLoginCustomerId/${customerId}`,
method: 'GET',
})
},
//确认切换油卡
chooseCompanyCard(data) {
return request({
url: `/oil-identity/operationUser/chooseCompanyCard`,
method: 'post',
data:data
})
},
2022-08-08 09:17:43 +08:00
}