123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522 |
- //随访项目数据
- //--------------------随访模板------------------------
- //-----type 1-文本输入,2-radio选择,3-checkbox, 4-textarea
- //-----textType :string, number ,date (type == 1时,才区分)
- var gTemplate = {
- // - 症状
- "1":{
- "NO_SYMPTOM":{
- "label": "无症状",
- "type": 3
- },
- "HEADACHE":{
- "label": "头痛头晕",
- "type": 3
- },
- "NAUSEA":{
- "label": "恶心呕吐",
- "type": 3
- },
- "VERTIGO_TINNITUS":{
- "label": "眼花耳鸣",
- "type": 3
- },
- "DIFFICULTY_BREATHING":{
- "label": "呼吸困难",
- "type": 3
- },
- "PALPITATIONS":{
- "label": "心悸胸闷",
- "type": 3
- },
- "EPISTAXIS_BLEEDING":{
- "label": "鼻衄出血不止",
- "type": 3
- },
- "LIMBS_NUMB":{
- "label": "四肢发麻",
- "type": 3
- },
- "EXTREMITY_EDEMA":{
- "label": "下肢水肿",
- "type": 3
- },
- "POLYDIPSIA":{
- "label": "多饮",
- "type": 3
- },
- "MORE_FOOD":{
- "label": "多食",
- "type": 3
- },
- "MORE_URINE":{
- "label": "多尿",
- "type": 3
- },
- "BLURRED_VISION":{
- "label": "视力模糊",
- "type": 3
- },
- "INFECTION":{
- "label": "感染",
- "type": 3
- },
- "NUMB_HANDS":{
- "label": "四肢麻痹",
- "type": 3
- },
- "WEIGHT_LOSS":{
- "label": "体重下降",
- "type": 3
- },
- "HYPOG_REACT_CODE":{
- "label": "低血糖反应",
- "type": 2,
- "items": {
- "0": "无",
- "1": "偶尔",
- "2": "频繁"
- }
- }
- },
- //-体征
- "2":{
- "HEIGHT":{
- "label":"身高",
- "type":1,
- "unit":"cm",
- "textType": "number"
- },
- "WEIGHT":{
- "label":"近期体重",
- "type":1,
- "unit":"kg",
- "textType": "number"
- },
-
- "HEART_RATE":{
- "label":"近期心率",
- "type":1,
- "unit":"次/分",
- "textType": "number"
- },
- "DAILY_SMOKING":{
- "label":"日吸烟量",
- "type":5,
- "name":"DAILY_SMOKING",
- "unit":"支",
- "textType": "number",
- "items":{
- "0": "不吸烟",
- "1": "吸烟"
- }
- },
- "DAILY_DRINKING":{
- "label":"日饮酒量",
- "type":5,
- "name":"DAILY_DRINKING",
- "unit":"两",
- "textType": "number",
- "items":{
- "0": "不饮酒",
- "1": "饮酒"
- }
- },
- "EXERCISE_FREQ_CODE":{
- "label":"运动频率",
- "type":2,
- "items":{
- "1": "每周≤三次",
- "2": "每周>三次",
- "3": "极少运动",
- "4": "残疾、关节等原因不能运动",
- "99": "不详"
- }
- },
- "EXERCISE_DURATION_MINS":{
- "label":"运动时长",
- "type":1,
- "unit":"分钟/次",
- "textType": "number"
- },
- "SALT_TAKEN_LEVEL_CODE":{
- "label":"摄盐情况",
- "type":2,
- "items":{
- "1": "轻",
- "2": "中",
- "3": "重"
- }
- },
- "DAILY_STAPLE":{
- "label":"主食",
- "type":1,
- "unit":"克/天",
- "textType":"number"
- }
- },
- //-实验室检查
- "3":{
- "BS_FPG":{
- "label":"空腹血糖",
- "type":1,
- "unit":"mmol/L",
- "textType": "number"
- },
- "NO_BS_FPG":{
- "label":"餐后血糖",
- "type":1,
- "unit":"mmol/L",
- "textType": "number"
- },
- "RANDOM_BLOOD_SUGAR": {
- "label":"随机血糖",
- "type":1,
- "unit":"mmol/L",
- "textType": "number"
- },
- "GHB":{
- "label":"糖化血红蛋白",
- "type":1,
- "unit":"%",
- "textType": "number"
- },
- "BLOOD_FAT_TRIGLYCERIDE":{
- "label":"甘油三酯",
- "type":1,
- "unit":"mmol/L",
- "textType": "number"
- },
- "BLOOD_FAT_TC":{
- "label":"总胆固醇",
- "type":1,
- "unit":"mmol/L",
- "textType": "number"
- },
- "BLOOD_FAT_LDLC":{
- "label":"低密度脂蛋白",
- "type":1,
- "unit":"mmol/L",
- "textType": "number"
- }
- },
- //-生活方式指导
- "4":{
- "DAILY_SMOKING":{
- "label":"日吸烟量",
- "type":1,
- "unit":"支",
- "textType": "number"
- },
- "SOMKING_EXP":{
- "label":"日吸烟量期望",
- "type":1,
- "unit":"支",
- "textType": "number"
- },
- "DAILY_DRINKING":{
- "label":"日饮酒量",
- "type":1,
- "unit":"两",
- "textType": "number"
- },
- "DRINK_EXP":{
- "label":"日饮酒量期望",
- "type":1,
- "unit":"两",
- "textType": "number"
- },
- "EXERCISE_FREQ_CODE":{
- "label":"运动频率",
- "type":2,
- "required": true,
- "items":{
- "1": "每周〈=三次",
- "2": "每周〉三次",
- "3": "极少运动",
- "4": "残疾、关节等原因不能运动",
- "99": "不详"
- }
- },
- "EXERCISE_DURATION_MINS":{
- "label":"",
- "type":1,
- "unit":"分钟/次",
- "textType": "number"
- },
- "EXERCISE_FREQ_CODE_EXP":{
- "label":"运动频率期望",
- "type":2,
- "items":{
- "1": "每周〈=三次",
- "2": "每周〉三次",
- "3": "极少运动",
- "4": "残疾、关节等原因不能运动",
- "99": "不详"
- }
- },
- "EXERCISE_DURATION_MINS_EXP":{
- "label":"",
- "type":1,
- "unit":"分钟/次",
- "textType": "number"
- },
- "SALT_TAKEN_LEVEL_CODE":{
- "label":"摄盐情况",
- "type":2,
- "required": true,
- "items":{
- "1": "轻",
- "2": "中",
- "3": "重"
- }
- },
- "SALT_TAKEN_LEVEL_EXP":{
- "label":"摄盐情况期望",
- "type":2,
- "items":{
- "1": "轻",
- "2": "中",
- "3": "重"
- }
- },
- "PSY_ADJUST_RESULT_CODE":{
- "label":"心理调整",
- "type":2,
- "items":{
- "1": "理想",
- "2": "良好",
- "3": "一般",
- "4": "差"
- }
- },
- "COMPLIANCE_RESULT_CODE":{
- "label":"遵医行为",
- "type":2,
- "items":{
- "1": "理想",
- "2": "良好",
- "3": "一般",
- "4": "差"
- }
- },
- "DAILY_STAPLE":{
- "label":"主食",
- "type":1,
- "unit":"克/天",
- "textType":"number"
- }
- },
- // - 评价
- "5":{
- "HYP_FOLLOWUP_TYPE_CODE":{
- "label":"高血压随访分类",
- "required":true,
- "type":2,
- "items":{
- "1": "控制满意",
- "2": "控制不满意",
- "3": "不良反应",
- "4": "并发症",
- "5": "控制一般"
- }
- },
- "HYP_COMPLICATION_DETAIL":{
- "label":"详情",
- "type":4,
- "row": 3,
- "maxLength": 100
- },
- "DIA_FOLLOWUP_TYPE_CODE":{
- "label":"糖尿病随访分类",
- "required":true,
- "type":2,
- "items":{
- "1": "控制满意",
- "2": "控制不满意",
- "3": "不良反应",
- "4": "并发症",
- "5": "控制一般"
- }
- },
- "DIA_COMPLICATION_DETAIL":{
- "label":"详情",
- "type":4,
- "row": 3,
- "maxLength": 100
- }
- },
- // - 用药情况
- "6":{
- "DRUG_COMPLIANCE_CODE":{
- "label": "服药依从性",
- "type": 2,
- "items":{
- "1":"规律服药",
- "2": "间断服药",
- "3": "不服药"
- }
- },
- "DRUG_LIST":{
- "label":"用药记录",
- "type":"json"
- }
- },
- // - 控制目标
- "7":{
- "CONTROL_DATE":{
- "label":"控制日期",
- "type":1,
- "textType": "date"
- },
- "CONTROL_CONSTITUTOR":{
- "label":"制定者",
- "type":1,
- "textType": "string",
- "readonly":"readonly"
- },
- "CONTROL_BP_U":{
- "label":"收缩压",
- "type":1,
- "unit": "mmHg",
- "textType": "number"
- },
- "CONTROL_BP_D":{
- "label":"舒张压",
- "type":1,
- "unit": "mmHg",
- "textType": "number"
- },
- "CONTROL_BS_FPG":{
- "label":"空腹血糖",
- "type":1,
- "unit": "mmol/L",
- "textType": "number"
- },
- "CONTROL_NO_BS_FPG":{
- "label":"餐后血糖",
- "type":1,
- "unit": "mmol/L",
- "textType": "number"
- },
- "CONTROL_GHB":{
- "label":"糖化血红蛋白",
- "type":1,
- "unit": "%",
- "textType": "number"
- },
- "CONTROL_TRIGLYCERIDE":{
- "label":"甘油三酯",
- "type":1,
- "unit": "mmol/L",
- "textType": "number"
- },
- "CONTROL_TOTAL_CHOLESTEROL":{
- "label":"总胆固醇",
- "type":1,
- "unit": "mmol/L",
- "textType": "number"
- },
- "CONTROL_LDL":{
- "label":"低密度脂蛋白",
- "type":1,
- "unit": "mmol/L",
- "textType": "number"
- },
- "CONTROL_WEIGHT":{
- "label":"体重",
- "type":1,
- "unit": "Kg",
- "textType": "number"
- },
- "CONTROL_EXERCISE_FREQ_CODE":{
- "label":"运动频率",
- "type":2,
- "items":{
- "1": "每周〈=三次",
- "2": "每周〉三次",
- "3": "极少运动",
- "4": "残疾、关节等原因不能运动",
- "99": "不详"
- }
- },
- "CONTROL_EXERCISE_DURATION_MINS":{
- "label":"运动时长",
- "type":1,
- "unit": "分钟/次",
- "textType": "number"
- }
- },
- //- 健康教育
- "8":{
- "ARCHIVE_TIME":{
- "label":"日期",
- "type":1,
- "textType": "date"
- },
- "ARCHIVE_OPERATOR_NAME":{
- "label":"记录者",
- "type":1,
- "textType": "string"
- },
- "HEALTH_EDUCATE":{
- "label":"健康教育",
- "type":1,
- "textType": "select",
- "list":{1:"高血压健康教育",2:"糖尿病健康教育",3:"低盐饮食",4:"自定义高血压健康教育",5:"自定义糖尿病健康教育",6:"高糖并存健康教育处方"}
- },
- "EDUCATE_CONTENT":{
- "label":"教育内容",
- "type":4,
- "row": 8,
- "maxLength": 2000
- }
- },
- //- 转诊
- "9":{
- "DRUG_ADVERSE_MARK":{
- "label":"药物不良反应",
- "type": 2,
- "items":{
- "0": "无",
- "1": "有"
- }
- },
- "ADR_REMARK":{
- "label":"药物不良反应(内容)",
- "type":4,
- "row": 3,
- "maxLength": 200
- },
- "TRANSFER_RESON":{
- "label":"转诊原因",
- "type":4,
- "required": true,
- "row": 3,
- "maxLength": 200
- },
- "TRANSFER_ORG_DEPT":{
- "label":"转诊机构科室",
- "type":4,
- "required": true,
- "row": 3,
- "maxLength": 200,
- "link":{
- "text": "从代预约记录获取",
- "url": "dyy_history.html",
- "type":"dyy"
- }
- },
- "DISAGREE_TRANSFER":{
- "label":"患者拒绝转诊",
- "type":3,
- "row": 3,
- "maxLength": 200,
- "hide":{
- "type":4,
- "row": 3,
- "maxLength": 200
- }
- }
- }
- }
|