You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
706 B
14 lines
706 B
import { ORIGIN } from '@/js/api';
|
|
|
|
export const SUB_API = {
|
|
stadiumList: `${ORIGIN}/admin/stadium/list`, // 店铺列表
|
|
skNumber: `${ORIGIN}/stadium/sk/number`, // 散客人数 - 进场人数
|
|
skNotLeavingNums: `${ORIGIN}/stadium/sk/notLeavingNums`, // 【1001536】散客人数 - 未离场订单数量
|
|
setStadiumPresentNumber: `${ORIGIN}/admin/stadium/setStadiumPresentNumber`, // 商家助手散客人数校正
|
|
timingOpen: `${ORIGIN}/stadium/person/timing/open`, // 【20220208】凌晨自动清零【开/关】
|
|
// tid1803
|
|
enterVerifyOrder: `${ORIGIN}/admin/stadium/order/enterVerifyOrder`, // 商家助手-核销查询-输入验证码
|
|
|
|
}
|
|
|
|
export default SUB_API;
|