using System.Collections; using System.Collections.Generic; using TMPro; using UnityEngine; using UnityEngine.UI; public class addressItem : MonoBehaviour { public TextMeshProUGUI nameTxt;//名称 public TextMeshProUGUI addressTxt;//地址 public TextMeshProUGUI telTxt;//电话 public Button editBtn;//编辑按钮 // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { } public void SetInfo() { } }