Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
<p>{{user.name}} 你好,</p>
<p>有{{dataRow.size()}}个SKU低于8折</p>
<table style="border-color: #cfcfcf;" border="1" width="453" cellspacing="0">
<tbody>
<tr style="height: 28.05px; background-color: #2d8ac7;">
<td style="width: 70.1167px; height: 28.05px;"><span style="color: #ffffff;"><strong>日期</strong></span></td>
<td style="width: 188.883px; height: 28.05px;"><span style="color: #ffffff;"><strong>门店名称</strong></span></td>
<td style="width: 70.1167px; height: 28.05px;"><span style="color: #ffffff;"><strong>款名</strong></span></td>
<td style="width: 97px; height: 28.05px;"><span style="color: #ffffff;"><strong>销售单价</strong></span></td>
<td style="width: 69px; height: 28.05px;"><span style="color: #ffffff;"><strong>金额</strong></span></td>
<td style="width: 69px; height: 28.05px;"><span style="color: #ffffff;"><strong>折扣</strong></span></td>
</tr>
<!--{% for item in dataRow %} -->
<tr style="height: 12px;">
<td style="width: 70.1167px; height: 12px;">&nbsp;{{item["日期"]}}</td>
<td style="width: 188.883px; height: 12px;">{{item["门店名称"]}}</td>
<td style="width: 70.1167px; height: 12px;">&nbsp;{{item["款名"]}}</td>
<td style="width: 97px; height: 12px;">&nbsp;{{item["销售单价"]}}</td>
<td style="width: 69px; height: 12px;">&nbsp;{{item["金额"]}}</td>
<td style="width: 69px; height: 12px;">&nbsp;{{number_format(item["销售折扣"],2)}}</td>
</tr>
<!--{% endfor %} --></tbody>
</table>
<p>请知晓.</p>

...