123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- import { _decorator, Label, Node } from 'cc';
- import { BaseView } from '../../../framework/layer/BaseView';
- import List from '../../../framework/list/List';
- import { HeroAttrShowItem } from './HeroAttrShowItem';
- import { Framework } from '../../../framework/Framework';
- const { ccclass, property } = _decorator;
- @ccclass('HeroAttrShow')
- export class HeroAttrShow extends BaseView {
- @property({ type: Label, tooltip: "关闭提示" })
- closeTips: Label = null;
- @property({ type: Label, tooltip: "标题" })
- titleTx: Label = null;
- @property({ type: List, tooltip: "图标节点" })
- attrList: List = null;
- private _data: {};
- protected onLoad() {
- super.onLoad();
- }
- protected onDestroy() {
-
- }
- //UI开打时会调用,如果有初始化代码应该放到此函数
- onOpen() {
- }
- //UI关闭时会调用,该函数在onDestroy前调用
- onClose() {
- }
-
- //框架管理UI层级时会调用,可根据UI情况修改
- onShow() {
- super.onShow();
- }
-
- //框架管理UI层级时会调用,可根据UI情况修改
- onHide() {
- super.onHide();
- }
- //UI事件处理
- private onTouchButton(event: Event) {
- //Framework.audio.playEffect(AudioID.Click);
- let target: any = event.target;
- if (target.name == 'mask') {
- Framework.layer.close(this);
- }
- }
- onEventList(item, idx) {
- item.getComponent(HeroAttrShowItem).refreshItem(this._data[idx]);
- }
- }
|