18 lines
356 B
18 lines
356 B
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' |
|
}) |
|
}, |
|
}
|
|
|