|
|
@ -217,13 +217,14 @@ |
|
|
|
//获取设备点位 |
|
|
|
const getDevicePoint = (value: any) => { |
|
|
|
devicePointData.value = []; |
|
|
|
value.type = 0; |
|
|
|
http.post(device.queryDevicePoint, value).then((res) => { |
|
|
|
if (res.msg === 'success') { |
|
|
|
res.data.forEach((item: any) => { |
|
|
|
//显示格式 |
|
|
|
devicePointData.value.push({ |
|
|
|
value: item.id, |
|
|
|
label: item.code + ' ( ' + item.unit + ' ) ', |
|
|
|
label: item.name + ' ( ' + item.unit + ' ) ', |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|