9 changed files with 147 additions and 2 deletions
@ -0,0 +1,34 @@ |
|||
// 前缀
|
|||
const prefix = '/carbon-smart'; |
|||
// 通风系统相关接口
|
|||
export enum ventilating { |
|||
// 排风扇相关 =============================================
|
|||
// 获得排风扇系统的树形结构
|
|||
getTree1 = prefix + '/ventilatingFanCtrl/getCtrlPanelTree', |
|||
// 获得排风扇的 场景/禁用 修改数据
|
|||
getChangeList1 = prefix + '/ventilatingFanCtrl/getSceneChangeInfo', |
|||
// 提交排风扇的修改内容
|
|||
sendChangeList1 = prefix + '/ventilatingFanCtrl/changeToSceneMode', |
|||
// 获得排风扇的设备状态
|
|||
getDevice1 = prefix + '/ventilatingFanCtrl/getDeviceState', |
|||
|
|||
// 风幕机相关 =============================================
|
|||
// 获得风幕机的树形结构
|
|||
getTree2 = prefix + '/airCurtainMachineCtrl/getCtrlPanelTree', |
|||
// 获得风幕机的 场景/禁用 修改数据
|
|||
getChangeList2 = prefix + '/airCurtainMachineCtrl/getSceneChangeInfo', |
|||
// 提交风幕机的修改内容
|
|||
sendChangeList2 = prefix + '/airCurtainMachineCtrl/changeToSceneMode', |
|||
// 获得风幕机的设备状态
|
|||
getDevice2 = prefix + '/airCurtainMachineCtrl/getDeviceState', |
|||
|
|||
// 电动窗相关 =============================================
|
|||
// 获得电动窗的树形结构
|
|||
getTree3 = prefix + '/eleOperatedWindowCtrl/getCtrlPanelTree', |
|||
// 获得电动窗的 场景/禁用 修改数据
|
|||
getChangeList3 = prefix + '/eleOperatedWindowCtrl/getSceneChangeInfo', |
|||
// 提交电动窗的修改内容
|
|||
sendChangeList3 = prefix + '/eleOperatedWindowCtrl/changeToSceneMode', |
|||
// 获得电动窗的设备状态
|
|||
getDevice3 = prefix + '/eleOperatedWindowCtrl/getDeviceState', |
|||
} |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 3.2 KiB |
@ -0,0 +1,69 @@ |
|||
// 排风扇
|
|||
export const devicePosition1 = [ |
|||
{ |
|||
lineType: '1', |
|||
textObject: { left: '43.2%', bottom: '77.8%' }, |
|||
}, |
|||
{ |
|||
lineType: '2', |
|||
textObject: { left: '50%', bottom: '77.8%' }, |
|||
}, |
|||
{ |
|||
lineType: '1', |
|||
textObject: { left: '41.2%', bottom: '27.8%' }, |
|||
}, |
|||
{ |
|||
lineType: '2', |
|||
textObject: { left: '51.2%', bottom: '27.8%' }, |
|||
}, |
|||
]; |
|||
// 风幕机
|
|||
export const devicePosition2 = [ |
|||
{ |
|||
lineType: '1', |
|||
textObject: { left: '38%', bottom: '57.8%' }, |
|||
}, |
|||
{ |
|||
lineType: '1', |
|||
textObject: { left: '58.5%', bottom: '57.3%' }, |
|||
}, |
|||
{ |
|||
lineType: '1', |
|||
textObject: { left: '64.2%', bottom: '22.8%' }, |
|||
}, |
|||
]; |
|||
// 电动窗
|
|||
export const devicePosition3 = [ |
|||
{ |
|||
lineType: '1', |
|||
textObject: { left: '32%', bottom: '28%' }, |
|||
}, |
|||
{ |
|||
lineType: '1', |
|||
textObject: { left: '33.5%', bottom: '42.8%' }, |
|||
}, |
|||
{ |
|||
lineType: '1', |
|||
textObject: { left: '35%', bottom: '57.8%' }, |
|||
}, |
|||
{ |
|||
lineType: '1', |
|||
textObject: { left: '36.5%', bottom: '72.8%' }, |
|||
}, |
|||
{ |
|||
lineType: '1', |
|||
textObject: { left: '66%', bottom: '28%' }, |
|||
}, |
|||
{ |
|||
lineType: '1', |
|||
textObject: { left: '64%', bottom: '42.8%' }, |
|||
}, |
|||
{ |
|||
lineType: '1', |
|||
textObject: { left: '62%', bottom: '57.8%' }, |
|||
}, |
|||
{ |
|||
lineType: '1', |
|||
textObject: { left: '60%', bottom: '72.8%' }, |
|||
}, |
|||
]; |
Loading…
Reference in new issue