template_gxy.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  1. //随访项目数据
  2. //--------------------随访模板------------------------
  3. //-----type 1-文本输入,2-radio选择,3-checkbox, 4-textarea
  4. //-----textType :string, number ,date (type == 1时,才区分)
  5. var gTemplate = {
  6. // - 症状
  7. "1":{
  8. "NO_SYMPTOM":{
  9. "label": "无症状",
  10. "type": 3
  11. },
  12. "HEADACHE":{
  13. "label": "头痛头晕",
  14. "type": 3
  15. },
  16. "NAUSEA":{
  17. "label": "恶心呕吐",
  18. "type": 3
  19. },
  20. "VERTIGO_TINNITUS":{
  21. "label": "眼花耳鸣",
  22. "type": 3
  23. },
  24. "DIFFICULTY_BREATHING":{
  25. "label": "呼吸困难",
  26. "type": 3
  27. },
  28. "PALPITATIONS":{
  29. "label": "心悸胸闷",
  30. "type": 3
  31. },
  32. "EPISTAXIS_BLEEDING":{
  33. "label": "鼻衄出血不止",
  34. "type": 3
  35. },
  36. "LIMBS_NUMB":{
  37. "label": "四肢发麻",
  38. "type": 3
  39. },
  40. "EXTREMITY_EDEMA":{
  41. "label": "下肢水肿",
  42. "type": 3
  43. },
  44. "POLYDIPSIA":{
  45. "label": "多饮",
  46. "type": 3
  47. },
  48. "MORE_FOOD":{
  49. "label": "多食",
  50. "type": 3
  51. },
  52. "MORE_URINE":{
  53. "label": "多尿",
  54. "type": 3
  55. },
  56. "BLURRED_VISION":{
  57. "label": "视力模糊",
  58. "type": 3
  59. },
  60. "INFECTION":{
  61. "label": "感染",
  62. "type": 3
  63. },
  64. "NUMB_HANDS":{
  65. "label": "四肢麻痹",
  66. "type": 3
  67. },
  68. "WEIGHT_LOSS":{
  69. "label": "体重下降",
  70. "type": 3
  71. },
  72. "HYPOG_REACT_CODE":{
  73. "label": "低血糖反应",
  74. "type": 2,
  75. "items": {
  76. "0": "无",
  77. "1": "偶尔",
  78. "2": "频繁"
  79. }
  80. },
  81. "SYMPTOM_OTHER":{
  82. "label": "其他",
  83. "type":4,
  84. "row": 2,
  85. "maxLength": 100
  86. }
  87. },
  88. //-体征
  89. "2":{
  90. "BP_U":{
  91. "label":"收缩压",
  92. "type":1,
  93. "unit":"mmHg",
  94. "textType": "number",
  95. "required":true
  96. },
  97. "BP_D":{
  98. "label":"舒张压",
  99. "type":1,
  100. "unit":"mmHg",
  101. "textType": "number",
  102. "required":true
  103. },
  104. "WEIGHT":{
  105. "label":"体重",
  106. "type":1,
  107. "unit":"Kg",
  108. "textType": "number"
  109. },
  110. "WEIGHT_EXP":{
  111. "label":"期望体重",
  112. "type":1,
  113. "unit":"Kg",
  114. "textType": "number"
  115. },
  116. "HEIGHT":{
  117. "label":"身高",
  118. "type":1,
  119. "unit":"cm",
  120. "textType": "number"
  121. },
  122. "HEART_RATE":{
  123. "label":"心率",
  124. "type":1,
  125. "unit":"次/分",
  126. "textType": "number"
  127. },
  128. "POFDA_MARK":{
  129. "label":"足背动脉搏动",
  130. "type":2,
  131. "items": {
  132. "1":"未触及",
  133. "2":"触及"
  134. }
  135. },
  136. "BMI":{
  137. "label":"体质指数",
  138. "type":1,
  139. "textType": "string",
  140. "readonly": "readonly"
  141. },
  142. "BMI_EXP":{
  143. "label":"期望体质指数",
  144. "type":1,
  145. "textType": "string",
  146. "readonly": "readonly"
  147. },
  148. "OTHER_POSITIVE_SIGNS":{
  149. "label":"其他",
  150. "type":1,
  151. "textType": "string"
  152. }
  153. },
  154. //-实验室检查
  155. "3":{
  156. "EXAM_DATE":{
  157. "label":"检查日期",
  158. "type":1,
  159. "textType": "date"
  160. },
  161. "BS_FPG":{
  162. "label":"空腹血糖",
  163. "type":1,
  164. "unit":"mmol/L",
  165. "textType": "number",
  166. },
  167. "NO_BS_FPG":{
  168. "label":"餐后血糖",
  169. "type":1,
  170. "unit":"mmol/L",
  171. "textType": "number",
  172. },
  173. "RANDOM_BLOOD_SUGAR": {
  174. "label":"随机血糖",
  175. "type":1,
  176. "unit":"mmol/L",
  177. "textType": "number",
  178. },
  179. "GHB":{
  180. "label":"糖化血红蛋白",
  181. "type":1,
  182. "unit":"%",
  183. "textType": "number"
  184. },
  185. "BLOOD_FAT_TRIGLYCERIDE":{
  186. "label":"甘油三酯",
  187. "type":1,
  188. "unit":"mmol/L",
  189. "textType": "number"
  190. },
  191. "BLOOD_FAT_TC":{
  192. "label":"总胆固醇",
  193. "type":1,
  194. "unit":"mmol/L",
  195. "textType": "number"
  196. },
  197. "BLOOD_FAT_LDLC":{
  198. "label":"低密度脂蛋白",
  199. "type":1,
  200. "unit":"mmol/L",
  201. "textType": "number"
  202. },
  203. "RENAL_FUNCTION_CREATININE":{
  204. "label":"血清肌酐",
  205. "type":1,
  206. "unit":"umol/L",
  207. "textType": "number"
  208. },
  209. "RENAL_FUNCTION_BUN":{
  210. "label":"血尿素氮",
  211. "type":1,
  212. "unit":"mmol/L",
  213. "textType": "number"
  214. },
  215. "MICROALBUMINURIA":{
  216. "label":"尿微量白蛋白",
  217. "type":1,
  218. "unit":"μg/min",
  219. "textType": "number"
  220. }
  221. },
  222. //-生活方式指导
  223. "4":{
  224. "DAILY_SMOKING":{
  225. "label":"日吸烟量",
  226. "type":1,
  227. "unit":"支",
  228. "textType": "number"
  229. },
  230. "SOMKING_EXP":{
  231. "label":"日吸烟量期望",
  232. "type":1,
  233. "unit":"支",
  234. "textType": "number"
  235. },
  236. "DAILY_DRINKING":{
  237. "label":"日饮酒量",
  238. "type":1,
  239. "unit":"两",
  240. "textType": "number"
  241. },
  242. "DRINK_EXP":{
  243. "label":"日饮酒量期望",
  244. "type":1,
  245. "unit":"两",
  246. "textType": "number"
  247. },
  248. "EXERCISE_FREQ_CODE":{
  249. "label":"运动频率",
  250. "type":2,
  251. // "required": true,
  252. "items":{
  253. "1": "每周〈=三次",
  254. "2": "每周〉三次",
  255. "3": "极少运动",
  256. "4": "残疾、关节等原因不能运动",
  257. "99": "不详"
  258. }
  259. },
  260. "EXERCISE_DURATION_MINS":{
  261. "label":"运动时长",
  262. "type":1,
  263. "unit":"分钟/次",
  264. "textType": "number"
  265. },
  266. "EXERCISE_FREQ_CODE_EXP":{
  267. "label":"运动频率期望",
  268. "type":2,
  269. "items":{
  270. "1": "每周〈=三次",
  271. "2": "每周〉三次",
  272. "3": "极少运动",
  273. "4": "残疾、关节等原因不能运动",
  274. "99": "不详"
  275. }
  276. },
  277. "EXERCISE_DURATION_MINS_EXP":{
  278. "label":"运动时长期望",
  279. "type":1,
  280. "unit":"分钟/次",
  281. "textType": "number"
  282. },
  283. "SALT_TAKEN_LEVEL_CODE":{
  284. "label":"摄盐情况",
  285. "type":2,
  286. // "required": true,
  287. "items":{
  288. "1": "轻",
  289. "2": "中",
  290. "3": "重"
  291. }
  292. },
  293. "SALT_TAKEN_LEVEL_EXP":{
  294. "label":"摄盐情况期望",
  295. "type":2,
  296. "items":{
  297. "1": "轻",
  298. "2": "中",
  299. "3": "重"
  300. }
  301. },
  302. "PSY_ADJUST_RESULT_CODE":{
  303. "label":"心理调整",
  304. "type":2,
  305. "items":{
  306. "1": "理想",
  307. "2": "良好",
  308. "3": "一般",
  309. "4": "差"
  310. }
  311. },
  312. "COMPLIANCE_RESULT_CODE":{
  313. "label":"遵医行为",
  314. "type":2,
  315. "items":{
  316. "1": "理想",
  317. "2": "良好",
  318. "3": "一般",
  319. "4": "差"
  320. }
  321. },
  322. "DAILY_STAPLE":{
  323. "label":"主食",
  324. "type":1,
  325. "unit":"克/天",
  326. "textType":"number"
  327. }
  328. },
  329. // - 评价
  330. "5":{
  331. "HYP_FOLLOWUP_TYPE_CODE":{
  332. "label":"高血压随访分类",
  333. "required":true,
  334. "type":2,
  335. "items":{
  336. "1": "控制满意",
  337. "2": "控制不满意",
  338. "3": "不良反应",
  339. "4": "并发症",
  340. "5": "控制一般"
  341. }
  342. },
  343. "HYP_COMPLICATION_DETAIL":{
  344. "label":"详情",
  345. "type":4,
  346. "row": 3,
  347. "maxLength": 100
  348. },
  349. "DIA_FOLLOWUP_TYPE_CODE":{
  350. "label":"糖尿病随访分类",
  351. "required":true,
  352. "type":2,
  353. "items":{
  354. "1": "控制满意",
  355. "2": "控制不满意",
  356. "3": "不良反应",
  357. "4": "并发症",
  358. "5": "控制一般"
  359. }
  360. },
  361. "DIA_COMPLICATION_DETAIL":{
  362. "label":"详情",
  363. "type":4,
  364. "row": 3,
  365. "maxLength": 100
  366. }
  367. },
  368. // - 用药情况
  369. "6":{
  370. "DRUG_COMPLIANCE_CODE":{
  371. "label": "服药依从性",
  372. "type": 2,
  373. "items":{
  374. "1":"规律服药",
  375. "2": "间断服药",
  376. "3": "不服药"
  377. }
  378. },
  379. "DRUG_LIST":{
  380. "label":"用药记录",
  381. "type":"json"
  382. }
  383. },
  384. // - 控制目标
  385. "7":{
  386. "CONTROL_DATE":{
  387. "label":"控制日期",
  388. "type":1,
  389. "textType": "date"
  390. },
  391. "CONTROL_CONSTITUTOR":{
  392. "label":"制定者",
  393. "type":1,
  394. "textType": "string",
  395. "readonly":"readonly"
  396. },
  397. "CONTROL_BP_U":{
  398. "label":"收缩压",
  399. "type":1,
  400. "unit": "mmHg",
  401. "textType": "number"
  402. },
  403. "CONTROL_BP_D":{
  404. "label":"舒张压",
  405. "type":1,
  406. "unit": "mmHg",
  407. "textType": "number"
  408. },
  409. "CONTROL_BS_FPG":{
  410. "label":"空腹血糖",
  411. "type":1,
  412. "unit": "mmol/L",
  413. "textType": "number"
  414. },
  415. "CONTROL_NO_BS_FPG":{
  416. "label":"餐后血糖",
  417. "type":1,
  418. "unit": "mmol/L",
  419. "textType": "number"
  420. },
  421. "CONTROL_GHB":{
  422. "label":"糖化血红蛋白",
  423. "type":1,
  424. "unit": "%",
  425. "textType": "number"
  426. },
  427. "CONTROL_TRIGLYCERIDE":{
  428. "label":"甘油三酯",
  429. "type":1,
  430. "unit": "mmol/L",
  431. "textType": "number"
  432. },
  433. "CONTROL_TOTAL_CHOLESTEROL":{
  434. "label":"总胆固醇",
  435. "type":1,
  436. "unit": "mmol/L",
  437. "textType": "number"
  438. },
  439. "CONTROL_LDL":{
  440. "label":"低密度脂蛋白",
  441. "type":1,
  442. "unit": "mmol/L",
  443. "textType": "number"
  444. },
  445. "CONTROL_WEIGHT":{
  446. "label":"体重",
  447. "type":1,
  448. "unit": "Kg",
  449. "textType": "number"
  450. },
  451. "CONTROL_EXERCISE_FREQ_CODE":{
  452. "label":"运动频率",
  453. "type":2,
  454. "items":{
  455. "1": "每周〈=三次",
  456. "2": "每周〉三次",
  457. "3": "极少运动",
  458. "4": "残疾、关节等原因不能运动",
  459. "99": "不详"
  460. }
  461. },
  462. "CONTROL_EXERCISE_DURATION_MINS":{
  463. "label":"运动时长",
  464. "type":1,
  465. "unit": "分钟/次",
  466. "textType": "number"
  467. }
  468. },
  469. //- 健康教育
  470. "8":{
  471. "ARCHIVE_TIME":{
  472. "label":"日期",
  473. "type":1,
  474. "textType": "date"
  475. },
  476. "ARCHIVE_OPERATOR_NAME":{
  477. "label":"记录者",
  478. "type":1,
  479. "textType": "string"
  480. },
  481. "HEALTH_EDUCATE":{
  482. "label":"健康教育",
  483. "required":true,
  484. "type":1,
  485. "textType": "select",
  486. "list":{1:"高血压健康教育",2:"糖尿病健康教育",3:"低盐饮食",4:"自定义高血压健康教育",5:"自定义糖尿病健康教育",6:"高糖并存健康教育处方"}
  487. },
  488. "EDUCATE_CONTENT":{
  489. "label":"教育内容",
  490. "type":4,
  491. "row": 8,
  492. "maxLength": 2000
  493. }
  494. },
  495. //- 转诊
  496. "9":{
  497. "DRUG_ADVERSE_MARK":{
  498. "label":"药物不良反应",
  499. "type": 2,
  500. "items":{
  501. "0": "无",
  502. "1": "有"
  503. }
  504. },
  505. "ADR_REMARK":{
  506. "label":"药物不良反应(内容)",
  507. "type":4,
  508. "row": 3,
  509. "maxLength": 200
  510. },
  511. "TRANSFER_RESON":{
  512. "label":"转诊原因",
  513. "type":4,
  514. "required": true,
  515. "row": 3,
  516. "maxLength": 200
  517. },
  518. "TRANSFER_ORG_DEPT":{
  519. "label":"转诊机构科室",
  520. "type":4,
  521. "required": true,
  522. "row": 3,
  523. "maxLength": 200,
  524. "link":{
  525. "text": "从代预约记录获取",
  526. "url": "dyy_history.html",
  527. "type":"dyy"
  528. }
  529. },
  530. "DISAGREE_TRANSFER":{
  531. "label":"患者拒绝转诊",
  532. "type":3,
  533. "row": 3,
  534. "maxLength": 200,
  535. "hide":{
  536. "type":4,
  537. "row": 3,
  538. "maxLength": 200
  539. }
  540. }
  541. }
  542. }