[关键字]: 重庆
食品药品监督管理局
药品质量
抽验
不合格
讯:
近日,重庆市食品药品监督管理局发布2010年第三期药品质量公告。2010年6月1日至11月30日,重庆市各级食品药品监督管理部门共完成药品抽验996个品种5808批次,抽验不合格药品172批次,总体合格率为97.04%。其中评价性抽验567批,不合格x批...
jQuery(document).ready(function() {
$("body").keydown(function(event) {
if (event.keyCode == "13"&&$("#Mynologin").css("display")=="block") {
$("#logsubmit1").click();
return false;
} });
CloseErrMag();
$("#MyTxtUserName").focus(function cls() {
//捕获触发事件的对象,并设置为以下语句的默认对象
with (event.srcElement)
//如果当前值为默认值,则清空
if (value == '用户名/UID') value = ""
});
$("#MyTxtUserName").blur(function res() {
//捕获触发事件的对象,并设置为以下语句的默认对象
with (event.srcElement)
//如果当前值为空,则重置为默认值
if (value == "") value ="用户名/UID"
});
$("#MyTxtPassWord").focus(function cls() {
//捕获触发事件的对象,并设置为以下语句的默认对象
with (event.srcElement)
//如果当前值为默认值,则清空
if (value == '******') value = ""
});
$("#MyTxtPassWord").blur(function res() {
//捕获触发事件的对象,并设置为以下语句的默认对象
with (event.srcElement)
//如果当前值为空,则重置为默认值
if (value == "") value ="******"
});
ContentpdLmqx();
});
//判断权限
function ContentpdLmqx()
{
var err = "";
var user = $.cookie('userName'); // 获得cookie
//没有cookie显示简介和登陆窗口
if (user == null) {
//alert(222);
//alert($.cookie('cook'+'414117'));
//alert($.cookie('qxType'+'414117'));
//alert($.cookie('qxError'+'414117'));
jQuery("#Mynologin").show();
jQuery("#Myhaslogin").hide();
}
//判断权限
else
{
if($.cookie('cook'+'414117')=="true")
{
if($.cookie('qxType'+'414117')=="1")
{
jQuery("#Mynologin").hide();
jQuery("#Myhaslogin").hide();
}
else
{
jQuery("#Mynologin").hide();
jQuery("#Myhaslogin").show();
err = "
"+$.cookie('qxError'+'414117')+"";
jQuery("#myErrmag").html(err);
OpenErrMag();
}
$.cookie('cook'+'414117', null,{ path: '/' }); // 设置cookie
$.cookie('qxType'+'414117', null,{ path: '/' }); // 设置cookie
$.cookie('qxError'+'414117', null,{ path: '/' }); // 设置cookie
}
else
{
}
}
}
function OpenErrMag()
{
//打开无权限提示
jQuery("#my_dow1").show();
jQuery("#errMag").show();
}
function CloseErrMag()
{
//关闭收藏
jQuery("#my_dow1").hide();
jQuery("#errMag").hide();
}
function SetCookie(name,value){
expires=new Date();
expires.setTime(expires.getTime()+(86400*365));
document.cookie=name+"="+value+"; expires="+expires.toGMTString()+"; path=/";
}
function JsGetCookie(sName) {
var aCookie = document.cookie.split("; ");
for (var i = 0; i < aCookie.length; i++) {
var aCrumb = aCookie[i].split("=");
if (sName == aCrumb[0])
return unescape(aCrumb[1]);
}
return null;
}