154 lines
3.6 KiB
C#
154 lines
3.6 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class Stepsixpanl : MonoBehaviour
|
|
{
|
|
/// <summary>
|
|
/// 初始化页面
|
|
/// </summary>
|
|
public RectTransform stepsixpanl;
|
|
/// <summary>
|
|
/// 页面1
|
|
/// </summary>
|
|
public RectTransform stepsixpanl1;
|
|
/// <summary>
|
|
/// 待办按钮
|
|
/// </summary>
|
|
public Button waittobebutton6;
|
|
/// <summary>
|
|
/// 页面2
|
|
/// </summary>
|
|
public RectTransform stepsixpanl2;
|
|
/// <summary>
|
|
/// 输入编号
|
|
/// </summary>
|
|
public InputField inputfid6;
|
|
/// <summary>
|
|
/// 查询按钮
|
|
/// </summary>
|
|
public Button inquirebutton6;
|
|
/// <summary>
|
|
/// 高亮选择
|
|
/// </summary>
|
|
public Toggle serialtoggle6;
|
|
/// <summary>
|
|
/// 图片选择
|
|
/// </summary>
|
|
public Image serialimage6;
|
|
/// <summary>
|
|
/// 合同违约审批按钮
|
|
/// </summary>
|
|
public Button examinebutton6;
|
|
/// <summary>
|
|
/// 页面3
|
|
/// </summary>
|
|
public RectTransform stepsixpanl3;
|
|
/// <summary>
|
|
/// 确认签收按钮
|
|
/// </summary>
|
|
public Button yesbutton;
|
|
/// <summary>
|
|
/// 确认按钮开关
|
|
/// </summary>
|
|
private bool yesisp = true;
|
|
/// <summary>
|
|
/// 取消签收按钮
|
|
/// </summary>
|
|
public Button nobutton;
|
|
/// <summary>
|
|
/// 页面4
|
|
/// </summary>
|
|
public RectTransform stepsixpanl4;
|
|
/// <summary>
|
|
/// 选择通过
|
|
/// </summary>
|
|
public Toggle passtoggle6;
|
|
/// <summary>
|
|
/// 选择不通过
|
|
/// </summary>
|
|
public Toggle nopasstoggle6;
|
|
/// <summary>
|
|
/// 发送按钮
|
|
/// </summary>
|
|
public Button sendbutton6;
|
|
void Start()
|
|
{
|
|
waittobebutton6.onClick.AddListener(() =>
|
|
{
|
|
stepsixpanl1.gameObject.SetActive(false);
|
|
stepsixpanl2.gameObject.SetActive(true);
|
|
});
|
|
serialtoggle6.onValueChanged.AddListener(delegate
|
|
{
|
|
Gettoggle(serialtoggle6);
|
|
});
|
|
examinebutton6.onClick.AddListener(() =>
|
|
{
|
|
stepsixpanl2.gameObject.SetActive(false);
|
|
stepsixpanl3.gameObject.SetActive(true);
|
|
});
|
|
yesbutton.onClick.AddListener(() =>
|
|
{
|
|
if (yesisp)
|
|
{
|
|
ScoreManager.Instance.AddScore(2);
|
|
yesisp= false;
|
|
}
|
|
stepsixpanl3.gameObject.SetActive(false);
|
|
stepsixpanl4.gameObject.SetActive(true);
|
|
});
|
|
nobutton.onClick.AddListener(() =>
|
|
{
|
|
stepsixpanl3.gameObject.SetActive(false);
|
|
stepsixpanl4.gameObject.SetActive(true);
|
|
});
|
|
sendbutton6.onClick.AddListener(() =>
|
|
{
|
|
stepsixpanl4.gameObject.SetActive(false);
|
|
});
|
|
passtoggle6.onValueChanged.AddListener((ison) =>
|
|
{
|
|
if (ison)
|
|
{
|
|
ScoreManager.Instance.AddScore(9);
|
|
}
|
|
else
|
|
{
|
|
ScoreManager.Instance.SubtractScore(9);
|
|
}
|
|
});
|
|
}
|
|
/// <summary>
|
|
/// 图片高亮
|
|
/// </summary>
|
|
/// <param name="toggle"></param>
|
|
private void Gettoggle(Toggle toggle)
|
|
{
|
|
if (toggle.isOn)
|
|
{
|
|
ScoreManager.Instance.AddScore(1.5f);
|
|
serialimage6.gameObject.SetActive(true);
|
|
}
|
|
else
|
|
{
|
|
ScoreManager.Instance.SubtractScore(1.5f);
|
|
serialimage6.gameObject.SetActive(false);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 初始化页面
|
|
/// </summary>
|
|
public void Getpage()
|
|
{
|
|
stepsixpanl.gameObject.SetActive(true);
|
|
}
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|