mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-15 18:25:33 +08:00
35 lines
1.4 KiB
HTML
35 lines
1.4 KiB
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<{if $type.dialog}>
|
||
<span>
|
||
<span onclick="new Dialog($E('div',this.parentNode).clone().setStyle('display',''),{modal:true,title:'<{t}>帮1助<{/t}> <{$label}>'});"><img src="<{$type.icon}>" /><{if $label}><{$label}><{/if}></span>
|
||
<div style="display:none; padding:15px;">
|
||
<p><{$text}></p>
|
||
<{if $url}><p><a target="blank" href="<{$url}>"><{t}>更多<{/t}></a></p><{/if}>
|
||
<{if $movie}><p><a href="http://docs.shopex.cn/videos/<{$movie}>"><{t}>观看视频<{/t}></a></p><{/if}>
|
||
</div>
|
||
</span>
|
||
<{else}>
|
||
<{if $docid}>
|
||
<a href="http://click.shopex.cn/free_click.php?id=<{$docid}>" target="_blank" style="margin:0;padding:0" title="<{$text|escape:"html"}>">
|
||
<img src="<{$type.icon}>" style="cursor:pointer;" title="<{$text|escape:"html"}>" /><{if $label}><{$label}><{/if}>
|
||
</a>
|
||
<{elseif $href}>
|
||
<a href="<{$href}>" target="_blank" style="margin:0;padding:0" title="<{$text|escape:"html"}>">
|
||
<img src="<{$type.icon}>" style="cursor:pointer;" title="<{$text|escape:"html"}>" /><{if $label}><{$label}><{/if}>
|
||
</a>
|
||
<{else}>
|
||
<span id="<{$dom_id}>">
|
||
<img src="<{$type.icon}>" /><{if $label}><{$label}><{/if}>
|
||
</span>
|
||
<{if $text}>
|
||
<script>
|
||
$('<{$dom_id}>').store('tip:title','').store('tip:text',"<{$text|replace:'"':'\\"'}>");
|
||
Xtip.attach($('<{$dom_id}>'));
|
||
</script>
|
||
<{/if}>
|
||
<{/if}>
|
||
<{/if}> |