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">×</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">×</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"> 594,779,033 </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"> 262,032,614 </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"> 332,746,419 </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">GB/T 12706.1-2020《额定电压1 kV(Um=1.2 kV)到35 kV(Um=40.5 kV)挤包绝缘电力电缆及附件 第1部分:额定电压1 kV(Um=1.2 kV)和3 kV(Um=3.6 kV)电缆》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 08:14:27</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('2103a189c92388a9241f51fb67613889610b6d21860357648af56e2a36f94f5f1667e8270e92630f8ddeed1ee4fdb693')" 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/NR 26-2025《杂鱼一扫光》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 08:04:33</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('c10dfc3811992690eb443cbdff724fbe40124c89907e41efdc228d5c2a647a351667e8270e92630f8ddeed1ee4fdb693')" 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/JZLZD 033-2025《混合型饲料添加剂 硝酸硫胺(维生素B1)》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 08:04:05</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('663fba318b240cddc98f82d1c004623469bbc31c9c7231aa4db8263c4d0622421667e8270e92630f8ddeed1ee4fdb693')" 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">GB/T 12706.1-2020《额定电压1 kV(Um=1.2 kV)到35 kV(Um=40.5 kV)挤包绝缘电力电缆及附件 第1部分:额定电压1 kV(Um=1.2 kV)和3 kV(Um=3.6 kV)电缆》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 08:03:07</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('611a14d4724c4d81d9eda7ffd3aea295825efc098ab321cd13b16022ab31c23e1667e8270e92630f8ddeed1ee4fdb693')" 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">Q/O500DKN 006-2024《采油用调剖剂 聚合物类》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 07:59: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('fb50b1823714e7da360fb3f9763dfa13102340736e63ef51a8a7ad45454134961667e8270e92630f8ddeed1ee4fdb693')" 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/EMSD 01-2019《针织泳衣》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 07:57:08</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('131ea04deda2339e31f8a36586105816f073dc9c8fa8ed52d49708be8a2d46f61667e8270e92630f8ddeed1ee4fdb693')" 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/O500DKN 003-2024《采油用延迟交联调剖剂 复合热塑树脂 DKT-3 II型》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 07:56: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('61f1e784eb778e4bdc63460be496fd66308556dd326a0545d8a128815e93fca71667e8270e92630f8ddeed1ee4fdb693')" 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/HFGF 016-2024《复合植物精油(青蒿油、蓖麻油)农用增效剂》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 07:52:57</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('b418e7ce3d5170874a7b048c5f473867a2dcdddb8ad847c1f4bebf8af8db5a421667e8270e92630f8ddeed1ee4fdb693')" 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/310118000007C220-2025《阻聚剂(醇类)》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 07:48:02</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('3d1ced59ff783c30f8dc76d566ac69e7')" 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/310118000007C222-2025《阻聚剂(芳烃类)》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 07:48:01</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('fffff901403270efa2dbd968531b3d66')" 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/310118000007C221-2025《阻聚剂(二甲苯类)》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 07:48:01</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('ef5154f3f66f20c4f8a3af9ba563c09a')" 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/GZYFL 002-2025《私处清洁洗液》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 07:47:23</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('4a4a2238fd913abd81c93d6a8ade16f504511e0b806149f62a20a95e1535ae511667e8270e92630f8ddeed1ee4fdb693')" 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">GB/T 20977-2007《糕点通则》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 07:42:23</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('a3c5c3a065e7e589d647aa34f40e900e90fc18ac695508d1ebf1749605ea09221667e8270e92630f8ddeed1ee4fdb693')" 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/321283JSXFM 001-2025《食品包装用(PET)塑料瓶》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 07: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('c143feb65091668427322865ea40a55d64a3855cd99f52e077e6d14c4dad23901667e8270e92630f8ddeed1ee4fdb693')" 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/DLJ 003-2024《抑菌口腔膏》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 07:14:07</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('222fa8a9b2a041ded57c9231556d061cb6f7d6fbb9de05d8e0472cb40f2b3d871667e8270e92630f8ddeed1ee4fdb693')" 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">T/ CMEAS 030-2024《儿童哮喘标准化门诊建设规范》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 04:00:14</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('6a97dffeb1794ddbe845cce886d9bc6b636f3ec529aa5d12a58e92e4e74a74f11667e8270e92630f8ddeed1ee4fdb693')" 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">GB/T 30323-2013《二手车鉴定评估技术规范》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 02:40:01</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('042d271725f91fe144f806b15e30d6a90b74e24b15c62e7102cbedd7baa8ee851667e8270e92630f8ddeed1ee4fdb693')" 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">T/ CADA18-2021《乘用车鉴定评估技术规范》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 02:34: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('fa9c0ed91a76d14dc413d9bb39da21c448e74a68a7bc06fa1105d684780cb3501667e8270e92630f8ddeed1ee4fdb693')" 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/HZSW 005-2025《混合型饲料添加剂 酶制剂》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 01:21:47</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('90cda9c35c58156843ee104c4144c8deddcc4815be28d675406f3a87673249cb1667e8270e92630f8ddeed1ee4fdb693')" 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/JCW 0002S-2025《米粉制品》</td> <td class="tab-color-2" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" width='150'>2025-04-09 00:15:07</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('2558a3656f3b728318076c40997757c96155322975d2d15c4bd9a7f50ac8c9291667e8270e92630f8ddeed1ee4fdb693')" 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">×</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">×</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>