This commit is contained in:
2023-11-24 18:15:03 +08:00
parent d577c9e16f
commit bd0cb053a4
4 changed files with 429 additions and 64 deletions

View File

@@ -45,6 +45,27 @@ export default {
// 提货卡设置
// 提货卡发行记录
recordListPage: function(data) {
return request({
url: '/lpkcardbuildrecord/recordListPage',
method: 'post',
data: data
});
},
// 发行记录详细
recordDetails: function(data) {
return request({
url: '/lpkgiftcard/recordDetails',
method: 'post',
data: data
});
},
// 获取提货卡页面 礼包列表
giftBagList: function(data) {
return request({
@@ -54,5 +75,14 @@ export default {
});
},
// 发行提货卡
generateCard: function(data) {
return request({
url: '/lpkgiftcard/generateCard',
method: 'post',
data: data
});
},
}