You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.5 KiB
104 lines
3.5 KiB
using System; |
|
using System.Collections.Generic; |
|
using UniRx; |
|
using UnityEngine; |
|
using UnityEngine.UI; |
|
|
|
public class LinkageForceTablePanel : UIView |
|
{ |
|
public GameObject Item; |
|
public Button AddButton; |
|
public Button SaveButton; |
|
public int Count; |
|
|
|
public LinkageForces Data = new LinkageForces() |
|
{ |
|
Forces = new List<LinkageForce>() |
|
}; |
|
|
|
public override void Awake() |
|
{ |
|
base.Awake(); |
|
|
|
Item = transform.Find("Scroll View/Viewport/Content/Item").gameObject; |
|
AddButton = Find<Button>("Bottom/AddButton"); |
|
SaveButton = Find<Button>("Bottom/SaveButton"); |
|
|
|
AddButton.OnClickAsObservable() |
|
.Subscribe(_ => NewItem()); |
|
SaveButton.OnClickAsObservable() |
|
.Subscribe(_ => SaveData()); |
|
|
|
GetData(); |
|
|
|
} |
|
private void NewItem() |
|
{ |
|
var table = GameObject.Instantiate(Item); |
|
table.SetActive(true); |
|
table.name = $"LineageForce{Guid.NewGuid()}"; |
|
table.transform.SetParent(Item.transform.parent, false); |
|
} |
|
|
|
private void SaveData() |
|
{ |
|
Data.Forces.Clear(); |
|
foreach (Transform t in Item.transform.parent) |
|
{ |
|
if (t.gameObject.activeSelf) |
|
{ |
|
LinkageForceReactive tempdata = new LinkageForceReactive(); |
|
var BM = t.Find("Info/BM").GetComponent<Text>(); |
|
var DWMC = t.Find("Info/DWMC").GetComponent<Text>(); |
|
var DZ = t.Find("Info/DZ").GetComponent<Text>(); |
|
var DH = t.Find("Info/DH").GetComponent<Text>(); |
|
var LLDP = t.Find("Info/LLDP").GetComponent<Text>(); |
|
var RWZZ = t.Find("Info/RWZZ").GetComponent<Text>(); |
|
|
|
tempdata.Id.Value = t.gameObject.name; |
|
tempdata.Department.Value = BM.text; |
|
tempdata.Organization.Value = DWMC.text; |
|
tempdata.Address.Value = DZ.text; |
|
tempdata.Phone.Value = DH.text; |
|
tempdata.ForceAllocation.Value = LLDP.text; |
|
tempdata.Duty.Value = RWZZ.text; |
|
Data.Forces.Add(tempdata.GetData()); |
|
} |
|
|
|
} |
|
string url = string.Format(HttpManager.Instance.PostSocialLinkages); |
|
HttpManager.Instance.Post(url, Data); |
|
} |
|
|
|
private void GetData() |
|
{ |
|
|
|
string url = string.Format(HttpManager.Instance.GetSocialLinkages); |
|
HttpManager.Instance.Get<LinkageForces>(url, data => |
|
{ |
|
Data = data; |
|
foreach (var tempdata in Data.Forces) |
|
{ |
|
|
|
var table = GameObject.Instantiate(Item); |
|
table.SetActive(true); |
|
table.transform.SetParent(Item.transform.parent, false); |
|
table.name = tempdata.Id; |
|
var BM = table.transform.Find("Info/BM").GetComponent<Text>(); |
|
var DWMC = table.transform.Find("Info/DWMC").GetComponent<Text>(); |
|
var DZ = table.transform.Find("Info/DZ").GetComponent<Text>(); |
|
var DH = table.transform.Find("Info/DH").GetComponent<Text>(); |
|
var LLDP = table.transform.Find("Info/LLDP").GetComponent<Text>(); |
|
var RWZZ = table.transform.Find("Info/RWZZ").GetComponent<Text>(); |
|
|
|
BM.text = tempdata.Department; |
|
DWMC.text = tempdata.Organization; |
|
DZ.text = tempdata.Address; |
|
DH.text = tempdata.Phone; |
|
LLDP.text = tempdata.ForceAllocation; |
|
RWZZ.text = tempdata.Duty; |
|
} |
|
}); |
|
} |
|
|
|
}
|
|
|