checkBackDetail.zml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <style>
  2. .div{ margin:0 auto; width:600px; height:300px; border:5px solid #F00}
  3. </style>
  4. <script>
  5. //图片放大
  6. function showLargeImg(thisImg)
  7. {
  8. var dialog = new parent.Z.Dialog();
  9. dialog.shadow = true;
  10. dialog.title = "图片";
  11. dialog.fixed = true;
  12. dialog.url = "showLargeImg.htm?imgpath="+thisImg.src;
  13. dialog.width = parent.Z.D.clientWidth()-200;
  14. dialog.height = parent.Z.D.clientHeight()-200;
  15. dialog.execute();
  16. dialog.$background.remove();
  17. }
  18. </script>
  19. ${zhiqim_manager_content()}
  20. <div class="z-mg5">
  21. <sapn>${orderCheckModel.getBackReason()}</sapn> <br/>
  22. </div>
  23. <#if Validates.isNotEmpty(orderCheckModel.getBackReasonPicUrl())>
  24. <div class="z-pd5">
  25. <img alt="审核退回图片" src="${orderCheckModel.getBackReasonPicUrl()}" onclick="showLargeImg(this)">
  26. </div>
  27. </#if>
  28. <br><br>
  29. <#-- 操作 -->
  30. <div class="z-absolute z-w100p z-h60 z-text-center z-bg-gray z-pd10" style="bottom:0;left:0">
  31. <button type="button" class="z-button z-large z-w100" onclick="parent.Z.Dialog.close();">关闭</button></td>
  32. </div>
  33. ${zhiqim_manager_content_end()}
  34. </html>