Files
thinksaas_lmve/app/location/html/admin/location_edit.html
T
2023-06-22 13:33:25 +08:00

28 lines
1.0 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.
{php include pubTemplate("header_admin")}
<!--main-->
<div class="midder">
{php include template("admin/menu");}
<form method="POST" action="{SITE_URL}index.php?app=location&ac=admin&mg=location&ts=editdo" enctype="multipart/form-data">
<table class="table table-hover">
<tr><td width="100">名称:</td><td><input style="width:300px;" name="title" value="{$strLocation['title']}" /></td></tr>
<tr><td>内容:</td><td><textarea style="width:300px;" name="content">{$strLocation['content']}</textarea></td></tr>
<tr><td>图片:</td><td>
{if $strLocation['photo']}
<img src="{php echo tsXimg($strLocation['photo'],'location','120','120',$strLocation['path'],1)}" />
<br />
{/if}
<input type="file" name="photo" /></td></tr>
<tr><td>排序ID</td><td><input name="orderid" value="{$strLocation['orderid']}" /></td></tr>
<tr><td></td><td>
<input type="hidden" name="locationid" value="{$strLocation['locationid']}" />
<input class="btn btn-primary" type="submit" value="修改" />
</td></tr>
</table>
</form>
</div>
{php include template("admin/footer")}