feat(custom): 新增活动订单核销
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-04-12 18:54:54 +08:00
parent e139fed2a6
commit aba5d6d6c6
7 changed files with 1976 additions and 1004 deletions

View File

@@ -2,4 +2,6 @@ import { request } from '@/utils'
export default {
getOrder: (data) => request.post('/order', data),
// 核销订单
verifyOrder: (data) => request.post('/order/verify', data),
}