支持IE、跨域(FRAME)的POPUP菜单栏

支持IE、跨域(FRAME)的POPUP菜单栏

一直研究B/S结构的东东,菜单栏一直有欠缺。原来有见过一个模仿的比较好的,不过不是POPUP方式的,不能跨域(FRAME),所以没有办法,只有继续研究。

一次看到宝玉的无限级菜单雏形,研究了一下,简单改了改,实现了显示子菜单的功能,然后偶又加上了对菜单点击显示的逻辑判断,现在大概的一个比较强大的POPUP菜单栏就出来了。

效果如下:

以下是代码部分:

<HTML>
<HEAD>
<TITLE>MenuBar</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<META NAME="Author" CONTENT="v-ec.com,dh20156(风之石),dh20156@126.com">
<script language="javascript">
<!--Pop Menu-->
var pops = new Array();
function CreatePopup(degree)
{
    if (degree < 0)
        return null;
    if (pops[degree] != null)
        return pops[degree];

    if (degree == 0)
        pops[0] = window.createPopup();
    else{
        if (pops[degree - 1] == null)
            pops[degree - 1] = CreatePopup(degree - 1)
        pops[degree] = pops[degree - 1].document.parentWindow.createPopup();
    }
    pops[degree].document.body.setAttribute("degree", degree);
    return pops[degree];
}

CreatePopup(1); //上面这段来自宝玉的POPUP菜单雏形,用于显示多级菜单。

var hp;
function loadMenu(i,oct,l,t,w,h,ps)
{   clearTimeout(hp);
    var lefter2 = l;
    var topper2 = t;
    var h=eval(h);
    var i2=eval(i);
    var oct=eval(oct);
    pops[ps].document.body.innerHTML = oct.innerHTML;
    pops[ps].document.body.style.border = "1px solid #C3C4BE";
    pops[ps].show(lefter2, topper2, w, h, i2);
}

