Commit 58921991 authored by 季圣华's avatar 季圣华
Browse files

增加单据打印的功能

parent 8ec87f06
...@@ -874,6 +874,14 @@ ...@@ -874,6 +874,14 @@
}); });
} }
}); });
//打印单据
$("#printAccountHeadShow").off("click").on("click",function(){
var tableString = $("#accountHeadDlgShow").html();
localStorage.setItem("tableString",tableString);
window.open("../../js/print/print_form.html","location:No;status:No;help:No;dialogWidth:800px;dialogHeight:600px;scroll:auto;");
});
//初始化键盘enter事件 //初始化键盘enter事件
$(document).keydown(function(event) $(document).keydown(function(event)
{ {
......
...@@ -2132,6 +2132,13 @@ ...@@ -2132,6 +2132,13 @@
} }
}); });
//打印单据
$("#printDepotHeadShow").off("click").on("click",function(){
var tableString = $("#depotHeadDlgShow").html();
localStorage.setItem("tableString",tableString);
window.open("../../js/print/print_form.html","location:No;status:No;help:No;dialogWidth:800px;dialogHeight:600px;scroll:auto;");
});
//初始化键盘enter事件 //初始化键盘enter事件
$(document).keydown(function(event){ $(document).keydown(function(event){
//兼容 IE和firefox 事件 //兼容 IE和firefox 事件
......
...@@ -3,12 +3,12 @@ ...@@ -3,12 +3,12 @@
<head> <head>
<title>数据打印</title> <title>数据打印</title>
<style type="text/css"> <style type="text/css">
body{background:white;margin:0px;padding:0px;font-size:13px;text-align:left;} body{background:white;margin:0px;padding:0px;font-size:13px;text-align:left;}
.div-title{font-size: 16pt;} .div-title{font-size: 16pt;}
.div-time{font-size: 11pt;} .div-time{font-size: 11pt;}
.pb{font-size:13px;border-collapse:collapse;} .pb{font-size:13px;border-collapse:collapse;}
.pb th{font-weight:bold;text-align:center;border:1px solid #333333;padding:2px;} .pb th{font-weight:bold;text-align:center;border:1px solid #333333;padding:2px;}
.pb td{border:1px solid #333333;padding:2px;} .pb td{border:1px solid #333333;padding:2px;}
  </style>   </style>
</head> </head>
<body> <body>
......
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>数据打印</title>
<link rel="stylesheet" type="text/css" href="/js/easyui-1.3.5/themes/default/easyui.css"/>
<link rel="stylesheet" type="text/css" href="/js/easyui-1.3.5/themes/icon.css"/>
<script src="/js/jquery-1.8.0.min.js"></script>
<script src="/js/easyui-1.3.5/jquery.easyui.min.js"></script>
<script src="/js/easyui-1.3.5/locale/easyui-lang-zh_CN.js"></script>
<style type="text/css">
body{background:white;margin:0px;padding:0px;font-size:13px;text-align:left;}
.pb th{font-weight:bold;text-align:center;border:1px solid #333333;padding:2px;}
.pb td{border:1px solid #333333;padding:2px;}
#dlg-buttons-show {
visibility: hidden;
}
  </style>
</head>
<body>
<script type="text/javascript">
var tableString = localStorage.getItem("tableString");
document.write(tableString);
window.print();
</script>
</body>
</html>
\ No newline at end of file
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
onclick="javascript:$('#accountHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#accountHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="accountHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px" <div id="accountHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">付款会员:</td> <td style="width:60px;">付款会员:</td>
...@@ -146,5 +146,10 @@ ...@@ -146,5 +146,10 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printAccountHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelAccountHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#accountHeadDlgShow').dialog('close')">取消</a>
</div>
</body> </body>
</html> </html>
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
onclick="javascript:$('#accountHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#accountHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="accountHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px" <div id="accountHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">经手人:</td> <td style="width:60px;">经手人:</td>
...@@ -152,5 +152,10 @@ ...@@ -152,5 +152,10 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printAccountHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelAccountHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#accountHeadDlgShow').dialog('close')">取消</a>
</div>
</body> </body>
</html> </html>
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
onclick="javascript:$('#accountHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#accountHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="accountHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px" <div id="accountHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">往来单位:</td> <td style="width:60px;">往来单位:</td>
...@@ -155,5 +155,10 @@ ...@@ -155,5 +155,10 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printAccountHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelAccountHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#accountHeadDlgShow').dialog('close')">取消</a>
</div>
</body> </body>
</html> </html>
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
onclick="javascript:$('#accountHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#accountHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="accountHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px" <div id="accountHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">往来单位:</td> <td style="width:60px;">往来单位:</td>
...@@ -153,5 +153,10 @@ ...@@ -153,5 +153,10 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printAccountHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelAccountHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#accountHeadDlgShow').dialog('close')">取消</a>
</div>
</body> </body>
</html> </html>
...@@ -106,7 +106,7 @@ ...@@ -106,7 +106,7 @@
onclick="javascript:$('#accountHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#accountHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="accountHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px" <div id="accountHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">付款单位:</td> <td style="width:60px;">付款单位:</td>
...@@ -147,5 +147,10 @@ ...@@ -147,5 +147,10 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printAccountHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelAccountHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#accountHeadDlgShow').dialog('close')">取消</a>
</div>
</body> </body>
</html> </html>
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
onclick="javascript:$('#accountHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#accountHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="accountHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px" <div id="accountHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">收款单位:</td> <td style="width:60px;">收款单位:</td>
...@@ -146,5 +146,10 @@ ...@@ -146,5 +146,10 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printAccountHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelAccountHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#accountHeadDlgShow').dialog('close')">取消</a>
</div>
</body> </body>
</html> </html>
...@@ -100,7 +100,7 @@ ...@@ -100,7 +100,7 @@
onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:70px" <div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:70px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">单据日期:</td> <td style="width:60px;">单据日期:</td>
...@@ -131,5 +131,10 @@ ...@@ -131,5 +131,10 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printDepotHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelDepotHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#depotHeadDlgShow').dialog('close')">取消</a>
</div>
</body> </body>
</html> </html>
\ No newline at end of file
...@@ -99,7 +99,7 @@ ...@@ -99,7 +99,7 @@
onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:70px" <div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:70px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">单据日期:</td> <td style="width:60px;">单据日期:</td>
...@@ -130,5 +130,10 @@ ...@@ -130,5 +130,10 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printDepotHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelDepotHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#depotHeadDlgShow').dialog('close')">取消</a>
</div>
</body> </body>
</html> </html>
\ No newline at end of file
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:70px" <div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:70px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">单据日期:</td> <td style="width:60px;">单据日期:</td>
...@@ -136,5 +136,10 @@ ...@@ -136,5 +136,10 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printDepotHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelDepotHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#depotHeadDlgShow').dialog('close')">取消</a>
</div>
</body> </body>
</html> </html>
\ No newline at end of file
...@@ -108,7 +108,7 @@ ...@@ -108,7 +108,7 @@
onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:70px" <div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:70px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">供应商:</td> <td style="width:60px;">供应商:</td>
...@@ -141,5 +141,10 @@ ...@@ -141,5 +141,10 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printDepotHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelDepotHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#depotHeadDlgShow').dialog('close')">取消</a>
</div>
</body> </body>
</html> </html>
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:70px" <div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:70px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">客户:</td> <td style="width:60px;">客户:</td>
...@@ -135,5 +135,10 @@ ...@@ -135,5 +135,10 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printDepotHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelDepotHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#depotHeadDlgShow').dialog('close')">取消</a>
</div>
</body> </body>
</html> </html>
\ No newline at end of file
...@@ -150,7 +150,7 @@ ...@@ -150,7 +150,7 @@
onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px" <div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">供应商:</td> <td style="width:60px;">供应商:</td>
...@@ -221,6 +221,11 @@ ...@@ -221,6 +221,11 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printDepotHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelDepotHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#depotHeadDlgShow').dialog('close')">取消</a>
</div>
<div id="depotHeadAccountDlg" class="easyui-dialog" style="width:380px;padding:10px 20px;top:80px" <div id="depotHeadAccountDlg" class="easyui-dialog" style="width:380px;padding:10px 20px;top:80px"
closed="true" modal="true" buttons="#accountDlgButtons" cache="false" collapsible="false" closable="true"> closed="true" modal="true" buttons="#accountDlgButtons" cache="false" collapsible="false" closable="true">
<table class="account-dlg"> <table class="account-dlg">
......
...@@ -152,7 +152,7 @@ ...@@ -152,7 +152,7 @@
onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px" <div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:20px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">供应商:</td> <td style="width:60px;">供应商:</td>
...@@ -224,6 +224,11 @@ ...@@ -224,6 +224,11 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printDepotHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelDepotHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#depotHeadDlgShow').dialog('close')">取消</a>
</div>
<div id="depotHeadAccountDlg" class="easyui-dialog" style="width:380px;padding:10px 20px;top:80px" <div id="depotHeadAccountDlg" class="easyui-dialog" style="width:380px;padding:10px 20px;top:80px"
closed="true" modal="true" buttons="#accountDlgButtons" cache="false" collapsible="false" closable="true"> closed="true" modal="true" buttons="#accountDlgButtons" cache="false" collapsible="false" closable="true">
<table class="account-dlg"> <table class="account-dlg">
......
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:60px" <div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:60px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;">供应商:</td> <td style="width:60px;">供应商:</td>
...@@ -142,6 +142,11 @@ ...@@ -142,6 +142,11 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printDepotHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelDepotHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#depotHeadDlgShow').dialog('close')">取消</a>
</div>
<div id="depotHeadAccountDlg" class="easyui-dialog" style="width:380px;padding:10px 20px;top:80px" <div id="depotHeadAccountDlg" class="easyui-dialog" style="width:380px;padding:10px 20px;top:80px"
closed="true" modal="true" buttons="#accountDlgButtons" cache="false" collapsible="false" closable="true"> closed="true" modal="true" buttons="#accountDlgButtons" cache="false" collapsible="false" closable="true">
<table class="account-dlg"> <table class="account-dlg">
......
...@@ -141,7 +141,7 @@ ...@@ -141,7 +141,7 @@
onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:50px" <div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:50px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;height:50px;">会员卡号:</td> <td style="width:60px;height:50px;">会员卡号:</td>
...@@ -207,5 +207,10 @@ ...@@ -207,5 +207,10 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printDepotHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelDepotHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#depotHeadDlgShow').dialog('close')">取消</a>
</div>
</body> </body>
</html> </html>
\ No newline at end of file
...@@ -145,7 +145,7 @@ ...@@ -145,7 +145,7 @@
onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a> onclick="javascript:$('#depotHeadDlg').dialog('close')">取消</a>
</div> </div>
<div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:50px" <div id="depotHeadDlgShow" class="easyui-dialog" style="width:1200px;padding:10px 20px;top:50px"
closed="true" modal="true" cache="false" collapsible="false" closable="true"> closed="true" buttons="#dlg-buttons-show" modal="true" cache="false" collapsible="false" closable="true">
<table> <table>
<tr> <tr>
<td style="width:60px;height:50px;">会员卡号:</td> <td style="width:60px;height:50px;">会员卡号:</td>
...@@ -212,6 +212,11 @@ ...@@ -212,6 +212,11 @@
</tr> </tr>
</table> </table>
</div> </div>
<div id="dlg-buttons-show">
<a href="javascript:void(0)" id="printDepotHeadShow" class="easyui-linkbutton" iconCls="icon-ok">打印</a>
<a href="javascript:void(0)" id="cancelDepotHeadShow" class="easyui-linkbutton" iconCls="icon-cancel"
onclick="javascript:$('#depotHeadDlgShow').dialog('close')">取消</a>
</div>
<div id="depotHeadAccountDlg" class="easyui-dialog" style="width:380px;padding:10px 20px;top:80px" <div id="depotHeadAccountDlg" class="easyui-dialog" style="width:380px;padding:10px 20px;top:80px"
closed="true" modal="true" buttons="#accountDlgButtons" cache="false" collapsible="false" closable="true"> closed="true" modal="true" buttons="#accountDlgButtons" cache="false" collapsible="false" closable="true">
<table class="account-dlg"> <table class="account-dlg">
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment