begin of thinksaas 3.68

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2023-06-22 13:33:25 +08:00
commit 963ec1b2ea
2746 changed files with 331806 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
{php include pubTemplate("header_admin")}
<div class="midder">
{template anti_menu}
<div class="page">{$pageUrl}</div>
<div>
<table class="table table-hover">
<thead class="thead-light">
<tr>
<th>ID</th>
<th>UserID</th>
<th>type</th>
<th>title</th>
<th></th>
<th>addtime</th>
<th>操作</th>
</tr>
</thead>
<tbody>
{loop $arrEditor $key $item}
<tr>
<td>{$item['id']}</td>
<td>{$item['userid']}</td>
<td>{$item['type']}</td>
<td>{$item['title']}</td>
<td>
{if $item['type']=='photo'}
<a target="_blank" href="{php echo tsXimg($item['url'],'editor')}"><img src="{php echo tsXimg($item['url'],'editor')}" width="100"></a>
{else}
<a target="_blank" href="{SITE_URL}uploadfile/editor/{$item['url']}">uploadfile/editor/{$item['url']}</a>
{/if}
</td>
<td>{php echo date('Y-m-d H:i:s',$item['addtime'])}</td>
<td><a href="{SITE_URL}index.php?app=system&ac=editor&ts=delete&id={$item['id']}"><i class="bi bi-trash"></i> 删除</a></td>
</tr>
{/loop}
</tbody>
</table>
</div>
<div class="page">{$pageUrl}</div>
</div>
{php include pubTemplate("footer_admin")}