historyBackDetails.zml 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <script></script>
  2. <#-- 列表 -->
  3. <table class="z-table z-bordered z-h40-tr z-pd5 z-bg-white z-text-center">
  4. <tr bgcolor="${zmr_thead_bgcolor}">
  5. <td width="140">订单号</td>
  6. <td width="130">旺旺号</td>
  7. <td width="80">订单金额</td>
  8. <td width="80">退回时间</td>
  9. <td width="250">产品描述</td>
  10. <td width="150">退回原因</td>
  11. </tr>
  12. ${zhiqim_manager_tr_no_record(pageResult, 8, "没有历史退回记录")}
  13. <#for item : models>
  14. <tr class="z-pointer ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
  15. <td>${item.getDesignId()}</td>
  16. <td>${item.getBuyerNick()}</td>
  17. <td>${Amounts.toYuanMustRadix(item.getAmount())}</td>
  18. <td>${Sqls.toDateTimeString(item.getBackTime())}</td>
  19. <td align="left">${item.getOrderText()}</td>
  20. <td align="left">${item.getCheckBackReason()}</td>
  21. </tr>
  22. </#for>
  23. </table>
  24. <div class="z-h60">
  25. </div>
  26. <div class="z-fixed z-w100p z-bg-gray z-text-center z-pd-t10 z-h60" style="bottom:0;left:0">
  27. <button type="button" class="z-button z-large z-mg-l10 z-w100" onclick="parent.Z.Dialog.close();">关闭</button>
  28. </div>