This commit is contained in:
唐明明
2021-09-22 17:39:43 +08:00
12 changed files with 1848 additions and 93 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
}