Browse Source

[完善]综合统计顶部菜单显示

master
邵佳豪 3 months ago
parent
commit
e6969318e9
  1. 10
      src/app/pages/home/home.component.ts

10
src/app/pages/home/home.component.ts

@ -132,6 +132,11 @@ export class HomeComponent implements OnInit {
{ name: "证照管理", url: "/audit" }, { name: "证照管理", url: "/audit" },
]; ];
} }
//油站人员进入油站
if (this.router.url.indexOf("comprehensive") != -1) {
//控制返回按钮显示
this.isComprehensive = true;
}
this.isProd = this.patternService.isProd; this.isProd = this.patternService.isProd;
this.initSelectedItem(this.router); this.initSelectedItem(this.router);
@ -202,11 +207,6 @@ export class HomeComponent implements OnInit {
this.isGasStationNav = true; this.isGasStationNav = true;
this.isGasStationBack = false; this.isGasStationBack = false;
} }
//油站人员进入油站
if (event.url.indexOf("comprehensive") != -1) {
//控制返回按钮显示
this.isComprehensive = true;
}
}); });
setInterval(() => { setInterval(() => {

Loading…
Cancel
Save