60 lines
1.2 KiB
C#
60 lines
1.2 KiB
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using UnityEngine;
|
|||
|
using UnityEngine.UI;
|
|||
|
using static OrderPanel;
|
|||
|
|
|||
|
public class ShiMingPanel : MonoBehaviour
|
|||
|
{
|
|||
|
//<2F><><EFBFBD><EFBFBD>
|
|||
|
public InputField inputName;
|
|||
|
//<2F><><EFBFBD><EFBFBD>֤<EFBFBD><D6A4>
|
|||
|
public InputField inputIDNum;
|
|||
|
//<2F><><EFBFBD>п<EFBFBD>
|
|||
|
public InputField inputBankNum;
|
|||
|
//<2F>ֻ<EFBFBD><D6BB><EFBFBD>
|
|||
|
public InputField inputPhone;
|
|||
|
|
|||
|
//<2F><>֤<EFBFBD><D6A4>ť
|
|||
|
public Button btnProve;
|
|||
|
|
|||
|
private RealName realName;
|
|||
|
|
|||
|
// Start is called before the first frame update
|
|||
|
void Start()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
// Update is called once per frame
|
|||
|
void Update()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
//ʵ<><CAB5><EFBFBD><EFBFBD>֤<EFBFBD><D6A4>Ϣ<EFBFBD><CFA2>
|
|||
|
public class RealName
|
|||
|
{
|
|||
|
//<2F><><EFBFBD><EFBFBD>֤
|
|||
|
public string idCard;
|
|||
|
public string bank;
|
|||
|
public string realName;
|
|||
|
}
|
|||
|
|
|||
|
//<><D7BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͷ<EFBFBD><CDB7><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȩ<EFBFBD><C8A8><EFBFBD><EFBFBD>
|
|||
|
private Dictionary<string, string> headInfo = new Dictionary<string, string>
|
|||
|
{
|
|||
|
{ "Authorization", Global.global.serverResponse.data.token }
|
|||
|
};
|
|||
|
|
|||
|
public async Task ReGetOrder()
|
|||
|
{
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//<2F>첽<EFBFBD><ECB2BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//string responsel6 = await web.SendRequest(web.URL + "/snail/order/queryPage", "POST", JsonUtility.ToJson(msg), headInfo);
|
|||
|
|
|||
|
//Debug.Log(responsel6);
|
|||
|
}
|
|||
|
}
|