Quellcode durchsuchen

feat: 通话计时增加101状态开启

sunxiao vor 1 Monat
Ursprung
Commit
0bb9aa4f90
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      src/store/modules/voice.js

+ 1 - 1
src/store/modules/voice.js

@@ -268,7 +268,7 @@ const useVoiceStore = defineStore('voice', () => {
       }
 
       // 座席接通呼入电话
-      if ( workStatus === 10 ) {
+      if ( workStatus === 10 || workStatus === 101 ) {
         isShowTimer.value = true;
         timer.start();
       }