This commit is contained in:
雷欧(林平凡)
2025-08-21 16:01:40 +08:00
parent fd53ce5c98
commit 03f69d8361
2 changed files with 143 additions and 3 deletions

View File

@@ -84,4 +84,22 @@ export function getProperties(params) {
method: 'get',
params
})
}
// 开礼金
export function createGiftCoupon(data) {
return request({
url: '/jarvis/jdorder/createGiftCoupon',
method: 'post',
data
})
}
// 转链(支持礼金)
export function transferWithGift(data) {
return request({
url: '/jarvis/jdorder/transfer',
method: 'post',
data
})
}