Msg.phtml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  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. <div style="text-align:left;border-bottom:2px solid #fff;padding:5px;margin-top:20px">
  14. <div class="title">
  15. <span style="padding:2px;display:inline-block;height:20px;line-height:18px;background:#449d44;color:#fff;border-radius:5px;text-align:center">
  16. <?php echo $item['date']; ?></span>
  17. <span style="padding:2px;display:inline-block;height:20px;line-height:18px;background:#fe4365;color:#fff;border-radius:5px;text-align:center">
  18. <span>来自:</span><span><?php echo $item['fromName']; ?></span>
  19. </span>
  20. </div>
  21. <div class="conters">
  22. <span style="margin-top:5px;padding:5px;display:inline-block;background:#3fb8af;color:#fff;border-radius:5px;text-align:left">
  23. <?php echo $item['content']; ?>
  24. </span>
  25. </div>
  26. </div>
  27. <?php
  28. }
  29. ?>
  30. </div>
  31. </div>
  32. </body>
  33. </html>