var objflag = "";
var flag = 0;
function showMenu(obj,act,topobj,i,oct,l,t,w,h,ps){ //对菜单点击显示的逻辑判断

 switch(act){
  case "over":
   if(flag==0){
    obj.className = "btnover"
   }else{
    if(objflag!=topobj){
     objflag.className = "";
     obj.className = "btndown"
     loadMenu(i,oct,l,t,w,h,ps)
     flag = 1;
     pops[1].hide();
    }else{
     if(topobj!=i){
      loadMenu(i,oct,l,t,w,h,ps)
     }
    }
   }
   break;
  case "out":
   if(flag==0){
    obj.className = "";
   }else{
    objflag = topobj;
   }
   break;
  case "down":
   if(flag==0){
    if(objflag!=topobj){
     obj.className = "btndown";
     loadMenu(i,oct,l,t,w,h,ps)
     flag = 1;
    }
   }else{
    if(topobj==i){
     obj.className = "";
     pops[ps].hide();
     objflag = "";
     flag = 0;
    }
   }
   break;
  default:break;
 }
}
function clearpop(){
 if(objflag!=null && objflag!=""){
  objflag.className = "";
  objflag = "";
  flag = 0;
 }
}
window.document.onclick = clearpop;
<!--end-->
</script>
<style>
.handbtn {
BACKGROUND: buttonface; BORDER-BOTTOM: buttonshadow 1px solid; BORDER-LEFT: buttonhighlight 1px solid; BORDER-RIGHT: buttonshadow 1px solid; BORDER-TOP: buttonhighlight 1px solid; HEIGHT: 18px; WIDTH: 3px
}
.handbtn2 {
BACKGROUND: buttonface; BORDER-BOTTOM: buttonshadow 1px solid; BORDER-LEFT: buttonhighlight 1px solid; BORDER-RIGHT: buttonshadow 1px solid; BORDER-TOP: buttonhighlight 1px solid; HEIGHT: 35px; WIDTH: 3px
}
.sepbtn {
BORDER-LEFT: buttonshadow 1px solid; BORDER-RIGHT: buttonhighlight 1px solid; HEIGHT: 18px; WIDTH: 2px
}
.sepbtn2 {
BORDER-LEFT: buttonshadow 1px solid; BORDER-RIGHT: buttonhighlight 1px solid; HEIGHT: 35px; WIDTH: 2px
}
.btnover {
BORDER-BOTTOM: #808080 1px solid; BORDER-LEFT: #ffffff 1px solid; BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #ffffff 1px solid; CURSOR: default
}
.btndown {
BORDER-BOTTOM: #ffffff 1px solid; BORDER-LEFT: #808080 1px solid; BORDER-RIGHT: #ffffff 1px solid; BORDER-TOP: #808080 1px solid; CURSOR: default; position: relative; top: 1px; left: 1px; clip: rect()
}
.outdiv {
BORDER-BOTTOM: buttonhighlight 1px solid; BORDER-LEFT: buttonshadow 1px solid; BORDER-RIGHT: buttonhighlight 1px solid; BORDER-TOP: buttonshadow 1px solid; WIDTH: 100%; border: none
}
.indiv {
Background:url("images/bg_menu.gif");Background:#ECE9D8;BORDER-BOTTOM: buttonshadow 1px solid; BORDER-LEFT: buttonhighlight 1px solid; BORDER-RIGHT: buttonshadow 1px solid; BORDER-TOP: buttonhighlight 1px solid;
}
.indiv2 {
BORDER-BOTTOM: buttonshadow 1px solid; BORDER-LEFT: buttonhighlight 1px solid; BORDER-RIGHT: buttonshadow 1px solid; BORDER-TOP: buttonhighlight 1px solid;
FILTER:progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr='#ffffff',endColorStr='#DCE4F1');
}
TD {
FONT-SIZE: 12px
}
</style>
</HEAD>
<BODY bgcolor="white" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" scroll="no" style="border:none" οncοntextmenu="return false" onselectstart="return false">
<TABLE border=0 cellPadding=0 cellSpacing=0 class=indiv width="100%">
  <TR>
    <TD width="100%">
      <TABLE border=0 cellPadding=0 cellSpacing=0 height=24>
        <TR>
          <TD width=2></TD>
          <TD width=1><SPAN class=handbtn></SPAN></TD>

          <TD align=middle width=60>
            <TABLE border=0 cellPadding=2 cellSpacing=0 width="96%">
              <TR>
                <TD name="xt" id="xt" align=middle height=20 οnmοuseοut="showMenu(this,'out',this,this,rmxt,0,21,162,136,0);" οnmοuseοver="showMenu(this,'over',this,this,rmxt,0,21,162,136,0);" οnmοusedοwn="showMenu(this,'down',this,this,rmxt,0,21,162,136,0);">系统(<u>S</u>)</TD>
              </TR>
            </TABLE>
          </TD>

          <TD align=middle width=70>
            <TABLE border=0 cellPadding=2 cellSpacing=0 width="96%">
              <TR>
                <TD name="kh" id="kh" align=middle height=20 οnmοuseοut="showMenu(this,'out',this,this,rmkh,0,21,162,24,0);" οnmοuseοver="showMenu(this,'over',this,this,rmkh,0,21,162,24,0);" οnclick="showMenu(this,'down',this,this,rmkh,0,21,162,24,0);">客户(<u>C</u>)</TD>
              </TR>
            </TABLE>
          </TD>

          <TD align=middle width=70>
            <TABLE border=0 cellPadding=2 cellSpacing=0 width="96%">
              <TR>
                <TD name="gs" id="gs" align=middle height=20 οnmοuseοut="showMenu(this,'out',this,this,rmgs,0,21,162,44,0);" οnmοuseοver="showMenu(this,'over',this,this,rmgs,0,21,162,44,0);" οnclick="showMenu(this,'down',this,this,rmgs,0,21,162,44,0);">公司(<u>F</u>)</TD>
              </TR>
            </TABLE>
          </TD>

          <TD align=middle width=70>
            <TABLE border=0 cellPadding=2 cellSpacing=0 width="96%">
              <TR>
                <TD name="cp" id="cp" align=middle height=20 οnmοuseοut="showMenu(this,'out',this,this,rmcp,0,21,162,224,0);" οnmοuseοver="showMenu(this,'over',this,this,rmcp,0,21,162,224,0);" οnclick="showMenu(this,'down',this,this,rmcp,0,21,162,224,0);">仓库(<u>P</u>)</TD>
              </TR>
            </TABLE>
          </TD>

          <TD align=middle width=70>
            <TABLE border=0 cellPadding=2 cellSpacing=0 width="96%">
              <TR>
                <TD name="mj" id="mj" align=middle height=20 οnmοuseοut="showMenu(this,'out',this,this,rmmj,0,21,162,24,0);" οnmοuseοver="showMenu(this,'over',this,this,rmmj,0,21,162,24,0);" οnclick="showMenu(this,'down',this,this,rmmj,0,21,162,24,0);">模具(<u>M</u>)</TD>
              </TR>
            </TABLE>
          </TD>

          <TD align=middle width=70>
            <TABLE border=0 cellPadding=2 cellSpacing=0 width="96%">
              <TR>
                <TD name="cg" id="cg" align=middle height=20 οnmοuseοut="showMenu(this,'out',this,this,rmcg,0,21,162,84,0);" οnmοuseοver="showMenu(this,'over',this,this,rmcg,0,21,162,84,0);" οnclick="showMenu(this,'down',this,this,rmcg,0,21,162,84,0);">采购(<u>B</u>)</TD>
              </TR>
            </TABLE>
          </TD>

          <TD align=middle width=70>
            <TABLE border=0 cellPadding=2 cellSpacing=0 width="96%">
              <TR>
                <TD name="xs" id="xs" align=middle height=20 οnmοuseοut="showMenu(this,'out',this,this,rmxs,0,21,162,84,0);" οnmοuseοver="showMenu(this,'over',this,this,rmxs,0,21,162,84,0);" οnclick="showMenu(this,'down',this,this,rmxs,0,21,162,84,0);">销售(<u>V</u>)</TD>
              </TR>
            </TABLE>
          </TD>

          <TD align=middle width=60>
            <TABLE border=0 cellPadding=2 cellSpacing=0 width="96%">
              <TR>
                <TD name="bb" id="bb" align=middle height=20 οnmοuseοut="showMenu(this,'out',this,this,rmbb,0,21,162,133,0);" οnmοuseοver="showMenu(this,'over',this,this,rmbb,0,21,162,133,0);" οnclick="showMenu(this,'down',this,this,rmbb,0,21,162,133,0);">报表(<u>R</u>)</TD>
              </TR>
            </TABLE>
          </TD>

          <TD align=middle width=60>
            <TABLE border=0 cellPadding=2 cellSpacing=0 width="96%">
              <TR>
                <TD name="bz" id="bz" align=middle height=20 οnmοuseοut="showMenu(this,'out',this,this,rmbz,0,21,162,65,0);" οnmοuseοver="showMenu(this,'over',this,this,rmbz,0,21,162,65,0);" οnclick="showMenu(this,'down',this,this,rmbz,0,21,162,65,0);">帮助(<u>H</u>)</TD>
              </TR>
            </TABLE>
          </TD>

          <TD> &nbsp;</TD>
        </TR>
      </TABLE>
    </TD>
    <TD>&nbsp;</TD>
  </TR>
