涂煌豪
2022-04-19 7ee2437b006cfc30e940cfb1711bf42f2ca3553d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<aura:component implements="force:hasRecordId,flexipage:availableForAllPageTypes"
                access="global">
    
    <aura:attribute name="recordId" type="Id"/>
    
    <aura:attribute name="principal" type="Integer" default="200000"/>
    <aura:attribute name="years" type="Integer" default="30"/>
    <aura:attribute name="rate" type="Integer" default="5"/>
    
    <lightning:card iconName="utility:chart" title="Mortgage Calculator">
        <c:MortgageCalculator recordId="{!v.recordId}" principal="{!v.principal}" years="{!v.years}" rate="{!v.rate}"/>
    </lightning:card>
    
</aura:component>