| | |
| | | }); |
| | | } |
| | | |
| | | // 温度循环数采 |
| | | export function temDataAcquisition(data) { |
| | | return request({ |
| | | url: "/deviceScope/temDataAcquisition", |
| | | method: "post", |
| | | data: data, |
| | | }); |
| | | } |
| | | |
| | | // 温度循环数采总体 |
| | | export function temDataAcquisition2(data) { |
| | | return request({ |
| | | url: "/deviceScope/temDataAcquisition2", |
| | | method: "post", |
| | | data: data, |
| | | }); |
| | | } |
| | | |
| | | // 判断该设备是否可以数采 |
| | | export function determineWhetherToCollectData(data) { |
| | | return request({ |
| | | url: "/deviceScope/determineWhetherToCollectData", |
| | | method: "get", |
| | | params: data, |
| | | }); |
| | | } |
| | | |
| | | // 数采-数据采集 |
| | | export function dataCollection(data) { |
| | | return request({ |
| | | url: "/deviceScope/dataCollection", |
| | | method: "get", |
| | | params: data, |
| | | }); |
| | | } |
| | | |
| | | // 通过项目获取设备列表 |
| | | export function selectDeviceByCategory(data) { |
| | | return request({ |
| | | url: "/deviceScope/selectDeviceByCategory", |
| | | method: "get", |
| | | params: data, |
| | | }); |
| | | } |
| | | |
| | | // 维护数采配置 |
| | | export function numberCollect(data) { |
| | | return request({ |