...
|
...
|
@@ -231,9 +231,11 @@ |
|
|
<th>价格生效-<font color="red">结束时间</font></th>
|
|
|
<th>变价时间</th>
|
|
|
<th>变价人</th>
|
|
|
<th>操作</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
[[if list.length > 0]]
|
|
|
[[each list as item index]]
|
|
|
<tr>
|
|
|
<td>[[item.retailPrice]]</td>
|
...
|
...
|
@@ -242,8 +244,16 @@ |
|
|
<td>[[item.changePriceEndTime]]</td>
|
|
|
<td>[[item.createTime]]</td>
|
|
|
<td>[[item.founderName]]</td>
|
|
|
<td>
|
|
|
[[if item.flag && item.flag == 1]]
|
|
|
<a data-planid="[[item.planId]]" data-skn="[[productSkn]]" href="javascript:;" class="btn btn-danger btn-xs deleteHistory">删除</a>
|
|
|
[[/if]]
|
|
|
</td>
|
|
|
</tr>
|
|
|
[[/each]]
|
|
|
[[else]]
|
|
|
<tr><td colspan="7">没有变价记录!</td></tr>
|
|
|
[[/if]]
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</div>
|
...
|
...
|
|