调整支付

This commit is contained in:
唐明明
2023-07-11 14:47:30 +08:00
parent c8cc2b6dda
commit 0320f43c0d
8 changed files with 99 additions and 30 deletions

View File

@@ -61,6 +61,25 @@ const orderCancel = order => {
})
}
// 核验列表
const codes = code => {
return request({
url : "empower/code",
data : { code },
method : "POST",
})
}
// 确认核验
const sign = item_id => {
return request({
url : "empower/code/sign",
data : { item_id },
method : "POST",
})
}
export {
lists,
info,
@@ -68,6 +87,8 @@ export {
buy,
orderInit,
orderList,
orderCancel
orderCancel,
codes,
sign
}