1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| 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()
|
|