国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
3.2KB

  1. {dede:page pagesize='30'/}
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="<?php echo $cfg_soft_lang; ?>">
  6. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  7. <title>用户短信管理</title>
  8. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  10. <link rel="stylesheet" href="../static/web/css/admin.css">
  11. <style>
  12. .current{border:1px solid #dee2e6;padding:6px;background:#FFFEF4;color:#dc3545}
  13. </style>
  14. </head>
  15. <body>
  16. <form action="member_pm.php" name="form1" method="get">
  17. <table width="98%" cellpadding="1" cellspacing="1" align="center" class="mt-3 mb-3" style="border:1px solid #dee2e6">
  18. <tr>
  19. <td height="36" bgcolor="#f8f8f8">
  20. <table cellpadding="0" cellspacing="0">
  21. <tr>
  22. <td width="280" align="center"><input name="keyword" type="text" id="keyword" value="{dede:global name='keyword'/}" placeholder="请输入关键词" style="width:260px"></td>
  23. <td width="270"><input name="username" type="text" id="username" value="{dede:global name='username'/}" placeholder="请输入用户名" style="width:260px"></td>
  24. <td width="170">
  25. <select name="folder" id="folder" style="width:160px">
  26. <option value="inbox">收件箱</option>
  27. <option value="outbox">发件箱</option>
  28. </select>
  29. </td>
  30. <td><button type="submit" class="btn btn-success btn-sm">搜索</button></td>
  31. </tr>
  32. </table>
  33. </td>
  34. </tr>
  35. </table>
  36. </form>
  37. <table width="98%" cellpadding="1" cellspacing="1" align="center" class="table maintable mb-3">
  38. <tr>
  39. <td height="26" colspan="7" background="../static/web/img/tbg.gif"><span class="current" id="cate_1">短信列表</span> <a href="member_pmall.php">群发短信</a> <a href="member_pmone.php">单独短信</a></td>
  40. </tr>
  41. <tr bgcolor="#F8FCF1" height="26">
  42. <td width="10%" align="center">发送时间</td>
  43. <td width="20%" align="center">标题</td>
  44. <td width="5%" align="center">已读</td>
  45. <td width="10%" align="center">{dede:global name='postuser'/}</td>
  46. <td width="35%" align="center">内容</td>
  47. <td width="10%" align="center">文件夹</td>
  48. <td width="10%" align="center">操作</td>
  49. </tr>
  50. {dede:datalist empty='<tr><td colspan="7"><center>暂无内容</center></td></tr>'}
  51. <tr height="26" align="center" onmousemove="javascript:this.bgColor='#F8FCF1';" onmouseout="javascript:this.bgColor='#ffffff';">
  52. <td>{dede:field.sendtime function='GetDateMk(@me)'/}</td>
  53. <td>{dede:field.subject function='dede_htmlspecialchars(@me)'/}</td>
  54. <td>{dede:field.hasview function='IsReader(@me)'/}</td>
  55. <td>{dede:field.floginid/}</td>
  56. <td>{dede:field.message function='cn_substr(HtmlReplace(@me),60)'/}</td>
  57. <td>{dede:field.folder function='GetFolders(@me)'/}</td>
  58. <td><a href="member_pm.php?ID={dede:field.id/}&dopost=del" class="btn btn-success btn-sm">删除</a></td>
  59. </tr>
  60. {/dede:datalist}
  61. <tr>
  62. <td height="36" bgcolor="f8f8f8" colspan="7" align="center">{dede:pagelist listsize='6'/}</td>
  63. </tr>
  64. </table>
  65. </body>
  66. </html>