Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop

This commit is contained in:
wangshiming
2022-04-01 13:16:39 +08:00
10 changed files with 175 additions and 147 deletions

View File

@ -252,7 +252,7 @@ export class PartnerListComponent {
onSearch: (q: any) => {
let str = q.replace(/^\s+|\s+$/g, '');
if (str) {
return this.service.getChannel({ enterpriseName: str }).toPromise();
return this.service.getChannel({ name: str }).toPromise();
} else {
return of([]);
}