refundParameter.zml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ${zhiqim_manager_breadcrumb("退款绩效参数")}
  2. ${zhiqim_manager_content()}
  3. <#-- 导航 -->
  4. <div data-role="z-tabnav" class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
  5. <nav>
  6. <ul>
  7. <li onclick="Z.L.href('/orderConvertList.htm');">订单折算参数</li>
  8. <li onclick="Z.L.href('/specialOrderTypeList.htm');">特殊订单绩效参数</li>
  9. <li class="z-active">退款绩效参数</li>
  10. <li onclick="Z.L.href('/performanceParameter.htm');">设计绩效参数</li>
  11. <li onclick="Z.L.href('/qcParameter.htm');">质检参数</li>
  12. <li onclick="Z.L.href('/qcAwardedType.htm');">质检加分管理</li>
  13. <li onclick="Z.L.href('/qcPerformanceParam.htm');">质检绩效参数</li>
  14. <li onclick="Z.L.href('/timelinessParameterList.htm');">时效绩效参数</li>
  15. </ul>
  16. <div class="z-float-left z-mg10">
  17. </div>
  18. <div class="z-text-right z-mg-t10 z-mg-r5">
  19. <!--<button class="z-button ${zmr_color_class}" onclick="Z.L.href('refundParameterAdd.htm');"><i class="z-font z-add"></i>增加退款绩效参数</button>-->
  20. <button class="z-button ${zmr_color_class}" onclick="Z.L.check('refundParameterModify.htm', 'parameterId');"><i class="z-font z-modify"></i>修改退款绩效参数</button>
  21. </div>
  22. </nav>
  23. </div>
  24. <#-- 列表 -->
  25. <table class="z-table z-bordered z-h40-tr z-pd5 z-bg-white z-text-center">
  26. <tr bgcolor="${zmr_thead_bgcolor}">
  27. <td width="100">选择</td>
  28. <td width="10%">标准退款率(%)</td>
  29. <td width="10%">标准退款率下限(%)</td>
  30. <td width="10%">标准退款率上限(%)</td>
  31. <td width="10%">奖励点(%)</td>
  32. <td width="10%">扣罚点(%)</td>
  33. <td width="10%">奖励金额(单位/元)</td>
  34. <td width="10%">扣罚金额(单位/元)</td>
  35. <td width="12%">最大奖励金额(单位/元)</td>
  36. <td width="12%">最大扣罚金额(单位/元)</td>
  37. </tr>
  38. ${zhiqim_manager_tr_no_record(pageResult, 10, "暂时没有退款绩效")}
  39. <#for item : pageResult.list()>
  40. <tr class="z-pointer" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
  41. <td><input id="parameterId" name="parameterId" type="radio" data-role="z-radio" data-class="${zmr_color_class}" value="${item.getRefundParameterId()}"></td>
  42. <td>${Maths.division(item.getStandardRefundRate(), 100, 2)}</td>
  43. <td>${Maths.division(item.getStandardRefundRateFloor(), 100, 2)}</td>
  44. <td>${Maths.division(item.getStandardRefundRateCeil(), 100, 2)}</td>
  45. <td>${Maths.division(item.getRewardDot(), 100, 2)}</td>
  46. <td>${Maths.division(item.getPunishDot(), 100, 2)}</td>
  47. <td>${Maths.division(item.getRewardAmount(), 100, 2)}</td>
  48. <td>${Maths.division(item.getPunishAmount(), 100, 2)}</td>
  49. <td>${Maths.division(item.getRewardAmountMax(), 100, 2)}</td>
  50. <td>${Maths.division(item.getPunishAmountMax(), 100, 2)}</td>
  51. </tr>
  52. </#for>
  53. </table>
  54. ${zhiqim_manager_paging(pageResult, "refundParameter.htm")}
  55. ${zhiqim_manager_content_end()}