麻疹是如何進行分期的
發(fā)布時間:2020-06-1963635次瀏覽
麻疹根據(jù)病癥變化幾表現(xiàn)癥狀,可以分為:潛伏期、前驅(qū)期、出疹期、恢復(fù)期。
1、潛伏期
通常為10~14天左右,而在潛伏期末前1~2天,患者在呼吸、咳嗽、打噴嚏時,呼吸道的分泌物已經(jīng)排出麻疹病毒。
2、前驅(qū)期
通常在3~5天,患者存在明顯呼吸道感染性癥狀,伴有發(fā)熱、頭暈、呼吸異常、胸悶等。
3、出疹期
出生期通常在發(fā)熱后3~5天左右。尤其是在發(fā)熱高峰期,面部、四肢、軀干、胸部、背部等會出現(xiàn)大小不一、數(shù)量不等的皮疹,皮疹間相互融合呈大面積出現(xiàn),同時向身體其他部位進行擴散。
4、恢復(fù)期
出診3~4天左右會逐漸進入恢復(fù)期?;謴?fù)期麻疹數(shù)量逐漸減少,按照出疹順序開始消退。
'
}else{
return ''
}
}
function loadHtmlVoice(list){
if(list){
if(list.litpic){
return '
'
+'
'+ list.title +' '
+'
'
+'
'
+'
'
+''
+'
'
+'
'
+'
'+ (list.format_description || list.format_description) +'
'
+'
'
+'
'
+'
'
+'
'
+'
'
}else{
return '
'
+'
'
+'
'+ list.title +' '
+'
'
+'
'+ (list.format_description || list.format_description) +'
'
+'
'
+'
'
+'
'
+'
'
}
}else{
return ''
}
}
function loadHtmlArticle(list){
if(list){
return '
'
+ (list.litpic ? '

' : '')
+'
'
+'
'+ list.title +' '
+'
'
+'
'+ (list.format_description || list.format_description) +'
'
+'
'
+'
'
+'
'
+'
'
}else{
return ''
}
}
function loadHtmlAsk(list){
if(list){
return '
'
}else{
return ''
}
}
// 對Date的擴展,將 Date 轉(zhuǎn)化為指定格式的String
// 月(M)、日(d)、小時(H)、分(m)、秒(s)、季度(q) 可以用 1-2 個占位符,
// 年(y)可以用 1-4 個占位符,毫秒(S)只能用 1 個占位符(是 1-3 位的數(shù)字)
// 例子:
// date_format("yyyy-MM-dd HH:mm:ss.S") ==> 2006-07-02 08:09:04.423
// date_format("yyyy-M-d H:m:s.S") ==> 2006-7-2 8:9:4.18
function date_format(time, fmt) { //author: meizz
time = new Date(parseInt(time)*1000)
var o = {
"M+" : time.getMonth()+1, //月份
"d+" : time.getDate(), //日
"h+" : time.getHours(), //小時
"m+" : time.getMinutes(), //分
"s+" : time.getSeconds(), //秒
"q+" : Math.floor((time.getMonth()+3)/3), //季度
"S" : time.getMilliseconds() //毫秒
};
if(/(y+)/.test(fmt))
fmt=fmt.replace(RegExp.$1, (time.getFullYear()+"").substr(4 - RegExp.$1.length));
for(var k in o){
if(new RegExp("("+ k +")").test(fmt))
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length)));
}
return fmt;
}
function timeFt(m,s){
if(m){
return m + ':' + s;
}else{
return s;
}
}
function dataFilter(data, str){
str = str || '';
if(data){
return data;
}else{
return str;
}
}