|
|
|
@ -90,7 +90,11 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
reloadPage = (userNotification) => { |
|
|
|
|
console.log('abp.notifications.received收到通知', userNotification); |
|
|
|
|
if (this.router.url.indexOf('todaywarning') != -1) { |
|
|
|
|
this.listRefreshService.sendMessage(userNotification);//发布一条消息
|
|
|
|
|
let obj = { |
|
|
|
|
type: 'add', |
|
|
|
|
data: userNotification |
|
|
|
|
} |
|
|
|
|
this.listRefreshService.sendMessage(obj);//发布一条消息
|
|
|
|
|
} |
|
|
|
|
this.receiptOfNotification(userNotification) |
|
|
|
|
}; |
|
|
|
@ -119,7 +123,6 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
params: params |
|
|
|
|
}).subscribe((data: any) => { |
|
|
|
|
console.log('推送信息后获取信息', data) |
|
|
|
|
|
|
|
|
|
setTimeout(() => { |
|
|
|
|
let copydata = data.result |
|
|
|
|
if (item.notification.data.properties.EventSystemName == '灭火器维护') { |
|
|
|
@ -162,6 +165,13 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
resolve(data) |
|
|
|
|
this.message.create('success', '报废成功!'); |
|
|
|
|
copydata.handleTime = new Date() |
|
|
|
|
if (this.router.url.indexOf('todaywarning') != -1) { |
|
|
|
|
let obj = { |
|
|
|
|
type: 'updatehandleTime', |
|
|
|
|
data: copydata.id |
|
|
|
|
} |
|
|
|
|
this.listRefreshService.sendMessage(obj);//发布一条消息
|
|
|
|
|
} |
|
|
|
|
return true |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
@ -188,6 +198,13 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
resolve(data) |
|
|
|
|
this.message.create('success', '维保成功!'); |
|
|
|
|
copydata.handleTime = new Date() |
|
|
|
|
if (this.router.url.indexOf('todaywarning') != -1) { |
|
|
|
|
let obj = { |
|
|
|
|
type: 'updatehandleTime', |
|
|
|
|
data: copydata.id |
|
|
|
|
} |
|
|
|
|
this.listRefreshService.sendMessage(obj);//发布一条消息
|
|
|
|
|
} |
|
|
|
|
return true |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
@ -223,7 +240,6 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
}, 0); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.messageId.forEach((element) => { |
|
|
|
|
if (element.id == item.notification.entityId) { |
|
|
|
|
this.notificationService.remove(element.messageId) |
|
|
|
|