This commit is contained in:
xiaozhiyong
2024-02-21 15:12:03 +08:00
parent 607e13f266
commit 7536516a37
4 changed files with 226 additions and 11 deletions

18
api/integral.js Normal file
View File

@@ -0,0 +1,18 @@
import request from '@/utils/request'
export default {
getByPage(data) {
return request({
url: '/oil-finance/oilCustomerIntegralRecord/getByPage',
method: 'post',
data: data
})
},
getByCustomerId(customerId) {
return request({
url: `/oil-finance/oilCustomerIntegralAccount/getByCustomerId/${customerId}`,
method: 'get'
})
},
}