仪表盘
版本库
文件存储
活动
搜索
登录
main
/
underway-vue
走航监测vue框架重构版本
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
新增搜索框
riku
2024-04-30
add483d13841cf472a9adb5c0cc72454f501fb7c
[underway-vue.git]
/
src
/
api
/
monitorDataApi.js
1
2
3
4
5
6
7
8
9
10
11
import { $http } from './index';
/**
*
*/
export default {
fethcRealtimeData(deviceCode, type, page, perPage) {
const params = `deviceCode=${deviceCode}&type=${type}&page=${page}&perPage=${perPage}`;
$http.get(`air/realtime/sec?${params}`);
}
};