UrlGridTable.html
1.87 KB
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
<div id="NMEC_${id}" class="wev-comp-${compType}">
<div class="wev-search" {@if normalSearch.hide == true}style="display:none;"{@/if}>
<div class="wev-search-inner">
<form action="javascript:void(0)">
<input type="search" placeholder="${normalSearch.tip}">
</form>
<div class="wev-placeholder">
<div class="wev-placeholder-inner wev-ellipsis">
<span class="wev-small-icon wev-icon-search"></span><span class="wev-placeholder-text">$${normalSearch.tip}</span>
</div>
</div>
<div class="wev-clear-btn"></div>
</div>
<div class="wev-list-btn-container">
{@each btns as btn, index}
<button class="btn">$${btn.text}</button>
{@/each}
</div>
</div>
$${loading.content}
<div class="wev-table-view-wrapper wev-gridtable-view-wrapper">
<div class="wev-gridtable-content-wrapper">
<div class="wev-gridtable-main-content-wrapper">
<table style="${options.width}">
<thead>
<tr>
{@each headerView.normal as viewCol}
<th {@if viewCol.fixedColumn === true}class="wev-gridtable-fixed-col"{@/if} style="${viewCol.width}">$${viewCol.text}</th>
{@/each}
</tr>
</thead>
</table>
<div class="wev-gridtable-main-content-body-wrapper" style="${options.height}">
{@if options.autoHeight !== true}
<div class="wev-gridtable-fixed-content-body-wrapper-mapping">
</div>
{@/if}
<table style="${options.width}">
<tbody>
</tbody>
</table>
</div>
</div>
<div class="wev-gridtable-fixed-content-wrapper">
<table>
<thead>
<tr>
{@each headerView.fixed as viewCol}
<th style="${viewCol.width}">$${viewCol.text}</th>
{@/each}
</tr>
</thead>
</table>
<div class="wev-gridtable-fixed-content-body-wrapper" style="${options.height}">
</div>
</div>
</div>
$${moreLoading.content}
</div>
</div>