/** * guy * 状态常量 */ _.extend(BI, { Status: { SUCCESS: 1, WRONG: 2, START: 3, END: 4, WAITING: 5, READY: 6, RUNNING: 7, OUTOFBOUNDS: 8, NULL: -1 }, Direction: { Top: "top", Bottom: "bottom", Left: "left", Right: "right", Custom: "custom" }, Axis: { Vertical: "vertical", Horizontal: "horizontal" }, Selection: { Default: -999, None: -1, Single: 0, Multi: 1, All: 2 }, HorizontalAlign: { Left: "left", Right: "right", Center: "center" }, VerticalAlign: { Middle: "middle", Top: "top", Bottom: "bottom" } });