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.
21 lines
715 B
21 lines
715 B
9 months ago
|
|
||
|
// 照明系统及相关接口
|
||
|
export enum lightingManage {
|
||
|
|
||
|
// 主页 ========================================================
|
||
|
|
||
|
// 获得分区与线路
|
||
|
getArea = '/carbon-smart/IlluminationInfo/region',
|
||
|
// 修改线路的可用/禁用状态
|
||
|
setDisable = '/carbon-smart/IlluminationInfo/revisePanel',
|
||
|
|
||
|
// 计划列表tab页 ================================================
|
||
|
|
||
|
// 获得计划列表tab页的表格数据
|
||
|
getPlanTable = '/carbon-smart/IlluminationPlan/selectPanelPlan',
|
||
|
// 获得计划列表tab页的穿梭框左侧数据
|
||
|
getLeftPlan = '/carbon-smart/IlluminationPlan/getPlan',
|
||
|
// 提交穿梭框被选择的数据
|
||
|
submitLeftPlan = '/carbon-smart/IlluminationPlan/joinPlan',
|
||
|
}
|