Files
OMS/app/image/view/finder/image.html
2025-12-28 23:13:25 +08:00

46 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<div class="clearfix">
<div class="span-auto" style="width:60%">
<div class="tableform">
<h3>图片地址</h3>
<table>
<tr>
<th><b><{t}>原图<{/t}></b></th><td class="font-green"><{$image.url}></td>
</tr>
<{if $image.l_url}>
<tr>
<th><b><{t}>大图<{/t}></b></th><td class="font-gray"><{$image.l_url}></td>
</tr>
<{/if}>
<{if $image.m_url}>
<tr>
<th><b><{t}>中图<{/t}></b></th><td class="font-gray"><{$image.m_url}></td>
</tr>
<{/if}>
<{if $image.s_url}>
<tr>
<th><b><{t}>小图<{/t}></b></th><td class="font-gray"><{$image.s_url}></td>
</tr>
<{/if}>
</table>
</div>
</div>
<div class="span-auto last">
<div class="tableform">
<h3><{t}>图片信息<{/t}></h3>
<table>
<tr><th><{t}>原始尺寸<{/t}></th>
<td><{$image.width}> x <{$image.height}></td></tr>
<tr><th><{t}>更新时间<{/t}></th>
<td><{$image.last_modified|cdate}></td></tr>
<tr><th><{t}>存储引擎<{/t}></th>
<td><{$image.storage}></td></tr>
</table>
</div>
</div>
</div>