Exemple #1
0
    void showBankAccount()
    {
        if (MainData.instance.user.bacnkAccount.names.Count == 0)
        {
            return;
        }
        PopupListEvent listEvent = GameObject.Find("base").transform.FindChild("popup-select").GetComponent <PopupListEvent> ();

        listEvent.OnlyPop("银行卡列表", MainData.instance.user.bacnkAccount);
    }
Exemple #2
0
 // Use this for initialization
 void Start()
 {
     list  = gameObject.GetComponent <UIPopupList>();
     popup = GameObject.Find("base").transform.FindChild("popup-select").GetComponent <PopupListEvent>();
 }