1
2
3
4
5
6
7
8
9
10
11
12
13
14
| ({
|
| init : function (component, event, helper) {
| var myPageRef = component.get("v.pageReference");
| var userId = myPageRef.state.c__userId;
| var userName =myPageRef.state.c__userName;
| component.set("v.Id",userId);
| component.set("v.Name",userName);
|
| }
| // closeModal: function(component, event, helper) {
| // $A.get("e.force:closeQuickAction").fire();
| // }
| })
|
|