1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import { _decorator, Component, Label, Node } from 'cc';
- import { attributes_data, event_item_top_view, widget_item_data } from '../../../data/data';
- import { tools } from '../../tools';
- import { Attributes } from '../Attributes';
- import { ClientEvent } from '../../clientEvent';
- import { config } from '../../config';
- const { ccclass, property } = _decorator;
- @ccclass('event_top_view_view')
- export class event_top_view_view extends Component {
- private m_data:event_item_top_view = null;
- @property(Node) btn_select_ui:Node = null;
- @property(Node) lab_name:Node = null;
- public initView(data:event_item_top_view){
- this.m_data = data;
- this.btn_select_ui.on(Node.EventType.TOUCH_END,()=>{
- let list = Attributes.Singleton.get_cur_scene_widget_by_type(config.Widget_Type_List.UI_TOP)
- if(list.length<=0){
- return tools.showToast("当前场景没有添加弹窗!")
- }
- tools.show_select_widget_list(list,(item:widget_item_data)=>{
- this.m_data.binding_ui_id = item.att.id;
- this.updateStatus()
- },this.m_data.binding_ui_id)
-
- })
- this.updateStatus()
- ClientEvent.on(config.Event.UpdateAttributesToView,this.UpdateAttributesToView,this)
- }
- protected onDestroy(): void {
- ClientEvent.off(config.Event.UpdateAttributesToView,this.UpdateAttributesToView,this)
- }
- UpdateAttributesToView(data:attributes_data,update_type:string){
- if(this.m_data.binding_ui_id===data.id&&update_type===config.attributes_list_type.delete){
- this.m_data.binding_ui_id = -1;
- this.updateStatus()
- }
- }
- updateStatus(){
- this.lab_name.getComponent(Label).string = this.m_data.binding_ui_id===-1?"添加弹窗":`当前绑定的弹窗id:${this.m_data.binding_ui_id}`
- }
- }
|