Msg.phtml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <title>短信内容详情</title>
  6. </head>
  7. <body>
  8. <div class="message-container">
  9. <div class="message-details">
  10. <?php
  11. foreach ($this->result as $item) {
  12. ?>
  13. <hr>
  14. <div style="text-align:left;border-bottom:2px solid #fff;padding:5px;margin-top:20px">
  15. <div class="title">
  16. <span style="padding:2px;display:inline-block;height:20px;line-height:18px;background:#449d44;color:#fff;border-radius:5px;text-align:center">
  17. <?php echo $item['date']; ?></span>
  18. <span style="padding:2px;display:inline-block;height:20px;line-height:18px;background:#fe4365;color:#fff;border-radius:5px;text-align:center">
  19. <span>来自:</span><span><?php echo $item['fromName']; ?></span>
  20. </span>
  21. </div>
  22. <div class="conters">
  23. <span style="margin-top:5px;padding:5px;display:inline-block;background:#3fb8af;color:#fff;border-radius:5px;text-align:left">
  24. <?php echo $item['content']; ?>
  25. </span>
  26. </div>
  27. </div>
  28. <?php
  29. }
  30. ?>
  31. </div>
  32. </div>
  33. </body>
  34. </html>