['设置中心']

This commit is contained in:
2021-09-24 15:11:14 +08:00
parent 08c56ea921
commit 3dc185139c
172 changed files with 13194 additions and 433 deletions

View File

@@ -3,29 +3,31 @@
* moduleName:核销相关操作
*/
import { request } from '../index'
import {
request
} from '../index'
// 扫码前置条件 get 核销前置 post 表示核销
const scanInfo = (apiUrl,data,method) => {
return request({
url: apiUrl,
method:method,
data:data
})
const scanInfo = (apiUrl, data, method) => {
return request({
url: apiUrl,
method: method,
data: data
})
}
// 核销记录
const scanList = (apiUrl,data) => {
return request({
url: apiUrl,
method:'GET',
data:data
})
const scanList = (apiUrl, data) => {
return request({
url: apiUrl,
method: 'GET',
data: data
})
}
export {
scanInfo,
scanList
scanInfo,
scanList
}