binxie
2024-01-16 288159458ce5ed2656021c774abc68ab1f761501
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<aura:component implements="lightning:isUrlAddressable,force:appHostable,flexipage:availableForAllPageTypes,lightning:actionOverride,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes,force:lightningQuickAction" access="global" >
    <aura:html tag="style">
        .slds-template_default{
            padding:0rem;
        }
        .slds-pill{
            width:100%;
            height:32px;
            max-width:520px;
        }
        .slds-pill__label {
            max-width:520px;
        }
    </aura:html>
    <aura:attribute name="recordId" type="String" />
    <aura:handler name="init" value="{!this}" action="{!c.doInit}"/>
    <div style="background-color: #fff;width:100%;">
        <c:lwcDailyReport recordId="{!v.recordId}"/>
    </div>
</aura:component>