如何治療甲亢
發(fā)布時間:2020-03-1655800次收聽
語音內(nèi)容:
甲亢指的是
甲狀腺功能亢進,患者血液中分泌了過多的甲狀腺激素,治療的主要的目標是為了減少甲狀腺激素分泌或者是降低甲狀腺激素的功能,來達到保護臟器、減輕患者癥狀的目的。臨床上,目前主流的治療甲亢有三種方法,第1個是藥物治療,第2個是碘131治療,第3個是手術治療。目前藥物治療是中國首選的治療方案,比如臨床上常用的臨床上常用的丙硫氧嘧啶等藥物,大多數(shù)患者藥物治療效果滿意,但是也需要密切觀察這些藥物可能造成的
副作用,比如引起白細胞減少以及
肝功能損害等等;
一般來說,如果患者在藥物治療失敗、藥物過敏、嚴重藥物的副作用的情況下可以考慮碘131治療,但是孕婦或者是產(chǎn)后的患者是禁用碘131的。針對藥物治療效果差或合并增大的甲狀腺造成嚴重并發(fā)癥,有壓迫癥狀的患者,可以考慮手術治療。同時飲食方面需要忌碘飲食,注意休息,避免勞累熬夜。
分享到微信朋友圈
×
打開微信,點擊底部的“發(fā)現(xiàn)”,
使用“掃一掃”即可將網(wǎng)頁分享至朋友圈。
'
}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 轉化為指定格式的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;
}
}