detail.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <style>
  2. body.is-dialog .purchase-content-detail {
  3. padding: 16px 22px 20px;
  4. }
  5. .purchase-content-detail .meta-row {
  6. margin-bottom: 10px;
  7. font-size: 13px;
  8. color: #666;
  9. line-height: 1.7;
  10. }
  11. .purchase-content-detail .meta-row-top {
  12. display: flex;
  13. align-items: baseline;
  14. justify-content: space-between;
  15. flex-wrap: wrap;
  16. gap: 8px 24px;
  17. }
  18. .purchase-content-detail .meta-row-top .meta-time {
  19. margin-left: auto;
  20. text-align: right;
  21. white-space: nowrap;
  22. }
  23. .purchase-content-detail .meta-row strong {
  24. color: #333;
  25. font-weight: 600;
  26. margin-right: 4px;
  27. }
  28. .purchase-content-detail .subject-row {
  29. margin: 12px 0 16px;
  30. padding-bottom: 10px;
  31. border-bottom: 1px solid #eee;
  32. font-size: 14px;
  33. color: #222;
  34. }
  35. .purchase-content-detail .subject-row strong {
  36. color: #333;
  37. font-weight: 600;
  38. margin-right: 4px;
  39. }
  40. .purchase-content-detail .content-label {
  41. margin-bottom: 8px;
  42. font-size: 13px;
  43. color: #666;
  44. }
  45. .purchase-content-detail .content-label strong {
  46. color: #333;
  47. font-weight: 600;
  48. margin-right: 4px;
  49. }
  50. .purchase-content-detail .content-body {
  51. white-space: pre-wrap;
  52. word-break: break-word;
  53. line-height: 1.75;
  54. font-size: 14px;
  55. color: #333;
  56. min-height: 120px;
  57. }
  58. </style>
  59. <div class="purchase-content-detail">
  60. <div class="meta-row meta-row-top">
  61. <div class="meta-sender"><strong>投递人:</strong>{$row.sender_name|default=''|htmlentities}</div>
  62. <div class="meta-time"><strong>投递时间:</strong>{$row.send_time_text|default=''|htmlentities}</div>
  63. </div>
  64. <div class="meta-row"><strong>投递给:</strong>{$row.recipient_names|default=''|htmlentities}({$row.recipient_count|default='0'}人)</div>
  65. <div class="subject-row"><strong>主题:</strong>{$row.subject|default=''|htmlentities}</div>
  66. <div class="content-label"><strong>内容:</strong></div>
  67. <div class="content-body">{$row.content|default=''|htmlentities}</div>
  68. </div>