慢性結(jié)腸炎嚴(yán)重嗎
發(fā)布時(shí)間:2020-06-2856104次瀏覽
慢性結(jié)腸炎是否嚴(yán)重取決于病情輕重。如果輕度慢性結(jié)腸炎,并沒有明顯臨床表現(xiàn),這時(shí)不嚴(yán)重。重度慢性結(jié)腸炎往往很嚴(yán)重,會(huì)影響正常生活,引起并發(fā)癥。
輕度慢性結(jié)腸炎可能不會(huì)出現(xiàn)臨床癥狀,或僅有輕微表現(xiàn),并不會(huì)影響正常生活和工作,這時(shí)病情不嚴(yán)重。不過仍然要重視治療和護(hù)理,因?yàn)檩p度慢性結(jié)腸炎也有可能發(fā)展為較嚴(yán)重慢性結(jié)腸炎,到時(shí)候不僅治療難度會(huì)加大,危害性也會(huì)增加。
慢性結(jié)腸炎病情加重,不僅會(huì)影響患者正常生活,而且還會(huì)引起多種嚴(yán)重并發(fā)癥,如引起腸穿孔、中毒性腸擴(kuò)張、結(jié)腸息肉或便血等。
'
}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 ''
}
}
// 對(duì)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;
}
}