国内流行的内容管理系统(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.

67 lines
3.1KB

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