import service from '../service' // 积分记录api export class IntegralControlApi { // 查询用户信息 queryUserInfo = (params, showLoading = true) => { return service.post('/awl-member-service/memberInfo/findBaseInfoByInfo', params, showLoading) } // 调整积分 adjustIntegral = (params, showLoading = true) => { return service.post('/awl-product-service/ecIntegralProduct/insertEcIntegralModify', params, showLoading) } // 查询用户积分列表 queryUserIntegralList = (params, showLoading = true) => { return service.post('/awl-product-service/ecIntegralProduct/getPageEcIntegralModify', params, showLoading) } } export default new IntegralControlApi()