This commit is contained in:
weiyu
2022-04-24 11:10:59 +08:00
parent 9e92328958
commit e2e744bcd2
2 changed files with 4 additions and 2 deletions

View File

@ -40,7 +40,8 @@
</nz-list-item-meta> </nz-list-item-meta>
<div class="item-btn"><a (click)="edit('password')">修改</a></div> <div class="item-btn"><a (click)="edit('password')">修改</a></div>
</nz-list-item> </nz-list-item>
<nz-list-item *ngIf="defaultCompany.enterpriseId"> <!-- <nz-list-item *ngIf="defaultCompany.enterpriseId"> -->
<nz-list-item>
<nz-list-item-meta> <nz-list-item-meta>
<nz-list-item-meta-title> <nz-list-item-meta-title>
<div nz-row [nzGutter]="16"> <div nz-row [nzGutter]="16">

View File

@ -138,7 +138,8 @@ export class AccountComponentsCenterComponent implements OnInit {
getInfo() { getInfo() {
this.service.http.post(this.service.$api_get_current_user_info).subscribe((res) => { this.service.http.post(this.service.$api_get_current_user_info).subscribe((res) => {
this.infoData = res.data; this.infoData = res.data;
this.getDeafaultCompany(); // this.getDeafaultCompany();
this.getPayPw();
}); });
} }