CINXE.COM

企业标准信息公共服务平台

<!DOCTYPE HTML> <html> <head> <title>企业标准信息公共服务平台</title> <link href="/assets/css/bootstrap.min.css" rel="stylesheet" /> <link href="/assets/css/font-awesome.min.css" rel="stylesheet" /> <link href="/assets/css/style.css" rel="stylesheet" /> <link href="/assets/css/basic.css" rel="stylesheet" /> <!-- Custom Theme files --> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <script src="/assets/js/jquery-1.11.1.min.js"></script> <script src="/assets/js/echarts.min.js"></script> <script src="/assets/js/china.js"></script> <script src="/assets/js/bootstrap.min.js"></script> <!-- 弹出警示框 --> <link href="/assets/js/sweetalert2/sweetalert2.min.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="/assets/js/sweetalert2/sweetalert2.min.js"></script> <script type="text/javascript" src="/assets/js/sweetalert2/alertCommon.js"></script> <!-- 弹出警示框 --> <script> $(function(){ $('.dropdown-toggle').dropdown(); $('.accordion .item .header').click(function() { $('.accordion .item').removeClass('active'); $(this).parent('.item').addClass('active'); }) $('.carousel').carousel({ interval: 8000 }) // 搜索热点滚动 var commandTop = 0 function commandScroll() { commandTop++ if (($('#search-command .cnt').height() / 30) <= commandTop) { commandTop = 0 } console.log("commandTop==="+commandTop) $('#search-command .cnt').css('margin-top', '-'+commandTop*30+'px') } setInterval(commandScroll, 3000); $('.hasTabs .tabs .item').click(function() { var text= $(this).text(); $('.hasTabs .item').removeClass('active'); $(this).addClass('active'); if(text == '标准讲堂'){ $("#classroom").show(); $("#ques").hide(); }else{ $("#classroom").hide(); $("#ques").show(); } }) $('.jdjc ul li').click(function() { var text= $(this).text(); $('.jdjc li').removeClass('active'); $(this).addClass('active'); if(text.trim() == '业务指南'){ $("#zlzg").show(); $("#bzbmfz").hide(); $("#jdjcMore").attr("href","/user/classroomList"); }else if(text.trim() == '知识讲堂'){ $("#zlzg").hide(); $("#bzbmfz").show(); //$("#ygkwgk").hide(); $("#jdjcMore").attr("href","/user/mp4"); } }) Marquee("marquee"); $(".topTipsWarn").mousedown(function (event) { // 指针相对于小盒子的偏移量,鼠标相对于窗口的坐标-小盒子相对于窗口的偏移量 var xbox = event.pageX - $(".topTipsWarn").offset().left; var ybox = event.pageY - $(".topTipsWarn").offset().top; // 鼠标移动事件 $(document).mousemove(function (eve) { // 鼠标相对于窗口的坐标 var x = eve.clientX; var y = eve.clientY; // 大盒子相对于窗口的偏移量 var wrapx = $(".wrapper").offset().left; var wrapy = $(".wrapper").offset().top; // 大盒子的宽高,小盒子的宽高 var wrapw = document.body.clientWidth; var wraph = document.body.clientHeight; var boxw = $(".topTipsWarn").width(); var boxh = $(".topTipsWarn").height(); // 小盒子移动 var movex = x - xbox - wrapx; var movey = y - ybox - wrapy; // 临界值判断 // 小盒子不能超过大盒子左侧 if (movex <= 0) { movex = 0; } // 不能超过右侧 if (movex >= wrapw - boxw) { movex = wrapw - boxw; } // 不能超过上面 if (movey <= 0) { movey = 0; } // 不能超过下面 if (movey >= wraph - boxh) { movey = wraph - boxh; } // 检测值是否正确 console.log(movex, movey); // 移动效果,改变left和top值 $(".topTipsWarn").css({ "left": movex + "px", "top": movey + "px" }); }); $(".topTipsWarnLeft").mousedown(function (event) { // 指针相对于小盒子的偏移量,鼠标相对于窗口的坐标-小盒子相对于窗口的偏移量 var xbox = event.pageX - $(".topTipsWarnLeft").offset().left; var ybox = event.pageY - $(".topTipsWarnLeft").offset().top; // 鼠标移动事件 $(document).mousemove(function (eve) { // 鼠标相对于窗口的坐标 var x = eve.clientX; var y = eve.clientY; // 大盒子相对于窗口的偏移量 var wrapx = $(".wrapper").offset().left; var wrapy = $(".wrapper").offset().top; // 大盒子的宽高,小盒子的宽高 var wrapw = document.body.clientWidth; var wraph = document.body.clientHeight; var boxw = $(".topTipsWarnLeft").width(); var boxh = $(".topTipsWarnLeft").height(); // 小盒子移动 var movex = x - xbox - wrapx; var movey = y - ybox - wrapy; // 临界值判断 // 小盒子不能超过大盒子左侧 if (movex <= 0) { movex = 0; } // 不能超过右侧 if (movex >= wrapw - boxw) { movex = wrapw - boxw; } // 不能超过上面 if (movey <= 0) { movey = 0; } // 不能超过下面 if (movey >= wraph - boxh) { movey = wraph - boxh; } // 检测值是否正确 console.log(movex, movey); // 移动效果,改变left和top值 $(".topTipsWarnLeft").css({ "left": movex + "px", "top": movey + "px" }); }); }); }); // 鼠标松开时,小盒子不移动 $(document).mouseup(function () { // 使用off事件取消绑定事件 $(document).off("mousemove"); }); }) function toSearch1(keyword){ location.href = "/user/searchR?keyword="+encodeURI(encodeURI(keyword))+"&pageNo=1"; } function toZlzgDetail(id) { if(!ajaxValidateLogin(toZlzgDetail)){ // console.log('00000000'); return; } window.open("/usercenter/detail/"+id); } function toSearch(keyword) { location.href = "/user/searchR?keyword="+encodeURI(encodeURI(keyword))+"&pageNo=1"; } /** * 滚动 */ var marqueeFlag = true; var number = 0; var pause = false; var timer; function mouseover(tr) { tr.style.backgroundColor = "#e8f2fe"; pause = true; } function mouseout(tr) { tr.style.backgroundColor = "#ffffff"; pause = false; } if (typeof timer != "undefined" && timer != null) { timer = clearInterval(timer); } var Marquee = function(id) { var container = document.getElementById(id); var original = container.getElementsByTagName("dt")[0]; var speed = 50; container.getElementsByTagName("dd")[0].innerHTML = original.innerHTML; container.getElementsByTagName("dd")[1].innerHTML = original.innerHTML; if (typeof timer != "undefined" && timer != null) { timer = clearInterval(timer); } var rolling = function() { number++; if (typeof container.getElementsByTagName("dd")[0] == "undefined") { return false; } if (container.scrollTop == container.getElementsByTagName("dd")[0].offsetTop) { container.scrollTop = 0; } else { container.scrollTop++; } }; //设置定时器 timer = setInterval(rolling, speed); container.onmouseover = function() { //鼠标移到marquee上时,清除定时器,停止滚动 if ($("#categoryFlag").val() != "1") { timer = clearInterval(timer); } }; container.onmouseout = function() { //鼠标移开时重设定时器 if (typeof timer != "undefined" && timer != null) { timer = clearInterval(timer); } if ($("#categoryFlag").val() != "1") { timer = setInterval(rolling, speed); } }; }; function closeTopTipsWarn(){ $(".topTipsWarn").remove(); } function closeTopTipsWarnLeft(){ $(".topTipsWarnLeft").remove(); } </script> <style> .topTipsWarn { position: fixed; top: calc(35vh - 120px); right:10px ; width: 460px; height: 660px; z-index: 9999; border: 1px solid #f00; background-color: #F8F8F8; padding: 0 20px; } .topTipsWarn .tit { font-size: 20px; text-align: center; font-weight: bold; line-height: 60px; color: #f00; } .topTipsWarn > div:not(.tit){ font-size: 17px; color: #f00; text-align: left; line-height: 28px; color: #333333; } .topTipsWarn > div span { color: #f00; } .topTipsWarn .closeTopTipsWarn { position: absolute; right: 10px; top: 4px; color: #333333; text-decoration: none; font-size: 16px; } .topTipsWarnLeft { position: fixed; top: calc(35vh - 120px); right:10px ; width: 460px; height: 660px; z-index: 9999; border: 1px solid #f00; background-color: #F8F8F8; padding: 0 20px; } .topTipsWarnLeft .tit { font-size: 20px; text-align: center; font-weight: bold; line-height: 60px; color: #f00; } .topTipsWarnLeft > div:not(.tit){ font-size: 17px; color: #f00; text-align: left; line-height: 28px; color: #333333; } .topTipsWarnLeft > div span { color: #f00; } .topTipsWarnLeft .closeTopTipsWarn { position: absolute; right: 10px; top: 4px; color: #333333; text-decoration: none; font-size: 16px; } @media (max-width: 768px) { .topTipsWarn{ width: auto; height: auto; top: 10px; right: 10px; left: 10px; bottom: 10px; box-sizing: border-box; } .topTipsWarn > div:not(.tit){ font-size: 14px; line-height: 1.3; } .topTipsWarn .closeTopTipsWarn{ font-size: 18px; } } </style> </head> <body> <!--<div class="topTipsWarn"> <a href="javascript:closeTopTipsWarn();" class="closeTopTipsWarn">X</a> <div class="tit">通知</div> <div class="tips">尊敬的用户您好:</div> <div> 受机房线路改造影响,企业标准信息公共服务平台计划于2022年10月15日至2022年10月24日期间对平台服务时间进行调整,具体服务时间调整为:工作日08:00-18:00。其余时间系统停止服务。给您带来的不便敬请谅解,感谢您一直以来的关注与支持!</div> <br> <div style="text-align:right">企业标准信息公共服务平台</div> <div style="text-align:right">发布日期:2022年10月13日</div> </div>--> <!--<div class="topTipsWarn"> <a href="javascript:closeTopTipsWarn();" class="closeTopTipsWarn">X</a> <div class="tit">通知</div> <div class="tips">尊敬的用户您好:</div> <div> 请访问并及时收藏平台网址<span style="color:red;">https://www.qybz.org.cn/</span>,确认访问使用<span style="color:red;">https</span>,同时请结合清理浏览器缓存的方法,来避免您在登录和验证中出现不通过等情况发生,影响使用;http将于近期停用,感谢您一直以来的关注与支持!</div> <br> <div style="text-align:right">企业标准信息公共服务平台</div> <div style="text-align:right">发布日期:2022年01月07日</div> </div>--> <div class="topTipsWarn"> <a href="javascript:closeTopTipsWarn();" class="closeTopTipsWarn">&times;</a> <div class="tit">警示</div> <div class="tips">尊敬的用户您好:</div> <div> <p style="text-indent: 2em;">按照国务院深化标准化工作改革的统一部署,国家已经于2017年全面取消企业产品标准备案制度。按照《标准化法》有关规定,企业标准实施自我声明公开和监督制度。新制度要求,企业应当公开其执行的强制性标准、推荐性标准、团体标准或者企业标准的编号和名称;企业执行自行制定的企业标准的,还应当公开产品、服务的功能指标和产品的性能指标。</p> <p style="text-indent: 2em;">近日,有企业以"国家标准化管理委员会标准备案企业"的名义进行宣传。国家标准化管理委员会(以下简称“国家标准委”)已经明确公告国家标准委不开展企业资质评价工作,不颁发有关资质备案证书。特此提醒广大公众提高警惕,谨防上当受骗。</p> <p style="text-indent: 2em;">任何组织或个人发现以国家标准委和企标平台名义向企业颁发"企业标准备案企业"证书和牌匾等信息载体,或伪造国家机关公文、证件、印章情形的,可向当地相关部门举报。</p> </div> <br> <div style="text-align:right">企业标准信息公共服务平台</div> <div style="text-align:right">发布日期:2023年07月27日</div> </div> <!--<div class="topTipsWarnLeft" style="left: 0px; width: 380px;height:380px;"> <a href="javascript:closeTopTipsWarnLeft();" class="closeTopTipsWarn">X</a> <div class="tit">通知</div> <div class="tips">尊敬的用户您好:</div> <div> 因系统升级,企业标准信息公共服务平台计划于2024年7月22日起,对平台服务时间进行调整,具体服务时间调整为:工作日08:00-18:00。其余时间系统停止服务。给您带来的不便敬请谅解,系统恢复时间另行通知,感谢您一直以来的关注与支持!</div> <br> <div style="text-align:right">企业标准信息公共服务平台</div> <div style="text-align:right">发布日期:2024年07月16日</div> </div>--> <!--<div class="topTipsWarnLeft" style="left: 0px; width: 380px;height:380px;"> <a href="javascript:closeTopTipsWarnLeft();" class="closeTopTipsWarn">X</a> <div class="tit">通知</div> <div class="tips">尊敬的用户您好:</div> <div> 根据国家节假日安排,9月29日本平台正常运营,10月1日至7日将暂停服务进行系统维护。请您提前规划,避免不便。对此给您带来的不便,我们深感歉意,感谢您的理解与支持!10月8日8:00起,系统恢复正常。祝您假期愉快!</div> <br> <div style="text-align:right">企业标准信息公共服务平台</div> <div style="text-align:right">发布日期:2024年09月26日</div> </div>--> <div class="wrapper"> <!--top--> <script src="/assets/js/sm2/index.js"></script> <script src="/assets/js/gt.js"></script> <script src="/assets/js/bootstrap.bundle.min.js"></script> <script> $(function(){ $('.dropdown-toggle').dropdown(); $(document).keydown(function(event){ if(event.keyCode==13){ if($('body').hasClass('modal-open')){ $('#sub').click(); }else{ toSearchMain(); } } }); }) </script> <div class="top"> <div class="container"> <div class="row"> <div class="col-sm-6 col-xs-12 text-left"><a style="display: block;" href="/"><div class="logo"></div></a></div> <div class="col-sm-6 col-xs-12 text-right"> <div class="info"> <a href="/">返回首页</a> | <a href="/user/regLogin">个人用户登录</a> | <a href="https://glxt.qybz.org.cn">管理系统入口</a>| <a href="https://tbxt.qybz.org.cn">企业登录入口</a> </div> <span style="display: none;"><i class="fa fa-user"></i> <a href="#" data-toggle="modal" data-target="#myModal" id="loginBtn">登录</a></span> <!--<div class="info user"> <span><i class="fa fa-user"></i> <a href="#" data-toggle="modal" data-target="#myModal" id="loginBtn">登录</a></span> <span><i class="fa fa-user-plus"></i> <a href="javascript:window.location.href = '/user/reg'">注册</a></span> </div>--> </div> </div> </div> </div> <div class="header"> <div class="container"> <div class="row align-items-center"> <div class="col-12"> <div class="nav navbar-expand-lg navbar-dark justify-content-between"> <a class="navbar-brand" href="#">公共服务平台导航</a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNavDropdown"> <ul class="navbar-nav justify-content-between"> <li id="nav_1"><a href="/">首页</a></li> <li id="nav_2"><a href="/user/toSearch">信息查询</a></li> <li id="nav_7"><a href="/wjw/toSearch">专题查询</a></li> <li id="nav_3"><a href="/user/jgjcHome">监督检查</a></li> <li id="nav_4"><a href="/user/newsList">新闻动态</a></li> <li id="nav_5"><a href="/user/mp4">知识专区</a></li> <li id="nav_6"><a href="/user/basis">帮助中心</a></li> <li id="nav_6"><a href="/user/standardLaw">政策专栏</a></li> <!--<li id="nav_7"><a href="/user/aboutus">关于我们</a></li>--> </ul> </div> </div> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="myModal" data-backdrop="static" data-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" style="width: 400px;"> <div class="modal-content"> <div class="modal-body"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> <div class="ml-20 mr-20"> <div class="form-group mt-2"> <h5 class="text-primary"><strong>用户登录</strong></h5> </div> <hr /> <div class="form-group"> <label for="recipient-name" class="col-form-label">用户名:</label> <div class="input-group mb-3"> <div class="input-group-prepend"> <span class="input-group-text" id="basic-addon1"><i class="fa fa-user"></i></span> </div> <input type="text" id="user_name" class="form-control" placeholder="请输入用户名/手机号"> </div> </div> <div class="form-group"> <label for="message-text" class="col-form-label">密码:</label> <div class="input-group mb-3"> <div class="input-group-prepend"> <span class="input-group-text" id="basic-addon1"><i class="fa fa-unlock-alt"></i></span> </div> <input type="password" id="user_pswd" class="form-control" placeholder="请输入密码"> </div> </div> <div class="form-group"> <dl class="item"> <dt class="tit"><label>完成验证:</label></dt> <dd class="cnt" id="captcha"> <p id="wait" class="">正在加载验证码......</p> </dd> </dl> </div> <div class="form-group mtb-10"> <button type="button" class="btn btn-primary btn-block" id="sub">登录</button> </div> <h6 id="msg_space" class="msg" style="display:none"><span id="msg" style="color: red"></span></h6> <p class="prompt"> <a href="javascript:window.location.href = '/user/reg'">注册账号</a>| <a href="javascript:window.location.href = '/user/findPw'">忘记密码</a> </p> </div> </div> </div> </div> </div> <script> /**验证用户登录**/ function ajaxValidateLogin(callback){ var flag=true; $.ajax({ type: "POST", url: "/user/ajaxValidate.login", dataType:"json", async:false, success:function(data){ if(data.code == "1"){ flag=false; login_div(true,callback); } } }); // console.log(flag); return flag; } //处理session 失效登录 var isLogin=false; var back; function login_div(flag,callback){ isLogin=flag; back=callback; $("#loginBtn").click(); } var handler1 = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); $("#wait").css("dispaly","none"); }); captchaObj.onSuccess(function () { $('#sub').click(); }) $('#sub').click(function () { if($.trim($("#user_name").val()).length ==0){ $("#msg").html("请输入用户名!"); $("#msg_space").css("display",""); $("#user_name").focus(); return false; } if($.trim($("#user_pswd").val()).length ==0){ $("#msg").html("请输入密码!"); $("#msg_space").css("display",""); $("#show_user_pswd").focus(); return false; } var result = captchaObj.getValidate(); if (!result) { $("#msg").html("请完成验证!"); $("#msg_space").css("display",""); return false; } var user_pawd = $('#user_pswd').val(); var curve = "sm2"; var pubkeyHex = "04a494ef2071cce6524c6761dc6853a7024d023cd5169fbe2e3a3e2914f3febb15617058e90c5dc1adde01eb718e69b47b54819dc1810770bab8f8c4095b2d4178"; var encryptData = sm2Encrypt(user_pawd, pubkeyHex, 0); //加密 $.ajax({ url: "/user/validateLogin", type: 'POST', dataType: 'json', data: { user_name: $('#user_name').val(), user_pswd: encryptData, geetest_challenge: result.geetest_challenge, geetest_validate: result.geetest_validate, geetest_seccode: result.geetest_seccode }, success:function(data){ if(data.code == "0"){ location.reload(); }else if(data.code == "1"){ $("#msg").html("用户名或密码错误!"); $("#msg_space").css("display",""); captchaObj.reset(); }else if(data.code == "2"){ $("#msg").html("该账户已被停用!"); $("#msg_space").css("display",""); captchaObj.reset(); }else{ $("#msg").html("系统异常,请稍候再试!"); $("#msg_space").css("display",""); captchaObj.reset(); } }, complete: function() { $("#sub").attr("disabled",false); $("#sub").html("登录"); },beforeSend:function(){ $("#sub").attr("disabled",true); $("#sub").html("登录中..."); } }); }) } $(function(){ $('.dropdown-toggle').dropdown(); var nav='nav_1'; $(".navType active").attr("class",""); if(nav == ''){ nav = 'nav_1'; } $("#"+nav).attr("class","active"); }) function outLogin(path){ alertConfirm("确定退出系统?",function(data){ if(data.value){ window.location.href=path+"/usercenter/logOut"; } }); } $.ajax({ url: "/gc/geetest/login?t=" + (new Date()).getTime(), // 加随机数防止缓存 type: "get", dataType: "json", success: function (data) { // 调用 initGeetest 进行初始化 // 参数1:配置参数 // 参数2:回调,回调的第一个参数验证码对象,之后可以使用它调用相应的接口 initGeetest({ // 以下 4 个配置参数为必须,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用户后台检测极验服务器是否宕机 new_captcha: data.new_captcha, // 用于宕机时表示是新验证码的宕机 product: "float", // 产品形式,包括:float,popup width: "326px" // 更多配置参数说明请参见:http://docs.geetest.com/install/client/web-front/ }, handler1); } }); </script> <style> .msg { margin: 0px; width: 100%; height: 30px; line-height: 30px; font-weight: normal; font-size: 12px; text-align: center; background-color: #f2dede; border: #eed3d7 solid 1px; color: #d15b47; } </style> <!--header--> <!--dashboard--> <div class="dashboard"> <div class="container"> <div class="row"> <div class="col-md-6 col-sm-12"> <!--carousel--> <div id="demo" class="carousel slide" data-ride="carousel"> <!-- 指示符 --> <ul class="carousel-indicators"> <li data-target="#demo" data-slide-to="0" class="active"></li> <li data-target="#demo" data-slide-to="1"></li> <li data-target="#demo" data-slide-to="2"></li> <li data-target="#demo" data-slide-to="3"></li> </ul> <!-- 轮播图片 --> <div class="carousel-inner"> <div class="carousel-item active"> <img src="/assets/images/jiandang.png"> </div> <div class="carousel-item"> <img src="/assets/images/2.jpg"> </div> <div class="carousel-item"> <img src="/assets/images/3.jpg"> </div> <div class="carousel-item"> <img src="/assets/images/1.jpg"> </div> <!--<div class="carousel-item"> <img src="/assets/images/slider2.jpg"> </div>--> </div> <!-- 左右切换按钮 --> <a class="carousel-control-prev" href="#demo" data-slide="prev"> <span class="carousel-control-prev-icon"></span> </a> <a class="carousel-control-next" href="#demo" data-slide="next"> <span class="carousel-control-next-icon"></span> </a> </div> </div> <div class="col-md-6 col-sm-12"> <!--新闻动态--> <div class="news-box"> <div class="news-box-header"> <i></i> 新闻动态 <a href="/user/newsList" class="more">更多</a> </div> <div class="news-box-body" style="height: 297px;padding: 0px 20px;"> <ul> <li><a href="/user/news/newsDetail/02baa4a7853547f3b117db1d29bdb1ea" target="_blank">落实《企业标准化促进办法》平台功能升级(一图读懂)</a><span>01-10</span></li> <li><a href="/user/news/newsDetail/4cf92fe4472d42efb7f015934562237c" target="_blank">重磅!总局令第83号公布(附一图读懂)</a><span>09-10</span></li> <li><a href="/user/news/newsDetail/895bb1eafaca40438c582d697fb52aae" target="_blank">市场监管总局标准创新司负责同志答记者问</a><span>09-09</span></li> <li><a href="/user/news/newsDetail/c261d74d8c164f48b095c014cb0748bd" target="_blank">警示</a><span>07-27</span></li> <li><a href="/user/news/newsDetail/9acfbf1c0dea4c1bb5a07866fa9ff2aa" target="_blank">关于企业标准信息公共服务平台APP正式版上线运行的通告</a><span>05-24</span></li> <li><a href="/user/news/newsDetail/51df510ab0f54baf9da49c41b5ffcee0" target="_blank">国务院办公厅关于进一步加强商品过度包装治理的通知</a><span>09-16</span></li> <li><a href="/user/news/newsDetail/dd6b8e0a00c348cfae71827dd4de83ed" target="_blank">市场监管总局集中整治商品过度包装、“天价”月饼</a><span>08-22</span></li> <li><a href="/user/news/newsDetail/8e39bb367b364a6eb42a37a55921977e" target="_blank">中国消费者协会联手中国焙烤食品糖制品工业协会中秋节前对月饼过度包装进行消费监督</a><span>08-15</span></li> <li><a href="/user/news/newsDetail/078d94afcb03494b9785703fc722ef3f" target="_blank">一图读懂 | 《限制商品过度包装要求食品和化妆品》</a><span>08-15</span></li> <li><a href="/user/news/newsDetail/71e2ef5d9dcf4e56a3cdd40b5e8752a9" target="_blank">国家标准化管理委员会秘书处关于征集加强标准实施应用和监督工作措施意见与建议的函</a><span>07-18</span></li> </ul> </div> </div> </div> </div> </div> <!----> </div> <!--advertisement--> <!-- <div class="advertisement"> <div class="container"> <div class="ad"><img src="images/ad1.jpg" /></div> </div> </div> --> <!--search--> <!--search--> <div class="search"> <div class="container"> <!--企业标准自我声明查询--> <div class="news-box"> <div class="news-box-header"><i></i> 企业标准自我声明查询</div> <div class="news-box-body" style="height: auto;"> <div class="search-container"> <div class="search-box"> <div class="row"> <div class="col-md-12 col-sm-9"> <div class="input-group mb-3"> <input type="text" id="keyword" class="form-control" placeholder="请输入要搜索的内容"> <div class="input-group-append"> <button class="btn" type="button" onclick="doSearch()">搜 索</button> </div> </div> </div> <!--<div class="col-md-2 col-sm-3"> <button class="btn btn-outline-primary" type="button" style="font-size: 12px; height: 35px; border-radius: 0;" onclick="window.open('http://10.20.32.217:8080/index.html?token=')">全文搜索</button> <button class="btn btn-outline-primary btn-qjss" type="button" onclick="window.open('https://www.qybz.org.cn:8889/index.html?token=')">全文搜索</button> </div>--> </div> </div> <div class="search-command" id="search-command"> <div class="cnt"> <div class="line"> <a class="tag" href="javascript:hotSearch('家具')"><strong>新</strong>家具</a> <a class="tag" href="javascript:hotSearch('百里香酚')"><strong>新</strong>百里香酚</a> <a class="tag" href="javascript:hotSearch('口罩')"><strong>新</strong>口罩</a> <a class="tag" href="javascript:hotSearch('饲料')"><strong>新</strong>饲料</a> </div> <div class="line"> <a class="tag" href="javascript:hotSearch('薄荷脑')"><strong>新</strong>薄荷脑</a> <a class="tag" href="javascript:hotSearch('洗衣液')"><strong>新</strong>洗衣液</a> <a class="tag" href="javascript:hotSearch('上海沪联')"><strong>新</strong>上海沪联</a> <a class="tag" href="javascript:hotSearch('济源市瑞众生物')"><strong>新</strong>济源市瑞众生物</a> </div> </div> </div> <!-- <div class="notice"> <div class="notice-icon"><i class="fa fa-bullhorn"></i></div> <div class="notice-content">最新通知......</div> </div> --> </div> </div> </div> </div> </div> <!--信息公开、新闻动态、支持服务--> <!--统计--> <div class="total"> <div class="container"> <div class="static-total"> <div class="row"> <div class="col-md-4 col-sm-12"> <div class="item color1"> <b class="num"><i class="fa fa-users"></i></b> <div class="count"> 581,979,113 </div> <h3 class="title">累计访问量(次)</h3> </div> </div> <div class="col-md-4 col-sm-12"> <div class="item color2"> <b class="num"><i class="fa fa-user-plus"></i></b> <div class="count"> 250,537,415 </div> <h3 class="title">累计浏览量(次)</h3> </div> </div> <div class="col-md-4 col-sm-12"> <div class="item color3"> <b class="num"><i class="fa fa-id-card-o"></i></b> <div class="count"> 331,441,698 </div> <h3 class="title">累计检索量(次)</h3> </div> </div> </div> </div> </div> </div> <!--标语--> <div class="container" style="margin-bottom: 20px;"> <div class="biaoyu-container"></div> </div> <div class="news-show"> <div class="container"> <div class="row"> <div class="col-md-8 col-sm-12"> <!--新闻动态--> <div class="news-box"> <div class="news-box-header jdjc"> <ul> <!--<li class="active"><i></i> 业务指南</li>--> <li class="active"><i></i> 知识讲堂</li> </ul> <a href="/user/mp4" id="jdjcMore" class="more">更多</a> </div> <div class="news-box-body"> <ul id="zlzg" style="display: none;"> <li><a href="https://mp.weixin.qq.com/s/KQ1vBen5VDzsQP-xsLxSCA" target="_blank">征求意见!企业标准化促进办法</a><span>2021-11-26</span></li> <li><a href="https://mp.weixin.qq.com/s/YRLRbrtusc_niQxL9j1yeg" target="_blank">现代职业教育高质量发展将制定和完善哪些标准?</a><span>2021-10-13</span></li> <li><a href="https://mp.weixin.qq.com/s/BZsdpp6QTcg_q2XmjQBZmw" target="_blank">食品不符合标准,是否可认定为不合格产品?</a><span>2021-06-24</span></li> <li><a href="https://mp.weixin.qq.com/s/eUk3m_KozLpvqXSkmEZumQ" target="_blank">职业打假人受消法保护么?</a><span>2021-06-23</span></li> <li><a href="https://mp.weixin.qq.com/s/Glm0aWwMMdwhkcjLrSO0Cg" target="_blank">消费者在产品责任纠纷中需要承担哪些举证责任?</a><span>2021-06-22</span></li> <li><a href="https://mp.weixin.qq.com/s/bI7i1uznFK8KRBx163FMqA" target="_blank">企业可以将内部评定的标准印刷在商品外包装上么?</a><span>2021-06-21</span></li> <li><a href="https://mp.weixin.qq.com/s/EQ_ccjwWS7oGRE_t567oAA" target="_blank">空调安装服务不符合标准怎么办?</a><span>2021-06-20</span></li> <li><a href="https://mp.weixin.qq.com/s/AYO4GJeQ1Snpg8p6HXlWJA" target="_blank">【再论】在新标准实施后按旧标准生产的产品可以认定为缺陷产品么?</a><span>2021-06-19</span></li> <li><a href="https://mp.weixin.qq.com/s/WvNl70hXgkbJR2jHaZNBjA" target="_blank">什么是企业标准总监?</a><span>2021-06-18</span></li> <li><a href="https://mp.weixin.qq.com/s/K7yIG_L8-96BFj_4Ma1cFA" target="_blank">2021年度企业标准“领跑者”重点领域有哪些?</a><span>2021-06-17</span></li> </ul> <ul id="bzbmfz"> <div class="media-slider"> <div id="kemo" class="carousel slide" data-ride="carousel"> <!-- 指示符 --> <ul class="carousel-indicators"> <li data-target="#kemo" data-slide-to="0" class="active"></li> <li data-target="#kemo" data-slide-to="1"></li> <li data-target="#kemo" data-slide-to="2"></li> </ul> <!-- 轮播图片 --> <div class="carousel-inner"> <div class="carousel-item active"> <!-- <img src="images/video-thumb.png" width="100%" height="100%" /> --> <video src="/assets/images/mp4_2.mp4" controls="controls" preload="none"> your browser does not support the video tag </video> </div> <div class="carousel-item"> <!-- <img src="images/video-thumb.png" width="100%" height="100%" /> --> <video src="/assets/images/mp4_3.mp4" controls="controls" preload="none"> your browser does not support the video tag </video> </div> <div class="carousel-item"> <!-- <img src="images/video-thumb.png" width="100%" height="100%" /> --> <video src="/assets/images/mp4_1.mp4" controls="controls" preload="none"> your browser does not support the video tag </video> </div> </div> <!-- 左右切换按钮 --> <a class="carousel-control-prev" href="#kemo" data-slide="prev"> <span class="carousel-control-prev-icon"></span> </a> <a class="carousel-control-next" href="#kemo" data-slide="next"> <span class="carousel-control-next-icon"></span> </a> <a class="carousel-control-next" href="#kemo" data-slide="next"> <span class="carousel-control-next-icon"></span> </a> </div> </div> </ul> </div> </div> </div> <div class="col-md-4 col-sm-12"> <!--支持服务--> <div class="news-box"> <div class="news-box-header"><i></i> 支持服务</div> <div class="news-box-body"> <div class="ads"> <a href="/user/classroomList" class="item"><img src="/assets/images/icon1.png" />知识库</a> <a href="/user/commonProblem" class="item"><img src="/assets/images/icon2.png" />常见问题</a> <a href="/user/monthlyList" class="item"><img src="/assets/images/icon5.png" />企标大数据</a> <a href="javascript:;" data-toggle="modal" data-target="#modal-a4" class="item"><img src="/assets/images/icon4.png" />公众号</a> </div> </div> </div> </div> </div> </div> </div> <div class="container"> <div class="news-box"> <div class="news-box-header"> <i></i> 最近更新 </div> <div class="news-box-body" style="padding:0;"> <table id="categoryTb" align="center" style="width:100%;border-color:#b9b9b9;font-size: 12px; top: 0px; table-layout: fixed;font-weight: 700 !important;" border="0" cellpadding="0" cellspacing="0" class="stats"> <tr height="38" style="color: #6a6a6a;background: rgba(243,243,243,1);text-align: center;" > <th align="left" class="tab-color" width="53" style="border-left: 1px">序号</th> <th align="left" class="tab-color" width="150" style="border-bottom: 1px">企业名称</th> <th align="left" class="tab-color" width="210" style="border-bottom: 1px">标准名称</th> <th align="left" class="tab-color" width="150" style="border-bottom: 1px">发布时间</th> <th align="left" class="tab-color" width="80" style="border-bottom: 1px">状态</th> <th align="left" class="tab-color" width="80" style="border-bottom: 1px ">详细</th> </tr> <tbody id="categoryBody"></tbody> </table> <dl id="marquee" class="marquee" style="height: 320px;overflow: hidden;"> <dt id="datatbody" style="width: 100%;font-weight: 400 !important;"> <table id="showTable" style="width:100%;border-color:#b9b9b9;color:#6a6a6a;font-size: 12px; border-top: none;table-layout: fixed;text-align: center;line-height: 34px;" border="0" align="center" cellpadding="0" cellspacing="0" class="stats"> <tbody> <tr> <td class="tab-color-2" width='53'>1</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">长春市晟辉农机制造有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/SHNJ 001-2025《旋耕播种机》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 08:23:35</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('d61d76e506b3d4e12812af13988fac30a41c9c499b0f027d4db0c0e3f1b356ce1667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>2</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">沧州市天园牧业有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/CTY 80-2025《混合型饲料添加剂酶制剂+微生物Ⅲ》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 08:13:03</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('4842561863d5176aee315b70b1a8dd2e5543a86f39da8233d217c7e52012298e1667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>3</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">沧州市天园牧业有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/CTY 46-2023《微生物发酵饲料原料》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 08:10:43</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('fa7aaab3ae94235c548a3e154dd7dae1b733b10cbd33fdecffe8f0965b4ebc121667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>4</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">长城汽车股份有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/CC 1101-2024《CC2030BE21R 越野乘用车》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 08:02:52</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('e753c9ee9833757143559ed189d5061af9f12fdf8bcf762c9accaf33a88ed91d1667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>5</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">六安市金安区淠东黄燕豆制品加工厂</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">GB 2711-2014《食品安全国家标准 面筋制品》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 08:02:35</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('88bdb7ec2b069345da03c40347c8d02af7f950b6e73747b36963f369e598d9a01667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>6</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">长城汽车股份有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/CC 1100-2024《CC2030BE60A 越野乘用车》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 08:01:59</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('608806fc25e62e26a589d050e843b72e633a20ade02c2ba1b606860ecd74fac11667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>7</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">荣成凯普生物工程有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/371082RKP 001-2017《有机水溶肥料》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 07:57:29</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('8bda08d9bb30295dc5c62a74d8b22f7a294b7d7c294d86c99ddc2a4d3a4e87691667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>8</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">湖南省永州异蛇宝实业有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/RAFR 011-2024《异蛇宝™透骨草抑菌液》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 07:48:15</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('4edd5b3181aaf41e02d27a182c878cdae7d1aff711493076107444717f2e461f1667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>9</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">威海义园食品酿造厂</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/WYN 0001S-2025《液态复合调味料》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 07:39:35</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('21b2eedd556e72b3c1ba0ce355265134d5f327c895491c05b6f8850b73ddf5311667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>10</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">四平市九鼎恒昌牧业有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/SPJS 002-2024《猪用浓缩饲料》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 07:36:30</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('6bdde48895933ffd0b3fe9990bd3fe8a44068f324f0ace16dfc7c4d3704554231667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>11</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">潍坊泉慧饲料有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/370724WQH02 002-2024《禽配合饲料企标》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 07:19:12</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('6af18427d611c7e19803c9541140317e8483cb7cae3a9184d7a2259ecedcd2311667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>12</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">上饶市腾鸿科技有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/STH 001-2025《塑料瓶盖》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 06:18:55</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('962eab90bd034dcaf8752c0c52a342fad1c09c8c082dd38d4ea4efee307b10ca1667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>13</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">阜阳九鼎饲料科技有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/FJD 05-2025《畜禽配合饲料》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 04:35:41</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('434c04fa85090072891ad6742b107ffb08837d8bd5542b57766593f9533366ba1667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>14</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">江西国辉健康产业有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/JGH 0080S-2024《欣科奇牌艾美软胶囊》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 01:11:52</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('c947bd7e16affe10c63a17f1673cd33421a65978eb6ba3588f2dc8685c95cc731667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>15</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">江西国辉健康产业有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/JGH 0081S-2024《欣科奇牌保姿软胶囊》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 01:11:16</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('9842adb0622c2758df0d327965ad85b20a07b6e71e2e72aa4a6ceaf195912ded1667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>16</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">烟台海岳饲料有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/0600YTHY 060-2023《牛羊浓缩饲料》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 00:22:18</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('a21ea3332e55eefcebe4cff3f128d19f6f6245f506bc064ffc6d016cafc62a231667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>17</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">烟台海岳饲料有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/0600KH 01-2023《牛羊复合预混合饲料》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 00:10:25</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('d4f7650a256fb12b7d0c8e1f0f4b9bc67a866e7587ec8504c35a0b671ae3f8931667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>18</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">浙江健盛之家商贸有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/JSZJ 002-2024《服饰配件》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 00:06:10</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('ae28576cc66d98ff4d84700f6c9dca32ca53d0f92532e04dd809bed96fc592191667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>19</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">浙江健盛之家商贸有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/JSZJ 002-2024《服饰配件》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 00:04:00</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 企业自行废止 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('d40ba211d5712b62e16e49bf6c2f60ab5d5fe5ec4d7ae235b0b0af06bfec47241667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> <tr> <td class="tab-color-2" width='53'>20</td> <td class="tab-color-2 floatDiv" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width="150">山东明耀线缆有限公司</td> <td style="white-space:pre;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" class="tab-color-2 floatDiv" width="210">Q/MY 03-2025《额定电压300_500V RVV软电缆》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-07 00:01:48</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='80'> 现行有效 </td> <td class="tab-color-2" width='80'> <a href="javascript:toDetail('b2e88517f9c236ce536dfc0390dae6858912d5c469685e63ed1892a466a214451667e8270e92630f8ddeed1ee4fdb693')" style="color:#008fd5">详细</a> </td> </tr> </tbody> </table> </dt> <dd style="border: 0px solid; border-color: red; margin: 0"></dd> <dd style="border: 0px solid; border-color: blue; margin: 0"></dd> </dl> </div> </div> </div> <!--视频--> <div class="links"> <div class="container"> <div class="news-box"> <div class="news-box-header"> <i></i> 重要链接 </div> <div class="news-box-body" style="height: auto;"> <a href="http://www.samr.gov.cn/" target="_blank"><img src="/assets/images/link2.png" style="margin: 10px;" /></a> <a href="http://www.sac.gov.cn/" target="_blank"><img src="/assets/images/link3.png" style="margin: 10px;" /></a> <a href="https://www.cods.org.cn/" target="_blank"><img src="/assets/images/link4.png" style="margin: 10px;" /></a> <a href="http://std.samr.gov.cn/" target="_blank"><img src="/assets/images/link5.png" width="144" height="31" style="margin: 10px;" /></a> </div> </div> </div> </div> <!--友情链接--> <!-- <div class="links"> <div class="container"> <h4 class="title">友情链接</h4> <div class="content"> <a href="##">企业标准信息公共服务平台</a> <a href="##">企业标准信息公共服务平台</a> <a href="##">企业标准信息公共服务平台</a> <a href="##">企业标准信息公共服务平台</a> </div> </div> </div> --> <!--footer--> <div class="footer"> <div class="container"> <div class="row pt-10"> <div class="col-md-4 col-sm-3 pr-0 pt-10 text-right"> <img src="/assets/images/blue.png" /> </div> <div class="col-md-5 col-sm-9 text-center"> <p>版权所有:全国组织机构统一社会信用代码数据服务中心</p> <p>备案号:<a style="text-decoration: none;color: #999;" href="https://beian.miit.gov.cn" id="home_keleyi_com" target="_blank">京ICP备09064497号-4</a> </p> <p>平台建议使用火狐、谷歌、IE11以上版本浏览器进行访问和操作</p> </div> </div> </div> </div> <!--客服--> <div class="online-fixed"> <ul> <a href="/user/service"> <li class="no1"><i class="fa fa-headphones"></i>在线咨询</li></a> <a href="https://tbxt.qybz.org.cn"><li class="no2"><i class="fa fa-file-text-o"></i>自我声明</li></a> <li class="no3 qrcode"><i class="fa fa-mobile"></i>APP<img src="/assets/images/appdownload/appqrcode.png"></li> <a href="https://www.qybz.org.cn:8888"><li class="no2"><i class="fa fa-file-text-o"></i>出口转内销</li></a> </ul> </div> </div> <!--二维码--> <div class="modal fade" id="modal-a3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button> </div> <div class="modal-body"> <div class="text-center"> <img src="/assets/images/qrcode.png" style="display:inline-block; height: 200px;width:auto;"> </div> </div> <div class="modal-footer"> <button type="button" class="btn" style="height: 35px;background: #2f5997;border-color: #2f5997;color: #fff;width: 100px;border-radius: 0" data-dismiss="modal">关闭</button> </div> </div><!-- /.modal-content --> </div><!-- /.modal --> </div> <!--二维码--> <div class="modal fade" id="modal-a4" tabindex="-1" role="dialog" aria-labelledby="myModalLabel1" aria-hidden="true" data-backdrop="static"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button> </div> <div class="modal-body"> <div class="text-center"> <img src="/assets/images/wxgzh.png" style="display:inline-block; height: 200px;width:auto;"> </div> </div> <div class="modal-footer"> <button type="button" class="btn" style="height: 35px;background: #2f5997;border-color: #2f5997;color: #fff;width: 100px;border-radius: 0" data-dismiss="modal">关闭</button> </div> </div><!-- /.modal-content --> </div><!-- /.modal --> </div> </body> <script> var captchaObj2=""; var handler = function (captchaObj) { captchaObj2 = captchaObj; captchaObj2.onSuccess(function () { var result = captchaObj2.getValidate(); if (!result) { return alert('请完成验证'); } toSearchMain(result); }).onError(function () { // return alert('请完成验证'); }); }; var standardId; var handler3 = function (captchaObj) { captchaObj3 = captchaObj; captchaObj3.onSuccess(function () { var result = captchaObj3.getValidate(); if (!result) { return alert('请完成验证'); } goDetail(standardId,result); }).onError(function () { // return alert('请完成验证'); }); }; function toDetail(id) { //if(!ajaxValidateLogin(toDetail)){ // return; //} standardId = id goDetail(id); //captchaObj3.verify(); } function goDetail(id){ //var gc='?geetest_challenge='+result.geetest_challenge+"&geetest_validate="+result.geetest_validate+"&geetest_seccode="+result.geetest_seccode; window.open("/user/detail/"+id); } function doSearch() { captchaObj2.verify(); //toSearchMain(); } function hotSearch(keyword) { $("#keyword").val(keyword); captchaObj2.verify(); //toSearchMain(); } function toSearchMain(result) { var keyword = $("#keyword").val(); //alert(keyword); if(keyword==''){ $("#keyword").focus(); return; } var b = true; $.ajax({ async: false, dataType:"json", url: "/sensitiveWordCheck", data:{"keywords":encodeURI(keyword)}, success:function(data){ b = data.b; } }); if(b){ var gc='&geetest_challenge='+result.geetest_challenge+"&geetest_validate="+result.geetest_validate+"&geetest_seccode="+result.geetest_seccode; location.href = "/user/searchR?keyword="+encodeURI(encodeURI(keyword))+"&pageNo=1"+gc; }else{ swal({type: "info",title:"搜索内容包含敏感词!",showConfirmButton: true}); } } $.ajax({ url: "/gc/geetest/query?t=" + (new Date()).getTime(), // 加随机数防止缓存 type: "get", dataType: "json", success: function (data) { // 调用 initGeetest 进行初始化 // 参数1:配置参数 // 参数2:回调,回调的第一个参数验证码对象,之后可以使用它调用相应的接口 initGeetest({ // 以下 4 个配置参数为必须,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用户后台检测极验服务器是否宕机 new_captcha: data.new_captcha, // 用于宕机时表示是新验证码的宕机 product: "bind", // 产品形式,包括:float,popup width: "300px" // 更多配置参数说明请参见:http://docs.geetest.com/install/client/web-front/ }, handler); } }); $.ajax({ url: "/gc/geetest/query?t=" + (new Date()).getTime(), // 加随机数防止缓存 type: "get", dataType: "json", success: function (data) { // 调用 initGeetest 进行初始化 // 参数1:配置参数 // 参数2:回调,回调的第一个参数验证码对象,之后可以使用它调用相应的接口 initGeetest({ // 以下 4 个配置参数为必须,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用户后台检测极验服务器是否宕机 new_captcha: data.new_captcha, // 用于宕机时表示是新验证码的宕机 product: "bind", // 产品形式,包括:float,popup width: "300px" // 更多配置参数说明请参见:http://docs.geetest.com/install/client/web-front/ }, handler3); } }); </script> </html>

Pages: 1 2 3 4 5 6 7 8 9 10