1
chenjingwu
2024-05-24 35910c355f74e736e2068a0ffb7f39ae9615d8e1
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!--
  2023/04/14  新建(修理)
-->
<aura:component implements="flexipage:availableForRecordHome,force:lightningQuickActionWithoutHeader,force:hasRecordId,lightning:actionOverride,lightning:isUrlAddressable" access="global" controller="lexNewRepairAuraController">
            <aura:attribute name="urlStr" type="String"/>
            <aura:attribute name="recordId" type="String"/>
            <aura:handler name="init" value="{!this}" action="{!c.doInit}" />
            <lightning:notificationsLibrary aura:id="notifLib"/>
              <!--   <aura:component implements="flexipage:availableForRecordHome,force:hasRecordId" access="global" >
            <aura:attribute name="fields" type="String[]" default="['Name','AnnualRevenue','Industry']" />
            <aura:attribute name="recordId" type="String"/>
            <lightning:notificationsLibrary aura:id="notifLib"/>
 
            <lightning:recordForm
                    objectApiName="Account"
                    fields="{!v.fields}"
                    onsuccess="{!c.handleSuccess}" />
</aura:component> -->
    
    <!-- <aura:attribute name = "recordId" type = "Id" default = ""/>
    <aura:attribute name="title" type="string"/>
    <aura:handler name="init" value="{!this}" action="{!c.doInit}" />
    <aura:attribute name="layout" type="LayoutDescriberHelper.LayoutWrapper"/>
    <aura:attribute name="record_data" type="Map"/>
    <aura:attribute name="section_names" type="List"/>
    <aura:attribute name="showSpinner" type="Boolean" default = "False"/>
    <aura:attribute name="staticResource" type="Map"/>
    <aura:attribute name="pi_fields_map" type="Map"/>
    <aura:attribute name="isClone" type="Boolean" default = "False"/>
    <ltng:require scripts="{! $Resource.AWSService+'/AWSService.js' }" />
    <ltng:require scripts="{! $Resource.jquery183minjs }" />
    <aura:registerEvent name="NewAgencyContactEvent" type="c:NewAgencyContactEvent"/> -->
    
    <div class="{! v.container_class}">
        <!-- header -->
        <header class="slds-modal__header">
            <!-- <h2 id="modal-heading-01" class="slds-modal__title slds-hyphenate"> -->
                <div class="ptBody">
                  <div class="content" style="font-size: 18px;font-weight: bold;">
                      <img src="/img/s.gif" alt="修理" class="pageTitleIcon" title="修理" />
                      <span class="pageType">修理编辑
                          <span class="titleSeparatingColon">:</span>
                      </span>
                      <span class="pageDescription">新建修理</span>
                      <div class="blank">&nbsp;</div>
                  </div>
                  <!-- <div class="links">
                      <a href="javascript:openPopupFocusEscapePounds(%27https://help.salesforce.com/apex/htdoor?loc=help&amp;target=repairs_edit.htm&amp;section=repairs&amp;language=zh_CN&amp;release=234.18.8&amp;instance=CS117&amp;showSplash=true%27, %27Help%27, 700, 600, %27width=700,height=600,resizable=yes,toolbar=yes,status=no,scrollbars=yes,menubar=yes,directories=no,location=no,dependant=no%27, false, false);"
                          title="此页面的帮助 (新窗口)">
                          <span class="helpLink">此页面的帮助</span>
                          <img src="/img/s.gif" alt="" class="helpIcon" />
                      </a>
                  </div> -->
              </div>
              <div class="ptBreadcrumb"></div>
            <!-- </h2> -->
        </header>
 
        <div class="slds-modal__content slds-p-around_medium">
          <!-- <aura:iteration items="1,2,3,4,5" var="item">
            {!item}
          </aura:iteration> -->
            <!-- <lightning:recordEditForm recordId="{!v.recordId}"
                           objectApiName="Repair__c">
                <lightning:messages />
                <div class="slds-col slds-size_1-of-2">
                    Your lightning:inputField components here
                <lightning:inputField fieldName="Source_QIS__c" />
                </div>
                <lightning:button class="slds-m-top_small" type="submit" label="Create new" />
            </lightning:recordEditForm> -->
            <c:lexNewRepairLWC recordId="{!v.recordId}" urlStr="{!v.urlStr}" />
        </div>
    </div>
    <!-- <div class="exampleHolder">
        <c:newRepairLWC recordId="{!v.recordId}"/>
    </div> -->
</aura:component>