mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-30 21:15:34 +08:00
24 lines
725 B
HTML
24 lines
725 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<{foreach from=$data item=item}>
|
||
<div class="clearfix dashbd-row">
|
||
<h4><{$item.label}></h4>
|
||
<table cellpadding="0" cellspacing="0"><tr>
|
||
<{foreach from=$item.value item=items}>
|
||
<td class="<{if $items.count==0}> figure-zero<{/if}>" style="padding-left: 20px;">
|
||
<a style="text-decoration:none;" href="<{$items.link}>"><{t}><{$items.label}><{/t}><span class="dashbd-figure">(<{$items.count}>)</span></a>
|
||
</td>
|
||
<{/foreach}>
|
||
</tr></table>
|
||
</div>
|
||
<{/foreach}>
|
||
|
||
<script>
|
||
$$('td.figure-zero a').each(function(el){
|
||
el.set('href','javascript:void(0)');
|
||
});
|
||
</script>
|