From c461bf2961198dabb689a77f52f3645bcea9ef91 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Mon, 17 Oct 2022 11:24:07 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=96=B0=E5=A2=9E]admin=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E5=9C=A8=E6=95=B0=E5=AD=97=E6=B2=B9=E7=AB=99=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E5=8F=AF=E4=BB=A5=E7=BC=96=E8=BE=91=E5=9F=BA=E6=9C=AC=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../gas-base-info/gas-base-info.component.ts | 2 + src/app/pages/home/home.component.ts | 6 +- .../oil-station-info.component.html | 6 +- .../oil-station-info.component.ts | 11 +-- .../oil-station-list.component.html | 1 + .../oil-station-list.component.ts | 11 +++ src/app/ui/tabbar/tabbar.component.html | 26 ------ src/app/ui/tabbar/tabbar.component.scss | 27 ------ src/app/ui/tabbar/tabbar.component.ts | 86 ------------------- src/app/ui/ui.module.ts | 6 +- 10 files changed, 30 insertions(+), 152 deletions(-) delete mode 100644 src/app/ui/tabbar/tabbar.component.html delete mode 100644 src/app/ui/tabbar/tabbar.component.scss delete mode 100644 src/app/ui/tabbar/tabbar.component.ts diff --git a/src/app/pages/audit/gas-base-info/gas-base-info.component.ts b/src/app/pages/audit/gas-base-info/gas-base-info.component.ts index 7dbb9f1..9b4e96b 100644 --- a/src/app/pages/audit/gas-base-info/gas-base-info.component.ts +++ b/src/app/pages/audit/gas-base-info/gas-base-info.component.ts @@ -16,6 +16,7 @@ export class GasBaseInfoComponent implements OnInit { isDetails: boolean = false; //是否是详情 ngOnInit(): void { + if (this.data.id === undefined) { //详情 this.isDetails = true } @@ -36,6 +37,7 @@ export class GasBaseInfoComponent implements OnInit { data.result.govUnitDetail ? data.result.govUnitDetail = JSON.parse(data.result.govUnitDetail) : null; this.baseInfo = data.result this.baseInfo.otherData ? this.otherData = JSON.parse(this.baseInfo.otherData) : null + console.log('baseInfo', this.baseInfo) console.log('otherData', this.otherData) }) } diff --git a/src/app/pages/home/home.component.ts b/src/app/pages/home/home.component.ts index 8cd1998..a589783 100644 --- a/src/app/pages/home/home.component.ts +++ b/src/app/pages/home/home.component.ts @@ -488,7 +488,11 @@ export class HomeComponent implements OnInit { } navChange(router) { - this.router.navigate([router]) + if (router == '/oliStationInfo') { + this.router.navigate([router], { queryParams: { 'id': JSON.parse(sessionStorage.getItem('userdata')).organization.id } }) + } else { + this.router.navigate([router]) + } } navChange2() { for (let index = 0; index < this.menu3.length; index++) { diff --git a/src/app/pages/oil-station-info/oil-station-info.component.html b/src/app/pages/oil-station-info/oil-station-info.component.html index f0e04e7..5d2f8d4 100644 --- a/src/app/pages/oil-station-info/oil-station-info.component.html +++ b/src/app/pages/oil-station-info/oil-station-info.component.html @@ -11,7 +11,7 @@ 站名 - {{userdata.organization.displayName}} + {{httpBody.stationName}} 开业时间* @@ -700,9 +700,9 @@ style="color: #fff;margin-right: 30px;">当前审核状态:{{httpBody.auditLog.auditStatusDesc}} 审核意见:{{httpBody.auditLog.rejectReason}} + *ngIf="httpBody.auditStatus != 1 && httpBody.auditStatus != 2 && userdata.userName != 'admin'" (click)="submitAudit()">提交审核 + *ngIf="httpBody.auditStatus == 1 || httpBody.auditStatus == 2 && userdata.userName != 'admin'" (click)="revocationAudit()">撤销审核