Browse Source

通话录音添加hosId

seimin 2 years ago
parent
commit
9c901a1ae1
2 changed files with 2 additions and 2 deletions
  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
     this.maskFlag = this.message.loading("正在加载中..", {
100
     this.maskFlag = this.message.loading("正在加载中..", {
101
       nzDuration: 0,
101
       nzDuration: 0,
102
     }).messageId;
102
     }).messageId;
103
-    this.mainService.getCallLogPath({ path }).subscribe((result) => {
103
+    this.mainService.getCallLogPath({ path, hosId: this.hosId }).subscribe((result) => {
104
       this.message.remove(this.maskFlag);
104
       this.message.remove(this.maskFlag);
105
       this.maskFlag = false;
105
       this.maskFlag = false;
106
       this.modal = true;
106
       this.modal = true;

+ 1 - 1
src/main.ts

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