硅沉著病嚴(yán)重嗎
發(fā)布時間:2020-07-0354576次瀏覽
硅沉著病是職業(yè)病,不能及時治療后期會出現(xiàn)慢性肺心病,呼吸衰竭,氣胸等疾病。從業(yè)人員應(yīng)該注意做好日常防護(hù),患病后要及時治療。
作為比較嚴(yán)重的職業(yè)病,硅沉著病的患者沒有及時的對癥治療,早期常有胸悶、胸痛的感覺,胸痛很輕,呈腫痛、鈍痛、刺痛,與呼吸、體位、勞動無關(guān)。吸入矽塵可引起刺激性咳嗽,病發(fā)感染或吸煙者可咳痰,少數(shù)患者可能有血痰,導(dǎo)致患者出現(xiàn)肺心病呼吸衰竭、氣胸等疾病。
在日常生活中可適當(dāng)鍛煉,增強(qiáng)機(jī)體免疫力,預(yù)防或減少并發(fā)癥的發(fā)生。通過后期的康復(fù)訓(xùn)練改善肺功能,提高患者生活質(zhì)量,就可以延長患者生命。
'
}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)、小時(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;
}
}