Ejemplo n.º 1
0
 public async void ConfirmBtnEvent()
 {
     try
     {
         int recordId = int.Parse(mPlaybackCodeInputField.text);
         MilitaryPanelComponent.ExaminePlayBack(recordId);
     }
     catch (Exception e)
     {
         UIComponent.GetUiView <NormalHintPanelComponent>().ShowHintPanel("回放码格式不对");
         Log.Error(e);
         throw;
     }
 }
Ejemplo n.º 2
0
 public void LookBackBtn()
 {
     MilitaryPanelComponent.ExaminePlayBack(mData.DataId);
 }