我有3页的队列系统: 1-添加队列号(第1页)。 2-删除(完成)队列(第2页)。 3-客户排序队列(第3页)。 当我仅在page(1,2)中添加或删除时,如何执行函数(在第3页中)。
请帮助, 谢谢。
示例 第3页
page3.ts
public test() {
alert('view this message in page 3 when click button in page 1');
};
第1页
page1.html
<button type="button" (click)='test()'>View in page 3</button>