</TABLE>


<DIV ID="rmxt" STYLE="display:none">
<DIV STYLE="position:relative; top:0; left:0; border:1px solid #cccccc; background:#424142; border-left:1px solid white;border-top:1px solid white; border-right:1px solid #868781; border-bottom:1px solid #868781; height:20px; width:160px;">
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();parent.showModalDialog('data/datakj.asp','datamanage','dialogwidth:400px;dialogheight:255px;help:no;status:no');" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">数据管理</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();parent.showModalDialog('user/userlist_m.asp','usermanage','dialogwidth:650px;dialogheight:350px;help:no;status:no');" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">用户管理</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();parent.showModalDialog('user/modpwdkj.asp','usermanage','dialogwidth:400px;dialogheight:220px;help:no;status:no');" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">修改口令</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();parent.showModalDialog('global/global_m.asp','global_config','dialogwidth:400px;dialogheight:300px;help:no;status:no');" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">帐套选项</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; padding:2px; background:#FCFDF8; border-right:1px solid white; border-left:1px solid white; cursor:default;" align="center"><img src="spacer.gif" _fcksavedurl=""spacer.gif"" width="98%" height="1" style="color:#ffffff; border-top-width: 1px;border-top-style: solid;border-top-color: #C2C3BD;"></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();parent.loginwin();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">切换用户</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; padding:2px; background:#FCFDF8; border-right:1px solid white; border-left:1px solid white; cursor:default;" align="center"><img src="spacer.gif" width="98%" height="1" style="color:#ffffff; border-top-width: 1px;border-top-style: solid;border-top-color: #C2C3BD;"></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();parent.tc();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">退出系统</td><td width="15"></td></tr></table></DIV>
</DIV>

