| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <style>
- body.is-dialog .purchase-content-detail {
- padding: 16px 22px 20px;
- }
- .purchase-content-detail .meta-row {
- margin-bottom: 10px;
- font-size: 13px;
- color: #666;
- line-height: 1.7;
- }
- .purchase-content-detail .meta-row-top {
- display: flex;
- align-items: baseline;
- justify-content: space-between;
- flex-wrap: wrap;
- gap: 8px 24px;
- }
- .purchase-content-detail .meta-row-top .meta-time {
- margin-left: auto;
- text-align: right;
- white-space: nowrap;
- }
- .purchase-content-detail .meta-row strong {
- color: #333;
- font-weight: 600;
- margin-right: 4px;
- }
- .purchase-content-detail .subject-row {
- margin: 12px 0 16px;
- padding-bottom: 10px;
- border-bottom: 1px solid #eee;
- font-size: 14px;
- color: #222;
- }
- .purchase-content-detail .subject-row strong {
- color: #333;
- font-weight: 600;
- margin-right: 4px;
- }
- .purchase-content-detail .content-label {
- margin-bottom: 8px;
- font-size: 13px;
- color: #666;
- }
- .purchase-content-detail .content-label strong {
- color: #333;
- font-weight: 600;
- margin-right: 4px;
- }
- .purchase-content-detail .content-body {
- white-space: pre-wrap;
- word-break: break-word;
- line-height: 1.75;
- font-size: 14px;
- color: #333;
- min-height: 120px;
- }
- </style>
- <div class="purchase-content-detail">
- <div class="meta-row meta-row-top">
- <div class="meta-sender"><strong>投递人:</strong>{$row.sender_name|default=''|htmlentities}</div>
- <div class="meta-time"><strong>投递时间:</strong>{$row.send_time_text|default=''|htmlentities}</div>
- </div>
- <div class="meta-row"><strong>投递给:</strong>{$row.recipient_names|default=''|htmlentities}({$row.recipient_count|default='0'}人)</div>
- <div class="subject-row"><strong>主题:</strong>{$row.subject|default=''|htmlentities}</div>
- <div class="content-label"><strong>内容:</strong></div>
- <div class="content-body">{$row.content|default=''|htmlentities}</div>
- </div>
|