腎病綜合征的癥狀有哪些
發(fā)布時(shí)間:2018-09-2054764次播放
視頻內(nèi)容:
對(duì)于
腎病綜合征的患者來(lái)說(shuō),其主要的臨床癥狀是水腫。輕癥的腎病綜合征患者,主要是出現(xiàn)下垂部位的水腫,比如患者的足踝部以及小腿脛前的部位會(huì)出現(xiàn)水腫;嚴(yán)重的腎病綜合征患者,這種水腫會(huì)腫到大腿的部位。對(duì)于低白蛋白血癥嚴(yán)重的病人,可能會(huì)出現(xiàn)腹水,甚至還可以出現(xiàn)
胸腔積液。另外,因?yàn)樗c潴留而引起的高血壓,也是腎病綜合征患者的常見(jiàn)的癥狀。
除此之外,因?yàn)槟I病綜合征的患者,有可能會(huì)出現(xiàn)各種并發(fā)癥,如果患者合并急性腎功能不全,可能會(huì)出現(xiàn)少尿、水潴留,而且會(huì)出現(xiàn)高血壓以及血肌酐明顯升高的情況;如果患者并發(fā)
下肢靜脈血栓,會(huì)出現(xiàn)血栓的癥狀,出現(xiàn)雙下肢粗細(xì)不一;如果病人有合并感染的情況,就還可能會(huì)出現(xiàn)咳嗽、咳痰等肺部感染的癥狀。
分享到微信朋友圈
×
用微信“掃一掃”圖中二維碼,
即可把視頻分享給您的微信好友或朋友圈。
'
}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;
}
}