You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.2 KiB
31 lines
1.2 KiB
|
|
// 照明系统及相关接口
|
|
export enum lightingManage {
|
|
|
|
// 主页 ========================================================
|
|
|
|
// 获得分区与线路
|
|
getArea = '/carbon-smart/IlluminationInfo/region',
|
|
// 修改线路的可用/禁用状态
|
|
setDisable = '/carbon-smart/IlluminationInfo/revisePanel',
|
|
|
|
// 控制面板tab页 ================================================
|
|
|
|
// 获取当前修改的内容对比数据
|
|
getChangeList = '/carbon-smart/IlluminationInfo/getLightSceneChangeInfo',
|
|
// 提交当前修改
|
|
submitChangeList = '/carbon-smart/IlluminationInfo/changeLightScene',
|
|
|
|
// 计划列表tab页 ================================================
|
|
|
|
// 获得计划列表tab页的表格数据
|
|
getPlanTable = '/carbon-smart/IlluminationPlan/selectPanelPlan',
|
|
// 获得计划列表tab页的穿梭框左侧数据
|
|
getLeftPlan = '/carbon-smart/IlluminationPlan/getPlan',
|
|
// 提交穿梭框被选择的数据
|
|
submitLeftPlan = '/carbon-smart/IlluminationPlan/joinPlan',
|
|
// 删除表格中的计划
|
|
deletePlan = '/carbon-smart/IlluminationPlan/deletePlan',
|
|
// 重启表格计划
|
|
restartPlan = '/carbon-smart/IlluminationPlan/enable',
|
|
}
|
|
|