buli
2023-07-14 5b5c1e16deaa3a9d6d0ed1ffca390655ed103df7
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
<template>
        <form id="mainForm">
          
             
                 <h2 class="slds-text-heading_medium slds-m-bottom_medium">
                {Label.Product_Search}
                </h2>
                <lightning-input type="hidden"  id="Trade"  > </lightning-input>
                <table width="1000" border="0" style="background-color:#DCDCDC">
                    <colgroup>
                        <col width="12" />
                        <col width="20" />
                        <col width="20" />
                        <col width="200" />
                        <col width="20" />
                        <col width="428" />
                    </colgroup>
                    <tr>
                        <td>&nbsp;</td>
                        <th>{Label.Search_Condition}</th>
                        <td>&nbsp;</td>
                        <th>{Label.Asset_No}</th>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                    </tr>
                    <tr>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                        <td><lightning-input id="searchName" onchange={getInputData}   >
                        </lightning-input></td>
 
                        <td><lightning-button variant="brand-outline" value={Label.Search} onclick={serContact}  ></lightning-button></td>
                        <td>&nbsp;<lightning-button variant="brand-outline" value={Label.Add_Product} onclick={setProductList}></lightning-button></td>
                    </tr>
                    <tr>
                        <td style="border-bottom: 1px solid #888;" colspan="15">&nbsp;</td>
                    </tr>
                </table>
                <table width="1000" border="0" style="background-color:#DCDCDC">
                    <tr>
                        <td width="12">&nbsp;</td>
                        <th valign="top">{Label.Search_Result}</th>
                        <td width="20">&nbsp;</td>
                        <td>
                            <table border="0">
                                <tr>
                                    <td>
                                        <div id="iframelike" style="width:900px">
 
 
 
                                            <lightning-datatable 
                                            key-field="id"
                                            data={data}
                                            columns={columns} >
                                            </lightning-datatable>
 
 
                                        </div>
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                </table>
            
        </form>
    <!-- </apex:outputPanel> -->
</template>