['核销记录优惠券核销和权证核销']

This commit is contained in:
2021-09-18 17:17:38 +08:00
parent bb083ee368
commit 17074af70d
8 changed files with 4407 additions and 2849 deletions

View File

@@ -6,7 +6,7 @@
import request from '../request.js'
// 扫码前置条件
// 扫码前置条件 get 核销前置 post 表示核销
const scanInfo = (apiUrl,data,method) => {
return request({
url: apiUrl,
@@ -15,8 +15,17 @@ const scanInfo = (apiUrl,data,method) => {
})
}
// 核销记录
const scanList = (apiUrl,data) => {
return request({
url: apiUrl,
method:'GET',
data:data
})
}
export {
scanInfo
scanInfo,
scanList
}