修改:积分管理修改 - 冻结积分修改为平台积分。积分获得栏目修改为商户积分栏目
This commit is contained in:
parent
e849f617a9
commit
d08c3c375f
12
api/user.js
12
api/user.js
|
|
@ -168,7 +168,6 @@ export function extractLst(data) {
|
||||||
export function getIntegralList(data) {
|
export function getIntegralList(data) {
|
||||||
return request.get("user/integral/lst", data);
|
return request.get("user/integral/lst", data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取分销海报图片
|
* 获取分销海报图片
|
||||||
*
|
*
|
||||||
|
|
@ -696,9 +695,14 @@ export function getCustomList(merId, data) {
|
||||||
export function customIntegralChange(merId, data) {
|
export function customIntegralChange(merId, data) {
|
||||||
return request.post("custom/integral_change/"+merId, data);
|
return request.post("custom/integral_change/"+merId, data);
|
||||||
}
|
}
|
||||||
|
// 积分中心 - 获取商户积分记录
|
||||||
|
export function getMerchantIntegral(data) {
|
||||||
|
return request.post("user/integral/mer_list", data);
|
||||||
|
}
|
||||||
|
// 积分中心 - 转换积分
|
||||||
|
export function convertMerchantIntegral(merId,data) {
|
||||||
|
return request.post("user/integral/integral_convert/"+merId, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue