9e18b3c0-2540-426e-b1ee-be3f3b66ca30.js.map 1.85 KB
{"version":3,"sources":["assets/script/game/ui/view/impl/notice/UrgentNoticeViewImpl.ts"],"names":[],"mappings":";;;;;;;;;;;;;AACA,2EAAwE;AACxE,4EAA0D;AAC1D,yEAAmH;AAEnH,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,GAAG,EAAE,CAAC,UAAU,CAAC;AAG5C;IAAA,IAAa,oBAAoB,GAAjC,MAAa,oBAAqB,SAAQ,uBAAiC;QAOvE,aAAa;YACT,OAAO,IAAI,CAAC,UAAU,CAAC;QAC3B,CAAC;QAED,iBAAiB;YACb,OAAO,IAAI,CAAC,cAAc,CAAC;QAC/B,CAAC;QAED,kBAAkB;YACd,IAAI,CAAC,MAAM,CAAC,yBAAyB,EAAE,CAAC;QAC5C,CAAC;KACJ,CAAA;IAfG;QADC,QAAQ,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,MAAM,EAAE,WAAW,EAAE,aAAa,EAAE,CAAC;4DACpC;IAEtB;QADC,QAAQ,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,KAAK,EAAE,WAAW,EAAE,iBAAiB,EAAE,CAAC;gEACpC;IALhB,oBAAoB;QAFhC,OAAO;QACP,gCAAO,CAAC,uCAAoB,EAAE,mCAAmC,CAAC;OACtD,oBAAoB,CAkBhC;IAAD,2BAAC;KAAA;AAlBY,oDAAoB","file":"","sourceRoot":"/","sourcesContent":["import { DummyLabel, DummyNode, DummyPrefab, DummyRichText } from \"../../../../../common/CCDummyObjects\";\r\nimport { CCPureView } from \"../../../../../common/classbase/CCViewBase\";\r\nimport { RegView } from \"../../../PresenterCCViewFactory\";\r\nimport { UrgentNoticeViewType, UrgentNoticeViewProps, UrgentNoticeView } from \"../../type/notice/UrgentNoticeView\";\r\n\r\nconst { ccclass, property } = cc._decorator;\r\n@ccclass\r\n@RegView(UrgentNoticeViewType, \"prefab/ui/notice/UrgentNoticeView\")\r\nexport class UrgentNoticeViewImpl extends CCPureView<UrgentNoticeViewProps> implements UrgentNoticeView {\r\n\r\n    @property({ type: cc.Toggle, displayName: \"Tips toggle\" })\r\n    tipsToggle: cc.Toggle;\r\n    @property({ type: cc.Label, displayName: \"CloseTips label\" })\r\n    closeTipsLabel: cc.Label;\r\n\r\n    getTipsToggle(): cc.Toggle {\r\n        return this.tipsToggle;\r\n    }\r\n\r\n    getCloseTipsLabel(): cc.Label {\r\n        return this.closeTipsLabel;\r\n    }\r\n\r\n    onCloseButtonClick() {\r\n        this._props.onCloseButtonClickCalback();\r\n    }\r\n}"]}