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
+43
View File
@@ -0,0 +1,43 @@
{php include pubTemplate("header_admin")}
<!--main-->
<div class="midder">
{template anti_menu}
<div>
<form method="post" action="{SITE_URL}index.php?app=system&ac=anti&ts=worddo">
敏感词:<input name="word" /> <input type="submit" value="添加" />
<a class="btn btn-sm btn-outline-primary" href="{SITE_URL}index.php?app=system&ac=anti&ts=worddelall">一键删除所有敏感词</a>
<a class="btn btn-sm btn-outline-primary" href="{SITE_URL}index.php?app=system&ac=anti&ts=wordadd">批量添加敏感词</a>
</form>
</div>
<div class="mt-3">
<table class="table table-hover">
<thead class="thead-light">
<tr><th>ID</th><th>敏感词 <small class="text-danger">请至少保留一个敏感词</small></th><th>添加时间</th><th>操作</th></tr>
</thead>
<tbody class="fs12 c9">
{loop $arrWord $key $item}
<tr><td>{$item['id']}</td><td>{$item['word']}</td><td>{$item['addtime']}</td><td><a href="{SITE_URL}index.php?app=system&ac=anti&ts=worddel&id={$item['id']}"><i class="bi bi-trash"></i> 删除</a></td></tr>
{/loop}
</tbody>
</table>
</div>
</div>
{php include pubTemplate("footer_admin")}