...
|
...
|
@@ -422,6 +422,211 @@ |
|
|
</table>
|
|
|
</div>
|
|
|
</script>
|
|
|
<script id="template2_new" type="text/template">
|
|
|
<div class="productInfo">
|
|
|
<table class="table table-striped table-bordered">
|
|
|
<thead>
|
|
|
<tr align="center">
|
|
|
<th>SKN</th>
|
|
|
<th>商品名称</th>
|
|
|
<th>品牌</th>
|
|
|
<th>类目</th>
|
|
|
<th>当前价</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
<td>[[productSkn]]</td>
|
|
|
<td>[[goodsName]]</td>
|
|
|
<td>[[brandName]]</td>
|
|
|
<td>
|
|
|
[[maxSortName]]
|
|
|
[[if midleSortName]] > [[midleSortName]][[/if]]
|
|
|
[[if smallSortName]] > [[smallSortName]][[/if]]
|
|
|
</td>
|
|
|
<td>[[currentPrice]]</td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</div>
|
|
|
<h2 style="color: #999; font-family: 'Microsoft YaHei'; font-size: 14px;">—— 商品变价记录表 ——</h2>
|
|
|
<div class="historyList">
|
|
|
<table class="table table-striped table-bordered">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th>吊牌价</th>
|
|
|
<th>销售价</th>
|
|
|
<th>价格生效-<font color="green">开始时间</font></th>
|
|
|
<th>价格生效-<font color="red">结束时间</font></th>
|
|
|
<th>状态</th>
|
|
|
<th>变价申请时间</th>
|
|
|
<th>变价人</th>
|
|
|
<th>变价类型</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
[[if logList.length > 0]]
|
|
|
[[each logList as item index]]
|
|
|
<tr>
|
|
|
<td>[[item.retailPrice]]</td>
|
|
|
<td>[[item.salesPrice]]</td>
|
|
|
<td>[[item.effectiveTime]]</td>
|
|
|
<td>[[item.changePriceEndTime]]</td>
|
|
|
<td>
|
|
|
[[if item.checkState == '101' ]] 待一审 [[/if]]
|
|
|
[[if item.checkState == '102' ]] 待二审 [[/if]]
|
|
|
[[if item.checkState == '103' ]] 待三审 [[/if]]
|
|
|
[[if item.checkState == '200' ]] 待生效 [[/if]]
|
|
|
[[if item.checkState == '201' ]] <font color="red">生效 [[/if]]
|
|
|
[[if item.checkState == '202' ]] 已失效 [[/if]]
|
|
|
[[if item.checkState == '300' ]] 驳回 [[/if]]
|
|
|
</td>
|
|
|
<td>[[item.applyTime]]</td>
|
|
|
<td>[[item.founderName]]</td>
|
|
|
<td>[[item.changePriceType]]</td>
|
|
|
</tr>
|
|
|
[[/each]]
|
|
|
[[else]]
|
|
|
<tr><td colspan="9">没有商品变价记录!</td></tr>
|
|
|
[[/if]]
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</div>
|
|
|
|
|
|
<h2 style="color: #999; font-family: 'Microsoft YaHei'; font-size: 14px;">—— 活动变价记录表 ——</h2>
|
|
|
<div class="historyList">
|
|
|
<table class="table table-striped table-bordered">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th>吊牌价</th>
|
|
|
<th>活动价</th>
|
|
|
<th>价格生效-<font color="green">开始时间</font></th>
|
|
|
<th>价格生效-<font color="red">结束时间</font></th>
|
|
|
<th>状态</th>
|
|
|
<th>变价申请时间</th>
|
|
|
<th>变价人</th>
|
|
|
<th>变价类型</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
[[if list.length > 0]]
|
|
|
[[each list as item index]]
|
|
|
<tr>
|
|
|
<td>[[item.retailPrice]]</td>
|
|
|
<td>[[item.currentPrice]]</td>
|
|
|
<td>[[item.effectiveTime]]</td>
|
|
|
<td>[[item.changePriceEndTime]]</td>
|
|
|
<td>
|
|
|
[[if item.checkState == '101' ]] 待一审 [[/if]]
|
|
|
[[if item.checkState == '102' ]] 待二审 [[/if]]
|
|
|
[[if item.checkState == '103' ]] 待三审 [[/if]]
|
|
|
[[if item.checkState == '200' ]] 待生效 [[/if]]
|
|
|
[[if item.checkState == '201' ]] <font color="red">生效 [[/if]]
|
|
|
[[if item.checkState == '202' ]] 已失效 [[/if]]
|
|
|
[[if item.checkState == '300' ]] 驳回 [[/if]]
|
|
|
</td>
|
|
|
<td>[[item.applyTime]]</td>
|
|
|
<td>[[item.founderName]]</td>
|
|
|
<td>[[item.changePriceType]]</td>
|
|
|
</tr>
|
|
|
[[/each]]
|
|
|
[[else]]
|
|
|
<tr><td colspan="9">没有活动变价记录!</td></tr>
|
|
|
[[/if]]
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</div>
|
|
|
|
|
|
<h2 style="color: #999; font-family: 'Microsoft YaHei'; font-size: 14px;">—— 商品变价计划表 ——</h2>
|
|
|
<div class="historyList">
|
|
|
<table class="table table-striped table-bordered">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th>吊牌价</th>
|
|
|
<th>销售价</th>
|
|
|
<th>价格生效-<font color="green">开始时间</font></th>
|
|
|
<th>价格生效-<font color="red">结束时间</font></th>
|
|
|
<th>状态</th>
|
|
|
<th>变价申请时间</th>
|
|
|
<th>变价人</th>
|
|
|
<th>操作</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
[[if planList.length > 0]]
|
|
|
[[each planList as item index]]
|
|
|
<tr>
|
|
|
<td>[[item.retailPrice]]</td>
|
|
|
<td>[[item.salesPrice]]</td>
|
|
|
<td>[[item.effectiveTime]]</td>
|
|
|
<td>[[item.changePriceEndTime]]</td>
|
|
|
<td>
|
|
|
[[if item.checkState == '101' ]] 待一审 [[/if]]
|
|
|
[[if item.checkState == '102' ]] 待二审 [[/if]]
|
|
|
[[if item.checkState == '103' ]] 待三审 [[/if]]
|
|
|
[[if item.checkState == '200' ]] 待生效 [[/if]]
|
|
|
[[if item.checkState == '201' ]] 生效 [[/if]]
|
|
|
[[if item.checkState == '202' ]] 已失效 [[/if]]
|
|
|
[[if item.checkState == '300' ]] 驳回 [[/if]]
|
|
|
</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="9">没有商品变价计划!</td></tr>
|
|
|
[[/if]]
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</div>
|
|
|
|
|
|
<h2 style="color: #999; font-family: 'Microsoft YaHei'; font-size: 14px;">—— 活动变价计划表 ——</h2>
|
|
|
<div class="historyList">
|
|
|
<table class="table table-striped table-bordered">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th>吊牌价</th>
|
|
|
<th>活动价</th>
|
|
|
<th>价格生效-<font color="green">开始时间</font></th>
|
|
|
<th>价格生效-<font color="red">结束时间</font></th>
|
|
|
<th>状态</th>
|
|
|
<th>变价申请时间</th>
|
|
|
<th>变价人</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
[[if makePriceList.length > 0]]
|
|
|
[[each makePriceList as item index]]
|
|
|
<tr>
|
|
|
<td>[[item.retailPrice]]</td>
|
|
|
<td>[[item.salesPrice]]</td>
|
|
|
<td>[[item.effectiveTime]]</td>
|
|
|
<td>[[item.changePriceEndTime]]</td>
|
|
|
<td>
|
|
|
[[if item.checkState == '101' ]] 待一审 [[/if]]
|
|
|
[[if item.checkState == '102' ]] 待二审 [[/if]]
|
|
|
[[if item.checkState == '103' ]] 待三审 [[/if]]
|
|
|
[[if item.checkState == '200' ]] 待生效 [[/if]]
|
|
|
[[if item.checkState == '201' ]] 生效 [[/if]]
|
|
|
[[if item.checkState == '202' ]] 已失效 [[/if]]
|
|
|
[[if item.checkState == '300' ]] 驳回 [[/if]]
|
|
|
</td>
|
|
|
<td>[[item.createTime]]</td>
|
|
|
<td>[[item.founderName]]</td>
|
|
|
</tr>
|
|
|
[[/each]]
|
|
|
[[else]]
|
|
|
<tr><td colspan="9">没有活动变价计划!</td></tr>
|
|
|
[[/if]]
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</div>
|
|
|
</script>
|
|
|
|
|
|
<script type="text/template" id="template3">
|
|
|
<div class="rows" style="height: 100px;">
|
...
|
...
|
|