1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| <template>
| <div style="border-top: 3px solid #51606E;;border-bottom: 1px solid #D4D4D4;padding:3px;">
| <p style="font-size: 19px;"><strong>库存详情</strong></p>
| </div>
| <div style="padding:10px;">
| <div style="height: 300px;">
| <lightning-datatable
| key-field="id"
| data={data}
| columns={columns}
| hide-checkbox-column
| default-sort-direction={defaultSortDirection}
| sorted-direction={sortDirection}
| sorted-by={sortedBy}
| onsort={onHandleSort}>
| </lightning-datatable>
| </div>
| </div>
| </template>
|
|