2024-11-27 19:04:12 +08:00
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
2024-11-27 23:18:16 +08:00
|
|
|
|
using TMPro;
|
2024-11-27 19:04:12 +08:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
public class SMFinishPanel : MonoBehaviour
|
|
|
|
|
{
|
2024-11-27 23:18:16 +08:00
|
|
|
|
//<2F><><EFBFBD><EFBFBD>
|
|
|
|
|
public TMP_Text inputName;
|
|
|
|
|
//<2F><><EFBFBD><EFBFBD>֤<EFBFBD><D6A4>
|
|
|
|
|
public TMP_Text inputIDNum;
|
|
|
|
|
//<2F><><EFBFBD>п<EFBFBD>
|
|
|
|
|
public TMP_Text inputBankNum;
|
2024-11-27 19:04:12 +08:00
|
|
|
|
|
2024-11-27 23:18:16 +08:00
|
|
|
|
public void UpdatePanel(RealName realName)
|
2024-11-27 19:04:12 +08:00
|
|
|
|
{
|
2024-11-27 23:18:16 +08:00
|
|
|
|
inputName.text = realName.realName;
|
|
|
|
|
inputBankNum.text = realName.bank;
|
|
|
|
|
inputIDNum.text = realName.idCard;
|
2024-11-27 19:04:12 +08:00
|
|
|
|
}
|
|
|
|
|
}
|