Bläddra i källkod

通话录音添加hosId

seimin 2 år sedan
förälder
incheckning
9c901a1ae1
2 ändrade filer med 2 tillägg och 2 borttagningar
  1. 1 1
      src/app/views/call-log/call-log.component.ts
  2. 1 1
      src/main.ts

+ 1 - 1
src/app/views/call-log/call-log.component.ts

@@ -100,7 +100,7 @@ export class CallLogComponent implements OnInit {
100 100
     this.maskFlag = this.message.loading("正在加载中..", {
101 101
       nzDuration: 0,
102 102
     }).messageId;
103
-    this.mainService.getCallLogPath({ path }).subscribe((result) => {
103
+    this.mainService.getCallLogPath({ path, hosId: this.hosId }).subscribe((result) => {
104 104
       this.message.remove(this.maskFlag);
105 105
       this.maskFlag = false;
106 106
       this.modal = true;

+ 1 - 1
src/main.ts

@@ -8,7 +8,7 @@ if (environment.production) {
8 8
   enableProdMode();
9 9
   if (window) {
10 10
     window.console.log = function () { };
11
-    console.info('v2.4.18');
11
+    console.info('v2.4.19');
12 12
   }
13 13
 }
14 14
 platformBrowserDynamic().bootstrapModule(AppModule)