mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-02 13:55:49 +08:00
57 lines
1.6 KiB
HTML
57 lines
1.6 KiB
HTML
<!--
|
|
Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<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> |