liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<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:830px;
        }
        .slds-pill__label {
            max-width:530px;
        }
        .slds-page-header{
            display:none;
        }
    </aura:html>
    <aura:attribute name="recordId" type="String" />
   <!--  <aura:attribute name="thisId" type="String" />
    <aura:attribute name="passId" type="String" /> -->
     <aura:handler name="init" value="{!this}" action="{!c.doInit}"/> 
    <div style="background-color: #fff;width:100%;">
        <!-- <c:lwcDailyReport recordId="{!v.thisId}"/>  -->
        <!-- <c:lwcDailyReport recordId="{!v.recordId}" onrecordChange="{!c.refreshView}" /> -->
        <c:lwcDailyReport recordId="{!v.recordId}" />
    </div>
 
 
    <!-- <aura:attribute name="recordId" type="String"/>
    <div style="display: none;">
        <lightning:recordEditForm recordId="{!v.recordId}"  onload="{!c.handleLoad}">
 
        </lightning:recordEditForm>
    </div>   -->
</aura:component>