123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <link rel="shortcut icon" href="favicon.ico"/>
- <meta name="Generator" content="EditPlus®">
- <meta name="Author" content="">
- <meta name="Keywords" content="">
- <meta name="Description" content="">
- <title></title>
- <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
-
- <link rel="stylesheet" href="${contextPath}/WebPages_170421/css/supermarket/enterpriseList2.css">
- <script type="text/javascript" src="${contextPath}/WebPages_170421/js/jquery.js"></script>
- <script type="text/javascript" src="${contextPath}/WebPages_170421/js/supermarket/productDetails.js"></script>
- <script type="text/javascript" src="${contextPath}/WebPages_170421/js/jquery-1.11.1.min.js"></script>
- <script type="text/javascript" src="${contextPath}/WebPages_170421/js/jquery-1.4.2.js"></script>
- <script type='text/javascript'>
- function tim(){
- var date = new Date();
- var seperator1 = "-";
- var year = date.getFullYear();
- var month = date.getMonth() + 1;
- var strDate = date.getDate();
- if (month >= 1 && month <= 9) {
- month = "0" + month;
- }
- if (strDate >= 0 && strDate <= 9) {
- strDate = "0" + strDate;
- }
- var mydate=new Date();
- var myddy=mydate.getDay();
- var weekday=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"];
- document.getElementById('days').innerHTML=year+seperator1+month+seperator1+strDate+' '+weekday[myddy];
- }
- setInterval(tim,1000);
-
- </script>
- </head>
- <body>
- <div class="wrapper">
- <%include("/WebPages_170421/commonPage/menu.html"){}%>
- <div class="main">
- <div class="list">
- <div class="listtitle">
- <h2>企业列表</h2>
- </div>
- <div class="wai">
-
- <!-- <div style="width:30px; height: 264px; float:left;"></div> -->
- <%for(store in storelist){%>
- <div class="qys">
-
- <div class="qy">
- <a href="${contextPath}/Supermarket/toEnterpriseDetailsPage?id=${store.id!''}">
- <%if(store.imagePath!'' != ''){%>
- <img src="${contextPath}/imageFile/getImage?imagePath=${store.imagePath!''}">
- <%}else{%>
- <img src="${contextPath}/WebPages_170421/img/logo.gif">
- <%}%>
- <!-- <img src="img/qypic_03.jpg"> -->
- <div class="info" style="height:188px; padding-top:0;">
- <p style="height:60px; line-height:60px;">企业信息</p>
- <p style="margin-bottom:20px;">企业类型:${store.storetypeName!''}<p>
- <p style="margin-bottom:20px;">企业编码:${store.enterprisecode!''}<p>
- <p>企业地址:${store.addr!''}<p>
- </div>
- <div class="clear"></div>
- <div class="qyname">${store.name!''}</div>
- </a>
- </div>
- <%for(product in store.productlist){%>
- <%if(productLP.index == 1){%>
- <div class="cp">
- <%}else{%>
- <div class="cp">
- <%}%>
- <a href="${contextPath}/Supermarket/toProductDetailsPage?id=${product.id!''}">
- <%if(product.image1!'' != ''){%>
- <img src="${contextPath}/imageFile/getImage?imagePath=${product.image1!''}">
- <%}else{%>
- <img src="${contextPath}/WebPages_170421/img/logo.gif">
- <%}%>
- <!-- <img src="img/produc_03.jpg"> -->
- <div class="infos">
- <span style="height:35px; width:186px; padding-left:10px; line-height:16px;">${product.name!''}</span>
- <span>¥${product.price!''}<pan>
- </div>
- </a>
- </div><%}elsefor{%>
- <p style="width: 1118px; padding-left:20px; height: 600px; margin: 33px 0 0 0;">无相关产品</p>
- <%}%>
- <!-- <div class="clear"></div> -->
- </div>
- <%}elsefor{%>
- <p style="width: 1118px; padding-left:20px; height: 600px; margin: 33px 0 0 0;">无相关企业</p>
- <%}%>
- <%include("/WebPages_170421/commonPage/c_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/Supermarket/toEnterprisePage?typeCode=" + typeCode! + "&type=" + type! + "&pageNumber=", "urlParas": urlParas!''}){}%>
- <!-- <ul class="page">
- <li class="fistpage">首页</li>
- <li class="leftpage"> << </li>
- <li class="tpages" style="background:#2577e3; color:#fff;">1</li>
- <li class="tpages">2</li>
- <li class="leftpage"> >> </li>
- <li class="fistpage">末页</li>
- </ul> -->
- </div>
-
-
-
- </div>
-
- </div>
- <div class="footer">
- <div>
- <p>版权所有:吉林省计算中心</p>
- <p>技术支持:长春市福瑞科技有限公司</p>
- <p>邮编:130000</p>
- <p>传真:239823982</p>
- <p>地址:吉林省长春市朝阳区前进大街1244号</p>
- <p>电话:0431-1234567</p>
- <p>邮箱:123456@163.com</p></div>
- </div>
- </div></div>
- <script type="text/javascript">
- </script>
- </body>
- </html>
|