efaf2702-b991-4f63-83a5-b02ab616aa07.js.map 1.71 KB
{"version":3,"sources":["assets/script/game/ui/view/impl/NoticeViewImpl.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,mDAAiF;AACjF,wEAAqE;AACrE,yEAAuD;AACvD,sEAA+D;AAE/D,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,GAAG,EAAE,CAAC,UAAU,CAAC;AAG5C;IAAA,IAAa,cAAc,GAA3B,MAAa,cAAe,SAAQ,uBAA2B;QAA/D;;YAII,aAAQ,GAAa,2BAAU,CAAC;YAGhC,eAAU,GAAa,2BAAU,CAAC;QAYtC,CAAC;QATG,MAAM;YACF,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,IAAI,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;YACnD,IAAI,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QAC3D,CAAC;QAGD,kBAAkB,CAAC,KAAK;YACpB,IAAI,CAAC,MAAM,CAAC,YAAY,EAAE,CAAC;QAC/B,CAAC;KACJ,CAAA;IAfG;QADC,QAAQ,CAAC,EAAE,CAAC,KAAK,CAAC;oDACa;IAGhC;QADC,QAAQ,CAAC,EAAE,CAAC,KAAK,CAAC;sDACe;IAPzB,cAAc;QAF1B,OAAO;QACP,gCAAO,CAAC,2BAAc,EAAE,sBAAsB,CAAC;OACnC,cAAc,CAmB1B;IAAD,qBAAC;KAAA;AAnBY,wCAAc","file":"","sourceRoot":"/","sourcesContent":["import { NoticeViewType, NoticeViewProps, NoticeView } from \"../type/NoticeView\";\r\nimport { CCPureView } from \"../../../../common/classbase/CCViewBase\";\r\nimport { RegView } from \"../../PresenterCCViewFactory\";\r\nimport { DummyLabel } from \"../../../../common/CCDummyObjects\";\r\n\r\nconst { ccclass, property } = cc._decorator;\r\n@ccclass\r\n@RegView(NoticeViewType, \"prefab/ui/NoticeView\")\r\nexport class NoticeViewImpl extends CCPureView<NoticeViewProps> implements NoticeView {\r\n\r\n\r\n    @property(cc.Label)\r\n    titlelbl: cc.Label = DummyLabel;\r\n\r\n    @property(cc.Label)\r\n    contentlbl: cc.Label = DummyLabel;\r\n\r\n\r\n    onLoad() {\r\n        this.bindProp(\"titletxt\", this.titlelbl, \"string\");\r\n        this.bindProp(\"contenttxt\", this.contentlbl, \"string\");\r\n    }\r\n\r\n\r\n    onCloseHandleClick(event) {\r\n        this._props.onCloseClick();\r\n    }\r\n}"]}