涂煌豪
2022-04-19 7ee2437b006cfc30e940cfb1711bf42f2ca3553d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
({
    doInit : function(component) {
        // Hardcoding images in this demo component
        component.set("v.slides", [
            'https://s3-us-west-1.amazonaws.com/sfdc-demo/houses/living_room.jpg',
            'https://s3-us-west-1.amazonaws.com/sfdc-demo/houses/eatinkitchen.jpg',
            'https://s3-us-west-1.amazonaws.com/sfdc-demo/houses/kitchen.jpg'
        ]);
    },
 
    fullScreen : function(component) {
        component.set("v.fullScreen", true);
    },
 
    closeDialog : function(component) {
        component.set("v.fullScreen", false);
    }
 
})