6001,电脑、手机分数触发tag错误

This commit is contained in:
huqibin 2025-03-10 11:16:37 +08:00
parent 181aa8bd2a
commit 6a2457772a
4 changed files with 9 additions and 5 deletions

View File

@ -30,7 +30,7 @@ public class MobileAttach10004_4001 : MonoBehaviour
{
panel.Init(triggerName, "好的", "班组成员", 1, (intTemp) =>
{
ScoreManager.instance.Check(triggerName, "线损异常类型研判完成");
ScoreManager.instance.Check(triggerName, "异常分析");
GameManager.ProcessMgr.IsRightSubProcessStepsTriggerID(triggerName, true);
GameManager.UIMgr.HidePanel<UI_CustomSessionPanel>();
});

View File

@ -92,7 +92,7 @@ public class UI_ComputerSystemJLZXJCPanel : UI_ComputerSystemBasePanel
if (IsTranscribed && IsInterrogation)
{
GameManager.ProcessMgr.IsRightSubProcessStepsTriggerID(triggerName, true);
ScoreManager.instance.Check(triggerName, "透抄检查完成");
ScoreManager.instance.Check(triggerName, "ÏßËðÒì³£ÀàÐÍÑÐÅÐ");
if (GameManager.RunModelMgr.ModeType == E_ModeType.Study)
{
if (tween != null)

View File

@ -153,14 +153,14 @@ public class Score_6001 : ScoreBase
base.CheckScore(triggerName, para);
if (triggerName == "电脑")
{
if (para.ToString() == "透抄检查完成")
if (para.ToString() == "线损异常类型研判")
{
steps[1].SetScore(true);//线损异常类型研判完成
}
}
if (triggerName == "手机")
{
if (para.ToString() == "异常分析完成")
if (para.ToString() == "异常分析")
{
steps[2].SetScore(true);//1->2 异常分析完成
}

View File

@ -272,7 +272,11 @@ public class NetManager : BaseManager<NetManager>
}
if (operationType == "3")
{
string examUrl = url + webURLDic["试卷"] + examId;
var _cipher = Sm4Base.EncryptECB(Encoding.UTF8.GetBytes(examId), Encrypt._key);
string _id = Hex.ToHexString((Sm4Base.EncryptECB(Encoding.UTF8.GetBytes(examId), Encrypt._key)));
string examUrl = url + webURLDic["试卷"] + _id;
//string examUrl = url + webURLDic["试卷"] + examId;
currentExamData = await Get<ExamData>(examUrl);
taskListData = JsonConvert.DeserializeObject<TaskListData>(currentExamData.data.backJson);
action?.Invoke(true);