62 行
2.4 KiB
Plaintext
62 行
2.4 KiB
Plaintext
<style>
|
|
body{ text-align:center}
|
|
.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()}
|
|
<input type="hidden" id="designId" name="designId" value="${order.getDesignId()}">
|
|
<table class="z-table z-bordered-line z-pd6 z-bg-white z-text-left z-mg-b10">
|
|
<tr class="z-h40">
|
|
<td width="100" align="right">设计订单:</td>
|
|
<td width="160"><span id="designId" value="${order.getDesignId()}">${order.getDesignId()}</span></td>
|
|
<td width="100" align="right">组织:</td>
|
|
<td width="160"><span id="orgId" value="${order.getOrgId()}">${ZmrOrgDao.getOrgName(request, order.getOrgId())}</span></td>
|
|
<td width="100" align="right">设计师:</td>
|
|
<td width="100"><span id="designer" value="${order.getDesigner()}">${order.getDesigner()}</span></td>
|
|
</tr>
|
|
<tr class="z-h40">
|
|
<td align="right">店铺名称:</td>
|
|
<td><span id="shopNick" value="${order.getShopNick()}">${order.getShopNick()}</span></td>
|
|
<td align="right">旺旺号:</td>
|
|
<td><span id="buyerNick" value="${order.getBuyerNick()}">${order.getBuyerNick()}</span></td>
|
|
<td width="100" align="right">违规扣分:</td>
|
|
<td>-${record.getScore()}</td>
|
|
</tr>
|
|
<tr class="z-h40">
|
|
<td align="right">产品信息:</td>
|
|
<td colspan="5">${order.getOrderText()}</td>
|
|
</tr>
|
|
<tr class="z-h40">
|
|
<td width="150" align="right">质检违规原因:</td>
|
|
<td colspan="5">${record.getReason()}</td>
|
|
</tr>
|
|
<tr class="z-h40">
|
|
<td width="150" align="right">质检违规描述:</td>
|
|
<td colspan="5">${record.getDescription()}</td>
|
|
</tr>
|
|
</table>
|
|
<div class="z-pd5">
|
|
<img alt="质检违规证据图" src="/${atta.getAttaId()}-0-qcImg" onclick="showLargeImg(this)">
|
|
</div>
|
|
<div style="position:fixed;bottom:0px;height:50px;width:100%;background-color:#EFEFEF;border-top: solid 1px #ededed">
|
|
<div class="z-mg-t5">
|
|
<button type="button" class="z-button z-large z-blue z-w100" onclick="parent.Z.Dialog.close();">关闭</button></td>
|
|
</div>
|
|
</div>
|
|
${zhiqim_manager_content_end()}
|