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
+58
View File
@@ -0,0 +1,58 @@
{php include pubTemplate("header_admin")}
{php doAction('tseditor')}
<!--main-->
<div class="midder">
{php include template("admin/menu");}
<form method="post" action="{SITE_URL}index.php?app=home&ac=admin&mg=info&ts=editdo">
<table class="table table-hover">
<tbody>
<tr>
<td>标题:</td><td><input style="width:300px;padding:5px;" name="title" value="{$strInfo['title']}" /></td>
</tr>
<tr>
<td>内容:</td><td>
<div style="width: 700px;">
<textarea id="tseditor" name="content">{$strInfo['content']}</textarea>
</div>
</td>
</tr>
<tr>
<td>排序ID:</td><td><input name="orderid" value="{$strInfo['orderid']}" /></td>
</tr>
<tr>
<td></td><td>
<input type="hidden" name="infoid" value="{$strInfo['infoid']}" />
<input type="submit" value="提交" />
</td>
</tr>
</tbody>
</table>
</form>
</div>
{php include pubTemplate("footer_admin")}