123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>mainBody</title>
- <script type="text/javascript" src="views/mobile/weixin/mainMobileMenu.js"></script>
- <style type="text/css">
- #menuBody{
- height:100%;
- width:130px;
- background-color:white;
- }
- .menutitle{
- height:40px;
- width:100%;
- padding:15px 0px 0px 0px;
- }
- img{
- margin-right:5px;
- }
- li.firstLi{
- padding:30px 0px 15px 50px;
- float:left;
- width:80px;
- height:30px;
- background-color:white;
- }
- li.checkLi{
- padding:30px 0px 15px 50px;
- float:left;
- width:80px;
- height:30px;
- background-color:#00a7ff;
- color:white;
- text-shadow: 0 0 0;
- }
- li.SecoundLi{
- padding:15px 0px 15px 60px;
- float:left;
- width:70px;
- height:20px;
- list-style: outside none none;
- background:url("css/jqm/images/bt/ejbt1.png") no-repeat scroll 10% 50% transparent;
- background-color:#e4e4e4;
- }
- li.checkLi2{
- padding:15px 0 15px 60px;
- float:left;
- width:70px;
- height:20px;
- background:url("css/jqm/images/bt/ejbt2.png") no-repeat scroll 10% 50% transparent;
- background-color:#00a7ff;
- color:white;
- text-shadow: 0 0 0;
- }
- li.syNotCheck {
- background:url("css/jqm/images/bt/zy1.png") no-repeat scroll 10% 50% transparent;
- }
- li.xxNotCheck {
- background:url("css/jqm/images/bt/xx1.png") no-repeat scroll 10% 50% transparent;
- }
- li.znsNotCheck {
- background:url("css/jqm/images/bt/cds1.png") no-repeat scroll 10% 50% transparent;
- }
- li.ptsNotCheck {
- background:url("css/jqm/images/bt/pts1.png") no-repeat scroll 10% 50% transparent;
- }
- li.syCheck {
- background:url("css/jqm/images/bt/zy2.png") no-repeat scroll 10% 50% transparent;
- background-color:#00a7ff;
- }
- li.xxCheck {
- background:url("css/jqm/images/bt/xx2.png") no-repeat scroll 10% 50% transparent;
- background-color:#00a7ff;
- }
- li.ptsCheck {
- background:url("css/jqm/images/bt/pts2.png") no-repeat scroll 10% 50% transparent;
- background-color:#00a7ff;
- }
- </style>
- </head>
- <body>
- <div id="menuBody">
- <div class="menutitle"><center><img src="css/jqm/images/user-black.png" />$!yhxm</center></div>
- <div id="menuFir">
- <ul>
- <li class="firstLi" onclick="menuLiClick('sy');" flag="sy">主页</li>
- #if("$!kz_xxtz_mk" == "true")
- <li class="firstLi" onclick="menuLiClick('xx', '', '$!xxUrl');" flag="xx">消息</li>
- #end
- #if("$!kz_mcsj_mk" == "true")
- <li class="firstLi" onclick="menuLiClick('zns');" flag="zns">测定舍</li>
- #end
- <li>
- <div style="display:none;" id="zns">
- <ul>
- #if("$!mcsj_kz_yzgk" == "true")
- <li class="SecoundLi" onclick="menuLiClick('yzgk', '', '$!yzgkUrl');" flag="yzgk">养殖概况</li>
- #end
- #if("$!mcsj_kz_qtsz" == "true")
- <li class="SecoundLi" onclick="menuLiClick('qtsz', '', '$!qtszUrl');" flag="qtsz">群体生长</li>
- #end
- #if("$!mcsj_kz_slxh" == "true")
- <li class="SecoundLi" onclick="menuLiClick('slxh', '', '$!slxhUrl');" flag="slxh">饲料消耗</li>
- #end
- #if("$!mcsj_kz_snhj" == "true")
- <li class="SecoundLi" onclick="menuLiClick('snhj', '', '$!snhjUrl');" flag="snhj">舍内环境</li>
- #end
- </ul>
- </div>
- </li>
- #if("$!kz_ptssj_mk" == "true")
- <li class="firstLi" onclick="menuLiClick('pts');" flag="pts">普通舍</li>
- #end
- </ul>
- </div>
- </div>
- </body>
- </html>
|