<DIV ID="rmkh" STYLE="display:none">
<DIV STYLE="position:relative; top:0; left:0; border:1px solid #cccccc; background:#424142; border-left:1px solid white;border-top:1px solid white; border-right:1px solid #868781; border-bottom:1px solid #868781; height:20px; width:160px;">
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();top.middlebar.frames['mainFrame'].location='customer/customer_m.asp';" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">客户管理</td><td width="15"></td></tr></table></DIV>
</DIV>

<DIV ID="rmgs" STYLE="display:none">
<DIV STYLE="position:relative; top:0; left:0; border:1px solid #cccccc; background:#424142; border-left:1px solid white;border-top:1px solid white; border-right:1px solid #868781; border-bottom:1px solid #868781; height:20px; width:160px;">
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();top.middlebar.frames['mainFrame'].location='com/compart/compart_m.asp';" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">部门管理</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();top.middlebar.frames['mainFrame'].location='com/employee/employee_m.asp';" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">员工管理</td><td width="15"></td></tr></table></DIV>
</DIV>

<DIV ID="rmcp" STYLE="display:none">
<DIV STYLE="position:relative; top:0; left:0; border:1px solid #cccccc; background:#424142; border-left:1px solid white;border-top:1px solid white; border-right:1px solid #868781; border-bottom:1px solid #868781; height:20px; width:160px;">
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">供应商资料</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">仓库资料</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">货品类别</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">货品资料</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">分仓库存</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">产品进仓</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">产品领料</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">产品退料</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">存货调价</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">组装拆卸</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">库存盘点</td><td width="15"></td></tr></table></DIV>
</DIV>

<DIV ID="rmmj" STYLE="display:none">
<DIV STYLE="position:relative; top:0; left:0; border:1px solid #cccccc; background:#424142; border-left:1px solid white;border-top:1px solid white; border-right:1px solid #868781; border-bottom:1px solid #868781; height:20px; width:160px;">
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">模具管理</td><td width="15"></td></tr></table></DIV>
</DIV>

<DIV ID="rmcg" STYLE="display:none">
<DIV STYLE="position:relative; top:0; left:0; border:1px solid #cccccc; background:#424142; border-left:1px solid white;border-top:1px solid white; border-right:1px solid #868781; border-bottom:1px solid #868781; height:20px; width:160px;">
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">采购订单</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">采购收货</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">采购付款</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">采购退货</td><td width="15"></td></tr></table></DIV>
</DIV>

<DIV ID="rmxs" STYLE="display:none">
<DIV STYLE="position:relative; top:0; left:0; border:1px solid #cccccc; background:#424142; border-left:1px solid white;border-top:1px solid white; border-right:1px solid #868781; border-bottom:1px solid #868781; height:20px; width:160px;">
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">销售订单</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">销售开单</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">销售收款</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">销售退货</td><td width="15"></td></tr></table></DIV>
</DIV>

