|
@@ -158,6 +158,7 @@ export class UserLoginComponent implements OnDestroy, OnInit {
|
|
|
registerUrl = '/passport/login';
|
|
|
lastClickTime = 0;
|
|
|
clickInterval = 1000; // 设置合适的点击间隔
|
|
|
+ noticeMsg='';
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
const queryInfos = { enabled: 'Y' };
|
|
@@ -206,6 +207,15 @@ export class UserLoginComponent implements OnDestroy, OnInit {
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
+ // 后端提示
|
|
|
+ this.httpUtils.getPostData('inControlServer/qualityInspection/zhcxApi/getTodeyNotice',{}).subscribe({
|
|
|
+ next: res => {
|
|
|
+ if (res.code == '200' && res?.msg != null && res?.msg != '') {
|
|
|
+ //this.notification.warning('', res.msg);
|
|
|
+ this.noticeMsg = res.msg;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
// #endregion
|
|
|
|