60 lines
1.4 KiB
HTML
60 lines
1.4 KiB
HTML
{php include pubTemplate("header_admin")}
|
|
|
|
<div class="midder">
|
|
|
|
{php include template("admin/menu");}
|
|
|
|
<div class="page">{$pageUrl}</div>
|
|
|
|
<table class="table table-hover">
|
|
|
|
|
|
<thead class="thead-light">
|
|
<tr><th>PhotoId</th><th>图片</th><th>AlbumID</th>
|
|
|
|
<th>UserId</th>
|
|
<th>统计</th>
|
|
|
|
<th>操作</th></tr>
|
|
</thead>
|
|
|
|
|
|
<tbody class="fs12">
|
|
|
|
{loop $arrPhoto $key $item}
|
|
<tr><td>{$item[photoid]}</td><td><a target="_blank" href="{SITE_URL}uploadfile/photo/{$item[photourl]}">
|
|
|
|
{if $item[photourl]}
|
|
<img src="{php echo tsXimg($item[photourl],'photo',100,100,$item[path])}" />
|
|
{else}
|
|
<img src="{SITE_URL}public/images/event_dft.jpg" />
|
|
{/if}
|
|
|
|
</a></td><td>{$item[albumid]}</td>
|
|
|
|
<td>{$item[userid]}</td>
|
|
|
|
<td>
|
|
浏览:{$item['count_view']}<br>
|
|
评论:{$item['count_comment']}
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a href="{SITE_URL}index.php?app=photo&ac=admin&mg=album&ts=face&photoid={$item[photoid]}">设为封面</a>
|
|
|
|
<a href="{SITE_URL}index.php?app=photo&ac=admin&mg=photo&ts=isrecommend&photoid={$item[photoid]}">{if $item[isrecommend]==0}推荐{else}取消推荐{/if}</a>
|
|
|
|
|
|
|
|
<a href="{SITE_URL}index.php?app=photo&ac=admin&mg=album&ts=del_photo&photoid={$item[photoid]}">删除</a></td></tr>
|
|
{/loop}
|
|
|
|
</tbody>
|
|
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{php include pubTemplate("footer_admin")} |