1234567891011121314151617181920212223242526 |
- import http from '@/http/api.js'
- // 积分兑换记录
- export function integralExchangeRecord(params) {
- return http.request({
- url: '/blade-purchase-sales/integraldetail/integralExchangeRecord',
- method: 'GET',
- params
- })
- }
- // 积分获取记录
- export function integralRecord(params) {
- return http.request({
- url: '/blade-purchase-sales/integraldetail/integralRecord',
- method: 'GET',
- params
- })
- }
- // 消费记录
- export function consumptionRecords(params) {
- return http.request({
- url: '/blade-sales-part/order/consumptionRecords',
- method: 'GET',
- params
- })
- }
|