38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
<style>
|
|
.div{ margin:0 auto; width:600px; height:300px; border:5px solid #F00}
|
|
</style>
|
|
<script>
|
|
|
|
//图片放大
|
|
function showLargeImg(thisImg)
|
|
{
|
|
var dialog = new parent.Z.Dialog();
|
|
dialog.shadow = true;
|
|
dialog.title = "图片";
|
|
dialog.fixed = true;
|
|
|
|
dialog.url = "showLargeImg.htm?imgpath="+thisImg.src;
|
|
dialog.width = parent.Z.D.clientWidth()-200;
|
|
dialog.height = parent.Z.D.clientHeight()-200;
|
|
dialog.execute();
|
|
dialog.$background.remove();
|
|
}
|
|
</script>
|
|
|
|
${zhiqim_manager_content()}
|
|
<div class="z-mg5">
|
|
<sapn>${orderCheckModel.getBackReason()}</sapn> <br/>
|
|
</div>
|
|
<#if Validates.isNotEmpty(orderCheckModel.getBackReasonPicUrl())>
|
|
<div class="z-pd5">
|
|
<img alt="审核退回图片" src="${orderCheckModel.getBackReasonPicUrl()}" onclick="showLargeImg(this)">
|
|
</div>
|
|
</#if>
|
|
<br><br>
|
|
|
|
<#-- 操作 -->
|
|
<div class="z-absolute z-w100p z-h60 z-text-center z-bg-gray z-pd10" style="bottom:0;left:0">
|
|
<button type="button" class="z-button z-large z-w100" onclick="parent.Z.Dialog.close();">关闭</button></td>
|
|
</div>
|
|
${zhiqim_manager_content_end()}
|
|
</html> |