You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
export default {
getplcStatus : {
method : "GET" ,
url : "/plc/plcStatus" ,
name : "获取PLC状态"
} ,
getRealTimeList : {
method : "POST" ,
url : "/realTime" ,
name : "获取实时监控列表"
} ,
getHistoryList : {
method : "POST" ,
url : "/order/list" ,
name : "获取历史监控列表"
} ,
realTimeLychee : {
method : "GET" ,
url : "/realTime/lychee" ,
name : "获取荔枝的ip"
} ,
getStreetList : {
method : "POST" ,
url : "/street/page" ,
name : "获取巷道列表"
} ,
addStreet : {
method : "POST" ,
url : "/street" ,
name : "新增巷道"
} ,
editStreet : {
method : "PUT" ,
url : "/street" ,
name : "编辑巷道"
} ,
// deleteStreet: {
// method: "DELETE",
// url: "/street",
// name: "删除巷道"
// },
//注释: 所有用到删除的接口都需要拼接变量id, 所以请求方式采用了挂载在原型链上的$axios进行请求, 详细请看具体页面的$axios请求
getCameraList : {
method : "POST" ,
url : "/camera/page" ,
name : "获取球机列表"
} ,
getVideoServer : {
method : "GET" ,
url : "/realTime/videoServer" ,
name : "获取视频服务器"
} ,
addCamera : {
method : "POST" ,
url : "/camera" ,
name : "新增球机"
} ,
editCamera : {
method : "PUT" ,
url : "/camera" ,
name : "编辑球机"
} ,
getChannel : {
method : "POST" ,
url : "/lychee/stream/push" ,
name : "获取channel字符集"
} ,
getCameraIoList : {
method : "POST" ,
url : "/camera/config/page" ,
name : "球机IO配置分页列表"
} ,
addCameraIo : {
method : "POST" ,
url : "/camera/config" ,
name : "球机IO指令配置新增"
} ,
editCameraIo : {
method : "PUT" ,
url : "/camera/config" ,
name : "球机IO指令配置编辑"
} ,
// cameraIoImport: {
// method: "POST",
// url: "/camera/config/import",
// name: "球机IO导入"
// },
//注释:导出接口路径已采用ant design vue的upload组件action属性动态定义
writeInCameraIoptz : {
method : "POST" ,
url : "/camera/io/ptz" ,
name : "球机IO指令写入/覆盖(调同一个接口)"
} ,
cameraIoToPtz : {
method : "POST" ,
url : "/camera/io/toPtz" ,
name : "转至球机IO配置点"
} ,
warnList : {
url : '/warn/list' ,
name : 'plc未连接数量' ,
method : 'POST'
} ,
disPlcList : {
url : '/plc/disPlc' ,
name : 'plc未连接列表' ,
method : 'GET'
} ,
categoryList : {
url : '/category/page' ,
name : '分类列表' ,
method : 'POST'
} ,
//盘点管理输入框搜索时联想用
getCategoryList : {
url : '/category/list' ,
name : '分类列表' ,
method : 'GET'
} ,
addCategory : {
url : '/category' ,
name : '新增分类' ,
method : 'POST'
} ,
editCategory : {
url : '/category' ,
name : '编辑分类' ,
method : 'PUT'
} ,
getStockList : {
url : '/stock/list' ,
name : '获取盘点列表' ,
method : 'GET'
} ,
getStreetDetail : {
url : '/street' ,
name : '获取巷道详情' ,
method : 'GET'
} ,
getStockInfo : {
url : '/stock/info' ,
name : '复核页面的核对信息' ,
method : 'POST'
} ,
exportStock : {
url : '/stock/export' ,
name : '导出所有巷道' ,
method : 'GET'
} ,
stockCheckCorrect : {
url : '/stock/checkCorrect' ,
name : '人工复核正确' ,
method : 'POST'
} ,
stockCheckByMan : {
url : '/stock/checkByMan' ,
name : '人工复核' ,
method : 'POST'
} ,
getStockpage : {
url : '/stock/page' ,
name : '库存列表' ,
method : 'POST'
} ,
categoryExportModel : {
url : '/category/export/model' ,
name : '品规模板下载' ,
method : 'GET'
} ,
stockExportModel : {
url : '/stock/export/model' ,
name : '库存模板下载' ,
method : 'GET'
} ,
scanAndCheck : {
url : '/ScanAndCheck' ,
name : '盘点操作里参数' ,
method : 'GET'
}
}