<DIV ID="rmbb" STYLE="display:none">
<DIV STYLE="position:relative; top:0; left:0; border:1px solid #cccccc; background:#424142; border-left:1px solid white;border-top:1px solid white; border-right:1px solid #868781; border-bottom:1px solid #868781; height:20px; width:160px;">
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();top.open('print/ct/main_ct.asp','print','menubar=no,toolbar=no,status=no,resizable=no');" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">客户报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();top.open('print/employee/main_employee.asp','print','menubar=no,toolbar=no,status=no,resizable=no');" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">员工报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();top.open('print/mould/main_mould.asp','print','menubar=no,toolbar=no,status=no,resizable=no');" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">模具报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; padding:2px; background:#FCFDF8; border-right:1px solid white; border-left:1px solid white; cursor:default;" align="center"><img src="spacer.gif" width="98%" height="1" style="color:#ffffff; border-top-width: 1px;border-top-style: solid;border-top-color: #C2C3BD;"></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D';parent.showMenu(this,'over',parent.bb,this.parentElement,subrpck,155,67,162,224,1);" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white';" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">仓库报表</td><td width="15"><font style="font-size:9px;font-family:webdings;">4</font></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D';parent.showMenu(this,'over',parent.bb,this.parentElement,subrpcg,155,88,162,84,1);" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">采购报表</td><td width="15"><font style="font-size:9px;font-family:webdings;">4</font></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D';parent.showMenu(this,'over',parent.bb,this.parentElement,subrpxs,155,108,162,84,1);" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">销售报表</td><td width="15"><font style="font-size:9px;font-family:webdings;">4</font></td></tr></table></DIV>
</DIV>

<DIV ID="rmbz" STYLE="display:none">
<DIV STYLE="position:relative; top:0; left:0; border:1px solid #cccccc; background:#424142; border-left:1px solid white;border-top:1px solid white; border-right:1px solid #868781; border-bottom:1px solid #868781; height:20px; width:160px;">
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">帮助主题</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">技术支持</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">关于...</td><td width="15"></td></tr></table></DIV>
</DIV>

<DIV ID="subrpck" STYLE="display:none">
<DIV STYLE="position:relative; top:0; left:0; border:1px solid #cccccc; background:#424142; border-left:1px solid white;border-top:1px solid white; border-right:1px solid #868781; border-bottom:1px solid #868781; height:20px; width:160px;">
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">供应商报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">货品资料报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">库存明细报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">入库汇总报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">领料汇总报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">退料汇总报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">仓库调拨汇总报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">库存变动汇总报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">存货调价汇总报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">组装拆卸报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">库存盘点报表</td><td width="15"></td></tr></table></DIV>
</DIV>

<DIV ID="subrpcg" STYLE="display:none">
<DIV STYLE="position:relative; top:0; left:0; border:1px solid #cccccc; background:#424142; border-left:1px solid white;border-top:1px solid white; border-right:1px solid #868781; border-bottom:1px solid #868781; height:20px; width:160px;">
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">采购订单汇总报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">采购收货汇总报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">采购付款汇总报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">采购退货汇总报表</td><td width="15"></td></tr></table></DIV>
</DIV>

<DIV ID="subrpxs" STYLE="display:none">
<DIV STYLE="position:relative; top:0; left:0; border:1px solid #cccccc; background:#424142; border-left:1px solid white;border-top:1px solid white; border-right:1px solid #868781; border-bottom:1px solid #868781; height:20px; width:160px;">
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">销售订单汇总报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">销售收货汇总报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">销售付款汇总报表</td><td width="15"></td></tr></table></DIV>
<DIV STYLE="position:relative; top:0; left:0; background:#FCFDF8; border:1px solid white; height:20px; color:black; font-family:verdana; padding:2px; font-size:8pt; cursor:default" οnmοuseοver="this.style.background='#C1D2EE';this.style.border='1px solid #47678D'" οnmοuseοut="this.style.background='#FCFDF8';this.style.border='1px solid white'" οnclick="top.pops[0].hide();top.clearpop();" onContextMenu="return false">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:0px;"><tr><td width="20"></td><td style="font-size:8pt;">销售退货汇总报表</td><td width="15"></td></tr></table></DIV>
</DIV>
</BODY>
</HTML>

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 15
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 15
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值