25 lines
485 B
C#
25 lines
485 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class RealNamePanel : BasePanel
|
|
{
|
|
//关闭
|
|
public Button btnClose;
|
|
//提交
|
|
public Button btnSubmit;
|
|
//姓名
|
|
public InputField inputName;
|
|
//身份证号
|
|
public InputField inputSFZH;
|
|
|
|
public override void Init()
|
|
{
|
|
btnClose.onClick.AddListener(() =>
|
|
{
|
|
UIManager.Instance.HidePanel<RealNamePanel>();
|
|
});
|
|
}
|
|
}
|