38 lines
		
	
	
		
			663 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			663 B
		
	
	
	
		
			C#
		
	
	
	
using System.Collections;
 | 
						|
using System.Collections.Generic;
 | 
						|
using UnityEngine;
 | 
						|
using UnityEngine.UI;
 | 
						|
using TMPro;
 | 
						|
public class chartbase : MonoBehaviour
 | 
						|
{
 | 
						|
   // public TMP_Text 地区;
 | 
						|
    public TMP_Text 设备;
 | 
						|
    public TMP_Text 详细缺陷;
 | 
						|
    public TMP_Text 缺陷类型;
 | 
						|
    //public Button 删除条目;
 | 
						|
 | 
						|
    //public int 地区_value;
 | 
						|
    public int 设备_value;
 | 
						|
    public int 详细缺陷_value;
 | 
						|
    public int 缺陷类型_value;
 | 
						|
 | 
						|
    // Start is called before the first frame update
 | 
						|
    void Start()
 | 
						|
    {
 | 
						|
        
 | 
						|
    }
 | 
						|
 | 
						|
    // Update is called once per frame
 | 
						|
    void Update()
 | 
						|
    {
 | 
						|
        
 | 
						|
    }
 | 
						|
    public void 删除() {
 | 
						|
 | 
						|
 | 
						|
        Destroy(gameObject);
 | 
						|
    
 | 
						|
    
 | 
						|
    }
 | 
						|
}
 |