肝性腦病是如何進(jìn)行分期的
發(fā)布時(shí)間:2020-07-0356096次瀏覽
根據(jù)病程發(fā)展,臨床上把肝性腦病分為五期,分別是潛伏期、前驅(qū)期、昏迷前期、昏睡期、昏迷期。
1、潛伏期
肝性腦病處在潛伏期時(shí),患者并沒有明顯行為、性格異常,腦電圖正常,只是在心理測試或智力測試時(shí)出現(xiàn)輕微異常表現(xiàn)。
2、前驅(qū)期
肝性腦病發(fā)病初期,患者會有焦慮、激動、健忘等輕度精神異常表現(xiàn),大多數(shù)患者腦電圖檢查正常。
3、昏迷前期
隨病情加重,患者會出現(xiàn)嗜睡、行為異常、言語不清等表現(xiàn),此時(shí)腦電圖檢查也會有特異性異常,屬于昏迷前期。
4、昏睡期
肝性腦病進(jìn)入昏睡期時(shí),患者會長時(shí)間昏睡,但可喚醒,喚醒時(shí)也可應(yīng)答,不過患者常會神志不清,出現(xiàn)幻覺,腦電圖也明顯異常。
5、昏迷期
這是肝性腦病最嚴(yán)重階段,患者昏迷、無法喚醒、腱反射消失、肌張力降低等,此時(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的擴(kuò)展,將 Date 轉(zhuǎn)化為指定格式的String
// 月(M)、日(d)、小時(shí)(H)、分(m)、秒(s)、季度(q) 可以用 1-2 個(gè)占位符,
// 年(y)可以用 1-4 個(gè)占位符,毫秒(S)只能用 1 個(gè)占位符(是 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(), //小時(shí)
"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;
}
}