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.
31 lines
1.4 KiB
31 lines
1.4 KiB
import { ORIGIN } from '../../../js/api';
|
|
|
|
export const DEVICE_API = {
|
|
stadiumList:`${ORIGIN}/stadium/list`, // 店铺列表
|
|
vendingGoodsList:`${ORIGIN}/stadium/vending/goods/list`, // 售货柜-商品列表
|
|
vendingGoodsRestock:`${ORIGIN}/admin/stadium/vending/goods/restock`, // 售货柜-库存修改保存
|
|
|
|
vendingTestAll:`${ORIGIN}/admin/stadium/vending/path/test/all`, // 售货柜-全部货道测试
|
|
vendingTestOne:`${ORIGIN}/admin/stadium/vending/path/test/one`, // 售货柜-单货道测试
|
|
hardwareSave:`${ORIGIN}/admin/stadium/hardware/save`, // 设备开启/关闭
|
|
|
|
drinkList:`${ORIGIN}/admin/stadium/coffee/drink/list`, // 咖啡机口味列表
|
|
drinkRestock:`${ORIGIN}/admin/stadium/coffee/drink/restock`, // 咖啡机口味补货
|
|
|
|
leaseList:`${ORIGIN}/admin/stadium/lease/cabinet/list`, // 租售柜列表
|
|
lockerList:`${ORIGIN}/admin/stadium/locker/cabinet/list`, // 储物柜列表
|
|
|
|
|
|
|
|
|
|
|
|
|
|
hardwareInfo:`${ORIGIN}/admin/stadium/hardware/get/`, // 设备信息
|
|
hardwareList:`${ORIGIN}/admin/stadium/hardware/list`, // 设备列表
|
|
ouxuanac:`${ORIGIN}/ouxuanac/sendPacket`, // 中控控制
|
|
// ouxuanac--> http://api.ouxuan.net/project/233/interface/api/10012 接口文档
|
|
// ouxuanac--> http://git.ouxuan.net/ouxuanac/ouxuanac-common/src/branch/master/cmd.ts // 接口参数结构 || ouxuanac.md
|
|
|
|
}
|
|
|
|
export default DEVICE_API;
|