This commit is contained in:
caolc
2023-07-05 18:19:02 +08:00
parent e883da3fff
commit cf253870a3
17 changed files with 861 additions and 343 deletions

View File

@@ -10,4 +10,19 @@ export default {
data: data
})
},
//获取所有油卡
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
})
},
}