From e3a63bdab9e873fe6c1f094956d9f3e255fbc6f6 Mon Sep 17 00:00:00 2001 From: Sjh <55341701@qq.com> Date: Thu, 10 Oct 2024 09:57:12 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E9=A2=84=E8=AD=A6=E5=A4=84?= =?UTF-8?q?=E7=BD=AE=E5=90=8E=E8=B5=8B=E5=80=BC=E5=A4=84=E7=BD=AE=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/pages/singlelogin/singlelogin.component.ts | 1 - .../get-out-of-line-details.component.ts | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/pages/singlelogin/singlelogin.component.ts b/src/app/pages/singlelogin/singlelogin.component.ts index b532f5e..e9315f6 100644 --- a/src/app/pages/singlelogin/singlelogin.component.ts +++ b/src/app/pages/singlelogin/singlelogin.component.ts @@ -143,7 +143,6 @@ export class SingleloginComponent implements OnInit { } else { this.enterPageSystem(data); } - resolve(); }, (err) => { diff --git a/src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.ts b/src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.ts index 80dbc9d..8197985 100644 --- a/src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.ts +++ b/src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.ts @@ -74,6 +74,7 @@ export class GetOutOfLineDetailsComponent implements OnInit { { id: 22, name: "山西高速工装", color: "red" }, ]; userName; //登录账号的用户名 + name; //登录账号的真实名 isShowAxOtherRegion; //控制哪些用户可以看到ax全部 isCarStop = false; @@ -83,6 +84,7 @@ export class GetOutOfLineDetailsComponent implements OnInit { console.log("传进来的信息", this.data); // 安信框选 this.userName = JSON.parse(sessionStorage.getItem("userdata")).userName; + this.name = JSON.parse(sessionStorage.getItem("userdata")).name; if (this.userName === "admin" || this.userName === "superadmin") { this.isShowAxOtherRegion = true; } else { @@ -468,6 +470,7 @@ export class GetOutOfLineDetailsComponent implements OnInit { this.message.create("success", "处置成功!"); this.data.handleTime = new Date(); this.data.handleStateStr = "已处置"; + this.data.handleUserName = this.name; this.data.handleRecord = this.content; }); }