template_gxy.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522
  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. },
  82. //-体征
  83. "2":{
  84. "HEIGHT":{
  85. "label":"身高",
  86. "type":1,
  87. "unit":"cm",
  88. "textType": "number"
  89. },
  90. "WEIGHT":{
  91. "label":"近期体重",
  92. "type":1,
  93. "unit":"kg",
  94. "textType": "number"
  95. },
  96. "HEART_RATE":{
  97. "label":"近期心率",
  98. "type":1,
  99. "unit":"次/分",
  100. "textType": "number"
  101. },
  102. "DAILY_SMOKING":{
  103. "label":"日吸烟量",
  104. "type":5,
  105. "name":"DAILY_SMOKING",
  106. "unit":"支",
  107. "textType": "number",
  108. "items":{
  109. "0": "不吸烟",
  110. "1": "吸烟"
  111. }
  112. },
  113. "DAILY_DRINKING":{
  114. "label":"日饮酒量",
  115. "type":5,
  116. "name":"DAILY_DRINKING",
  117. "unit":"两",
  118. "textType": "number",
  119. "items":{
  120. "0": "不饮酒",
  121. "1": "饮酒"
  122. }
  123. },
  124. "EXERCISE_FREQ_CODE":{
  125. "label":"运动频率",
  126. "type":2,
  127. "items":{
  128. "1": "每周≤三次",
  129. "2": "每周>三次",
  130. "3": "极少运动",
  131. "4": "残疾、关节等原因不能运动",
  132. "99": "不详"
  133. }
  134. },
  135. "EXERCISE_DURATION_MINS":{
  136. "label":"运动时长",
  137. "type":1,
  138. "unit":"分钟/次",
  139. "textType": "number"
  140. },
  141. "SALT_TAKEN_LEVEL_CODE":{
  142. "label":"摄盐情况",
  143. "type":2,
  144. "items":{
  145. "1": "轻",
  146. "2": "中",
  147. "3": "重"
  148. }
  149. },
  150. "DAILY_STAPLE":{
  151. "label":"主食",
  152. "type":1,
  153. "unit":"克/天",
  154. "textType":"number"
  155. }
  156. },
  157. //-实验室检查
  158. "3":{
  159. "BS_FPG":{
  160. "label":"空腹血糖",
  161. "type":1,
  162. "unit":"mmol/L",
  163. "textType": "number"
  164. },
  165. "NO_BS_FPG":{
  166. "label":"餐后血糖",
  167. "type":1,
  168. "unit":"mmol/L",
  169. "textType": "number"
  170. },
  171. "RANDOM_BLOOD_SUGAR": {
  172. "label":"随机血糖",
  173. "type":1,
  174. "unit":"mmol/L",
  175. "textType": "number"
  176. },
  177. "GHB":{
  178. "label":"糖化血红蛋白",
  179. "type":1,
  180. "unit":"%",
  181. "textType": "number"
  182. },
  183. "BLOOD_FAT_TRIGLYCERIDE":{
  184. "label":"甘油三酯",
  185. "type":1,
  186. "unit":"mmol/L",
  187. "textType": "number"
  188. },
  189. "BLOOD_FAT_TC":{
  190. "label":"总胆固醇",
  191. "type":1,
  192. "unit":"mmol/L",
  193. "textType": "number"
  194. },
  195. "BLOOD_FAT_LDLC":{
  196. "label":"低密度脂蛋白",
  197. "type":1,
  198. "unit":"mmol/L",
  199. "textType": "number"
  200. }
  201. },
  202. //-生活方式指导
  203. "4":{
  204. "DAILY_SMOKING":{
  205. "label":"日吸烟量",
  206. "type":1,
  207. "unit":"支",
  208. "textType": "number"
  209. },
  210. "SOMKING_EXP":{
  211. "label":"日吸烟量期望",
  212. "type":1,
  213. "unit":"支",
  214. "textType": "number"
  215. },
  216. "DAILY_DRINKING":{
  217. "label":"日饮酒量",
  218. "type":1,
  219. "unit":"两",
  220. "textType": "number"
  221. },
  222. "DRINK_EXP":{
  223. "label":"日饮酒量期望",
  224. "type":1,
  225. "unit":"两",
  226. "textType": "number"
  227. },
  228. "EXERCISE_FREQ_CODE":{
  229. "label":"运动频率",
  230. "type":2,
  231. "required": true,
  232. "items":{
  233. "1": "每周〈=三次",
  234. "2": "每周〉三次",
  235. "3": "极少运动",
  236. "4": "残疾、关节等原因不能运动",
  237. "99": "不详"
  238. }
  239. },
  240. "EXERCISE_DURATION_MINS":{
  241. "label":"",
  242. "type":1,
  243. "unit":"分钟/次",
  244. "textType": "number"
  245. },
  246. "EXERCISE_FREQ_CODE_EXP":{
  247. "label":"运动频率期望",
  248. "type":2,
  249. "items":{
  250. "1": "每周〈=三次",
  251. "2": "每周〉三次",
  252. "3": "极少运动",
  253. "4": "残疾、关节等原因不能运动",
  254. "99": "不详"
  255. }
  256. },
  257. "EXERCISE_DURATION_MINS_EXP":{
  258. "label":"",
  259. "type":1,
  260. "unit":"分钟/次",
  261. "textType": "number"
  262. },
  263. "SALT_TAKEN_LEVEL_CODE":{
  264. "label":"摄盐情况",
  265. "type":2,
  266. "required": true,
  267. "items":{
  268. "1": "轻",
  269. "2": "中",
  270. "3": "重"
  271. }
  272. },
  273. "SALT_TAKEN_LEVEL_EXP":{
  274. "label":"摄盐情况期望",
  275. "type":2,
  276. "items":{
  277. "1": "轻",
  278. "2": "中",
  279. "3": "重"
  280. }
  281. },
  282. "PSY_ADJUST_RESULT_CODE":{
  283. "label":"心理调整",
  284. "type":2,
  285. "items":{
  286. "1": "理想",
  287. "2": "良好",
  288. "3": "一般",
  289. "4": "差"
  290. }
  291. },
  292. "COMPLIANCE_RESULT_CODE":{
  293. "label":"遵医行为",
  294. "type":2,
  295. "items":{
  296. "1": "理想",
  297. "2": "良好",
  298. "3": "一般",
  299. "4": "差"
  300. }
  301. },
  302. "DAILY_STAPLE":{
  303. "label":"主食",
  304. "type":1,
  305. "unit":"克/天",
  306. "textType":"number"
  307. }
  308. },
  309. // - 评价
  310. "5":{
  311. "HYP_FOLLOWUP_TYPE_CODE":{
  312. "label":"高血压随访分类",
  313. "required":true,
  314. "type":2,
  315. "items":{
  316. "1": "控制满意",
  317. "2": "控制不满意",
  318. "3": "不良反应",
  319. "4": "并发症",
  320. "5": "控制一般"
  321. }
  322. },
  323. "HYP_COMPLICATION_DETAIL":{
  324. "label":"详情",
  325. "type":4,
  326. "row": 3,
  327. "maxLength": 100
  328. },
  329. "DIA_FOLLOWUP_TYPE_CODE":{
  330. "label":"糖尿病随访分类",
  331. "required":true,
  332. "type":2,
  333. "items":{
  334. "1": "控制满意",
  335. "2": "控制不满意",
  336. "3": "不良反应",
  337. "4": "并发症",
  338. "5": "控制一般"
  339. }
  340. },
  341. "DIA_COMPLICATION_DETAIL":{
  342. "label":"详情",
  343. "type":4,
  344. "row": 3,
  345. "maxLength": 100
  346. }
  347. },
  348. // - 用药情况
  349. "6":{
  350. "DRUG_COMPLIANCE_CODE":{
  351. "label": "服药依从性",
  352. "type": 2,
  353. "items":{
  354. "1":"规律服药",
  355. "2": "间断服药",
  356. "3": "不服药"
  357. }
  358. },
  359. "DRUG_LIST":{
  360. "label":"用药记录",
  361. "type":"json"
  362. }
  363. },
  364. // - 控制目标
  365. "7":{
  366. "CONTROL_DATE":{
  367. "label":"控制日期",
  368. "type":1,
  369. "textType": "date"
  370. },
  371. "CONTROL_CONSTITUTOR":{
  372. "label":"制定者",
  373. "type":1,
  374. "textType": "string",
  375. "readonly":"readonly"
  376. },
  377. "CONTROL_BP_U":{
  378. "label":"收缩压",
  379. "type":1,
  380. "unit": "mmHg",
  381. "textType": "number"
  382. },
  383. "CONTROL_BP_D":{
  384. "label":"舒张压",
  385. "type":1,
  386. "unit": "mmHg",
  387. "textType": "number"
  388. },
  389. "CONTROL_BS_FPG":{
  390. "label":"空腹血糖",
  391. "type":1,
  392. "unit": "mmol/L",
  393. "textType": "number"
  394. },
  395. "CONTROL_NO_BS_FPG":{
  396. "label":"餐后血糖",
  397. "type":1,
  398. "unit": "mmol/L",
  399. "textType": "number"
  400. },
  401. "CONTROL_GHB":{
  402. "label":"糖化血红蛋白",
  403. "type":1,
  404. "unit": "%",
  405. "textType": "number"
  406. },
  407. "CONTROL_TRIGLYCERIDE":{
  408. "label":"甘油三酯",
  409. "type":1,
  410. "unit": "mmol/L",
  411. "textType": "number"
  412. },
  413. "CONTROL_TOTAL_CHOLESTEROL":{
  414. "label":"总胆固醇",
  415. "type":1,
  416. "unit": "mmol/L",
  417. "textType": "number"
  418. },
  419. "CONTROL_LDL":{
  420. "label":"低密度脂蛋白",
  421. "type":1,
  422. "unit": "mmol/L",
  423. "textType": "number"
  424. },
  425. "CONTROL_WEIGHT":{
  426. "label":"体重",
  427. "type":1,
  428. "unit": "Kg",
  429. "textType": "number"
  430. },
  431. "CONTROL_EXERCISE_FREQ_CODE":{
  432. "label":"运动频率",
  433. "type":2,
  434. "items":{
  435. "1": "每周〈=三次",
  436. "2": "每周〉三次",
  437. "3": "极少运动",
  438. "4": "残疾、关节等原因不能运动",
  439. "99": "不详"
  440. }
  441. },
  442. "CONTROL_EXERCISE_DURATION_MINS":{
  443. "label":"运动时长",
  444. "type":1,
  445. "unit": "分钟/次",
  446. "textType": "number"
  447. }
  448. },
  449. //- 健康教育
  450. "8":{
  451. "ARCHIVE_TIME":{
  452. "label":"日期",
  453. "type":1,
  454. "textType": "date"
  455. },
  456. "ARCHIVE_OPERATOR_NAME":{
  457. "label":"记录者",
  458. "type":1,
  459. "textType": "string"
  460. },
  461. "HEALTH_EDUCATE":{
  462. "label":"健康教育",
  463. "type":1,
  464. "textType": "select",
  465. "list":{1:"高血压健康教育",2:"糖尿病健康教育",3:"低盐饮食",4:"自定义高血压健康教育",5:"自定义糖尿病健康教育",6:"高糖并存健康教育处方"}
  466. },
  467. "EDUCATE_CONTENT":{
  468. "label":"教育内容",
  469. "type":4,
  470. "row": 8,
  471. "maxLength": 2000
  472. }
  473. },
  474. //- 转诊
  475. "9":{
  476. "DRUG_ADVERSE_MARK":{
  477. "label":"药物不良反应",
  478. "type": 2,
  479. "items":{
  480. "0": "无",
  481. "1": "有"
  482. }
  483. },
  484. "ADR_REMARK":{
  485. "label":"药物不良反应(内容)",
  486. "type":4,
  487. "row": 3,
  488. "maxLength": 200
  489. },
  490. "TRANSFER_RESON":{
  491. "label":"转诊原因",
  492. "type":4,
  493. "required": true,
  494. "row": 3,
  495. "maxLength": 200
  496. },
  497. "TRANSFER_ORG_DEPT":{
  498. "label":"转诊机构科室",
  499. "type":4,
  500. "required": true,
  501. "row": 3,
  502. "maxLength": 200,
  503. "link":{
  504. "text": "从代预约记录获取",
  505. "url": "dyy_history.html",
  506. "type":"dyy"
  507. }
  508. },
  509. "DISAGREE_TRANSFER":{
  510. "label":"患者拒绝转诊",
  511. "type":3,
  512. "row": 3,
  513. "maxLength": 200,
  514. "hide":{
  515. "type":4,
  516. "row": 3,
  517. "maxLength": 200
  518. }
  519. }
  520. }
  521. }