selectRefundOrderImg.zml 733 B

123456789101112131415161718192021222324252627
  1. <style>
  2. body{ text-align:center}
  3. .div{ margin:0 auto; width:600px; height:300px; border:5px solid #F00}
  4. </style>
  5. <script>
  6. function showLargeImg(thisImg){
  7. var dialog = new parent.Z.Dialog();
  8. dialog.shadow = true;
  9. dialog.title = "图片";
  10. dialog.fixed = true;
  11. dialog.url = "showLargeImg.htm?imgpath="+thisImg.src;
  12. dialog.width = parent.Z.D.clientWidth()-200;
  13. dialog.height = parent.Z.D.clientHeight()-200;
  14. dialog.execute();
  15. dialog.$background.remove();
  16. }
  17. </script>
  18. ${zhiqim_manager_content()}
  19. <#for item : attaList>
  20. <div class="z-pd5">
  21. <img alt="截图" src="/${item.getAttaId()}-${item_index}-img" onclick="showLargeImg(this)">
  22. </div>
  23. </#for>
  24. <br><br>
  25. ${zhiqim_manager_content_end()}