mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
23 lines
859 B
HTML
23 lines
859 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<div class="finder-packet chart-tabs">
|
||
<ul class="over">
|
||
<{foreach from=$graph key=key item=item}>
|
||
<li class='<{if $target==$key}> current<{/if}>'>
|
||
<a href="javascript:void(0);"><span><{$item.name}></span></a>
|
||
</li>
|
||
<{/foreach}>
|
||
</ul>
|
||
</div>
|
||
<div style="height:<{$iframe_height}>px;overflow:hidden" class="gridlist">
|
||
<{foreach from=$graph key=key item=item}>
|
||
<div class="loading chart-items" >
|
||
<textarea class="textarea-lazyload dis_n">
|
||
<iframe frameborder="0" src="index.php?app=eccommon&ctl=admin_analysis&act=chart_view&show=line&target=<{$key}><{$ext_url}>" scrolling="no" width="100%" height="100%" ></iframe>
|
||
</textarea>
|
||
</div>
|
||
<{/foreach}>
|
||
</div> |