Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

globalConfig.js 44KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607
  1. const global_config = {
  2. state: {
  3. patient_types: [ // 患者类型
  4. {
  5. id: 1,
  6. name: '血透患者',
  7. type: 1
  8. },
  9. {
  10. id: 2,
  11. name: '腹透患者',
  12. type: 2
  13. }
  14. ],
  15. partitions: [ // 病区
  16. {
  17. id: 1,
  18. name: 'A区'
  19. },
  20. {
  21. id: 2,
  22. name: 'B区'
  23. },
  24. {
  25. id: 3,
  26. name: 'C区'
  27. }
  28. ],
  29. marital_options: [ // 婚姻状况
  30. {
  31. id: 1,
  32. name: '未婚'
  33. },
  34. {
  35. id: 2,
  36. name: '已婚'
  37. },
  38. {
  39. id: 3,
  40. name: '离异'
  41. }
  42. ],
  43. reimbursement_ways: [ // 报销方式
  44. {
  45. id: 1,
  46. name: '职工医保'
  47. },
  48. {
  49. id: 2,
  50. name: '居民医保'
  51. },
  52. {
  53. id: 3,
  54. name: '离休医保'
  55. },
  56. {
  57. id: 4,
  58. name: '杭州医保'
  59. },
  60. {
  61. id: 5,
  62. name: '退休医保'
  63. },
  64. {
  65. id: 6,
  66. name: '其他'
  67. },
  68. {
  69. id: 7,
  70. name: '异地市域'
  71. },
  72. {
  73. id: 8,
  74. name: '异地省域'
  75. }
  76. ],
  77. blood_types: [ // 血型
  78. {
  79. id: 1,
  80. name: 'A'
  81. },
  82. {
  83. id: 2,
  84. name: 'B'
  85. },
  86. {
  87. id: 3,
  88. name: 'AB'
  89. },
  90. {
  91. id: 4,
  92. name: 'O'
  93. },
  94. {
  95. id: 5,
  96. name: '不详'
  97. }
  98. ],
  99. rh: [{
  100. id: 1,
  101. name: '阴性'
  102. },
  103. {
  104. id: 2,
  105. name: '阳性'
  106. },
  107. {
  108. id: 3,
  109. name: '不详'
  110. },
  111. {
  112. id: 4,
  113. name: '未查'
  114. }
  115. ],
  116. education_types: [ // 文化程度
  117. {
  118. id: 1,
  119. name: '小学毕业'
  120. },
  121. {
  122. id: 2,
  123. name: '初中毕业'
  124. },
  125. {
  126. id: 3,
  127. name: '高中毕业'
  128. },
  129. {
  130. id: 4,
  131. name: '中等技术学校,职业学校毕业'
  132. },
  133. {
  134. id: 5,
  135. name: '大专或大学毕业'
  136. },
  137. {
  138. id: 6,
  139. name: '硕士以上'
  140. }
  141. ],
  142. profession_options: [ // 职业
  143. {
  144. id: 1,
  145. name: '在家'
  146. },
  147. {
  148. id: 2,
  149. name: '国家,党群组织,企事业人员'
  150. },
  151. {
  152. id: 3,
  153. name: '专业技术人员'
  154. },
  155. {
  156. id: 4,
  157. name: '非技术工作或普通工人'
  158. },
  159. {
  160. id: 5,
  161. name: '商业,服务业人员'
  162. },
  163. {
  164. id: 6,
  165. name: '农业,牧渔,水利生产人员'
  166. },
  167. {
  168. id: 7,
  169. name: '生产,运输设备操作人员及有关人员'
  170. },
  171. {
  172. id: 8,
  173. name: '军人'
  174. },
  175. {
  176. id: 9,
  177. name: '不便分类的其他人员'
  178. },
  179. {
  180. id: 10,
  181. name: '无业'
  182. },
  183. {
  184. id: 11,
  185. name: '灵活就业人员'
  186. },
  187. {
  188. id: 12,
  189. name: '退休人员'
  190. }
  191. ],
  192. induction_options: [ // 诱导期
  193. {
  194. id: 1,
  195. name: '无'
  196. },
  197. {
  198. id: 2,
  199. name: '一周'
  200. },
  201. {
  202. id: 3,
  203. name: '两周'
  204. },
  205. {
  206. id: 4,
  207. name: '三周'
  208. },
  209. {
  210. id: 5,
  211. name: '四周'
  212. },
  213. {
  214. id: 6,
  215. name: '五周'
  216. },
  217. {
  218. id: 7,
  219. name: '六周'
  220. },
  221. {
  222. id: 8,
  223. name: '七周'
  224. },
  225. {
  226. id: 9,
  227. name: '八周'
  228. }
  229. ],
  230. contagions: [ // 传染病
  231. // {
  232. // id: 1,
  233. // name: '普通',
  234. // type: 1
  235. // },
  236. {
  237. id: 2,
  238. name: '乙肝',
  239. type: 2
  240. },
  241. {
  242. id: 3,
  243. name: '丙肝',
  244. type: 2
  245. },
  246. {
  247. id: 4,
  248. name: '艾滋病',
  249. type: 2
  250. },
  251. {
  252. id: 5,
  253. name: '肺结核',
  254. type: 2
  255. },
  256. {
  257. id: 6,
  258. name: '梅毒',
  259. type: 2
  260. }
  261. ],
  262. disease: [ // 慢性病
  263. {
  264. id: 1,
  265. name: '慢性病'
  266. },
  267. {
  268. id: 2,
  269. name: '神经病'
  270. },
  271. {
  272. id: 3,
  273. name: '抑郁症'
  274. }
  275. ],
  276. treatment_mode: { // 治疗模式
  277. 1: {
  278. id: 1,
  279. name: 'HD',
  280. dialysis_duration: 1,
  281. replacement_way: 2,
  282. hemodialysis_machine: 1,
  283. blood_filter: 2,
  284. perfusion_apparatus: 2,
  285. blood_flow_volume: 1,
  286. dialysate_flow: 1,
  287. kalium: 1,
  288. sodium: 1,
  289. calcium: 1,
  290. bicarbonate: 1
  291. },
  292. 2: {
  293. id: 2,
  294. name: 'HDF',
  295. dialysis_duration: 1,
  296. replacement_way: 1,
  297. hemodialysis_machine: 2,
  298. blood_filter: 1,
  299. perfusion_apparatus: 2,
  300. blood_flow_volume: 1,
  301. dialysate_flow: 1,
  302. kalium: 1,
  303. sodium: 1,
  304. calcium: 1,
  305. bicarbonate: 1
  306. },
  307. 3: {
  308. id: 3,
  309. name: 'HD+HP',
  310. dialysis_duration: 1,
  311. replacement_way: 2,
  312. hemodialysis_machine: 1,
  313. blood_filter: 2,
  314. perfusion_apparatus: 1,
  315. blood_flow_volume: 1,
  316. dialysate_flow: 1,
  317. kalium: 1,
  318. sodium: 1,
  319. calcium: 1,
  320. bicarbonate: 1
  321. },
  322. 4: {
  323. id: 4,
  324. name: 'HP',
  325. dialysis_duration: 1,
  326. replacement_way: 2,
  327. hemodialysis_machine: 2,
  328. blood_filter: 2,
  329. perfusion_apparatus: 1,
  330. blood_flow_volume: 1,
  331. dialysate_flow: 2,
  332. kalium: 2,
  333. sodium: 2,
  334. calcium: 2,
  335. bicarbonate: 2
  336. },
  337. 5: {
  338. id: 5,
  339. name: 'HF',
  340. dialysis_duration: 1,
  341. replacement_way: 1,
  342. hemodialysis_machine: 2,
  343. blood_filter: 1,
  344. perfusion_apparatus: 2,
  345. blood_flow_volume: 1,
  346. dialysate_flow: 2,
  347. kalium: 1,
  348. sodium: 1,
  349. calcium: 1,
  350. bicarbonate: 1
  351. },
  352. 6: {
  353. id: 6,
  354. name: 'SCUF',
  355. dialysis_duration: 1,
  356. replacement_way: 2,
  357. hemodialysis_machine: 1,
  358. blood_filter: 2,
  359. perfusion_apparatus: 2,
  360. blood_flow_volume: 1,
  361. dialysate_flow: 2,
  362. kalium: 2,
  363. sodium: 2,
  364. calcium: 2,
  365. bicarbonate: 2
  366. },
  367. 7: {
  368. id: 7,
  369. name: 'IUF',
  370. dialysis_duration: 1,
  371. replacement_way: 2,
  372. hemodialysis_machine: 1,
  373. blood_filter: 2,
  374. perfusion_apparatus: 2,
  375. blood_flow_volume: 2,
  376. dialysate_flow: 2,
  377. kalium: 2,
  378. sodium: 2,
  379. calcium: 2,
  380. bicarbonate: 2
  381. },
  382. 8: {
  383. id: 8,
  384. name: 'HFHD',
  385. dialysis_duration: 1,
  386. replacement_way: 2,
  387. hemodialysis_machine: 1,
  388. blood_filter: 2,
  389. perfusion_apparatus: 2,
  390. blood_flow_volume: 1,
  391. dialysate_flow: 1,
  392. kalium: 1,
  393. sodium: 1,
  394. calcium: 1,
  395. bicarbonate: 1
  396. },
  397. 9: {
  398. id: 9,
  399. name: 'HFHD+HP',
  400. dialysis_duration: 1,
  401. replacement_way: 2,
  402. hemodialysis_machine: 1,
  403. blood_filter: 2,
  404. perfusion_apparatus: 1,
  405. blood_flow_volume: 1,
  406. dialysate_flow: 1,
  407. kalium: 1,
  408. sodium: 1,
  409. calcium: 1,
  410. bicarbonate: 1
  411. },
  412. 10: {
  413. id: 10,
  414. name: 'PHF',
  415. dialysis_duration: 1,
  416. replacement_way: 1,
  417. hemodialysis_machine: 2,
  418. blood_filter: 1,
  419. perfusion_apparatus: 2,
  420. blood_flow_volume: 1,
  421. dialysate_flow: 1,
  422. kalium: 1,
  423. sodium: 1,
  424. calcium: 1,
  425. bicarbonate: 1
  426. },
  427. 11: {
  428. id: 11,
  429. name: 'HFR',
  430. dialysis_duration: 1,
  431. replacement_way: 2,
  432. hemodialysis_machine: 2,
  433. blood_filter: 1,
  434. perfusion_apparatus: 1,
  435. blood_flow_volume: 1,
  436. dialysate_flow: 1,
  437. kalium: 1,
  438. sodium: 1,
  439. calcium: 1,
  440. bicarbonate: 1
  441. },
  442. 12: {
  443. id: 12,
  444. name: 'HDF+HP',
  445. dialysis_duration: 1,
  446. replacement_way: 1,
  447. hemodialysis_machine: 2,
  448. blood_filter: 1,
  449. perfusion_apparatus: 1,
  450. blood_flow_volume: 1,
  451. dialysate_flow: 1,
  452. kalium: 1,
  453. sodium: 1,
  454. calcium: 1,
  455. bicarbonate: 1
  456. },
  457. 13: {
  458. id: 13,
  459. name: 'CRRT',
  460. dialysis_duration: 1,
  461. replacement_way: 1,
  462. hemodialysis_machine: 2,
  463. blood_filter: 1,
  464. perfusion_apparatus: 2,
  465. blood_flow_volume: 1,
  466. dialysate_flow: 2,
  467. kalium: 1,
  468. sodium: 1,
  469. calcium: 1,
  470. bicarbonate: 1
  471. },
  472. 14: {
  473. id: 14,
  474. name: '腹水回输',
  475. dialysis_duration: 1,
  476. replacement_way: 2,
  477. hemodialysis_machine: 1,
  478. blood_filter: 2,
  479. perfusion_apparatus: 2,
  480. blood_flow_volume: 2,
  481. dialysate_flow: 2,
  482. kalium: 2,
  483. sodium: 2,
  484. calcium: 2,
  485. bicarbonate: 2
  486. },
  487. 19: {
  488. id: 19,
  489. name: 'IUF+HD',
  490. dialysis_duration: 1,
  491. replacement_way: 1,
  492. hemodialysis_machine: 2,
  493. blood_filter: 1,
  494. perfusion_apparatus: 2,
  495. blood_flow_volume: 1,
  496. dialysate_flow: 1,
  497. kalium: 1,
  498. sodium: 1,
  499. calcium: 1,
  500. bicarbonate: 1
  501. },
  502. // 15: { id: 15, name: 'HD前置换', dialysis_duration: 1, replacement_way: 2, hemodialysis_machine: 1, blood_filter: 2, perfusion_apparatus: 2, blood_flow_volume: 1, dialysate_flow: 1, kalium: 1, sodium: 1, calcium: 1, bicarbonate: 1 },
  503. // 16: { id: 16, name: 'HD后置换', dialysis_duration: 1, replacement_way: 2, hemodialysis_machine: 1, blood_filter: 2, perfusion_apparatus: 2, blood_flow_volume: 1, dialysate_flow: 1, kalium: 1, sodium: 1, calcium: 1, bicarbonate: 1 },
  504. // 17: { id: 17, name: 'HDF前置换', dialysis_duration: 1, replacement_way: 1, hemodialysis_machine: 2, blood_filter: 1, perfusion_apparatus: 2, blood_flow_volume: 1, dialysate_flow: 1, kalium: 1, sodium: 1, calcium: 1, bicarbonate: 1 },
  505. // 18: { id: 18, name: 'HDF后置换', dialysis_duration: 1, replacement_way: 1, hemodialysis_machine: 2, blood_filter: 1, perfusion_apparatus: 2, blood_flow_volume: 1, dialysate_flow: 1, kalium: 1, sodium: 1, calcium: 1, bicarbonate: 1 }
  506. 20: {
  507. id: 20,
  508. name: 'UF',
  509. dialysis_duration: 1,
  510. replacement_way: 1,
  511. hemodialysis_machine: 2,
  512. blood_filter: 1,
  513. perfusion_apparatus: 2,
  514. blood_flow_volume: 1,
  515. dialysate_flow: 1,
  516. kalium: 1,
  517. sodium: 1,
  518. calcium: 1,
  519. bicarbonate: 1
  520. },
  521. 21: {
  522. id: 21,
  523. name: 'HD+',
  524. dialysis_duration: 1,
  525. replacement_way: 1,
  526. hemodialysis_machine: 2,
  527. blood_filter: 1,
  528. perfusion_apparatus: 2,
  529. blood_flow_volume: 1,
  530. dialysate_flow: 1,
  531. kalium: 1,
  532. sodium: 1,
  533. calcium: 1,
  534. bicarbonate: 1
  535. },
  536. 22: {
  537. id: 22,
  538. name: '血浆胆红素吸附+HDF',
  539. dialysis_duration: 1,
  540. replacement_way: 1,
  541. hemodialysis_machine: 2,
  542. blood_filter: 1,
  543. perfusion_apparatus: 2,
  544. blood_flow_volume: 1,
  545. dialysate_flow: 1,
  546. kalium: 1,
  547. sodium: 1,
  548. calcium: 1,
  549. bicarbonate: 1
  550. },
  551. 23: {
  552. id: 23,
  553. name: '血浆胆红素吸附',
  554. dialysis_duration: 1,
  555. replacement_way: 1,
  556. hemodialysis_machine: 2,
  557. blood_filter: 1,
  558. perfusion_apparatus: 2,
  559. blood_flow_volume: 1,
  560. dialysate_flow: 1,
  561. kalium: 1,
  562. sodium: 1,
  563. calcium: 1,
  564. bicarbonate: 1
  565. },
  566. 24: {
  567. id: 24,
  568. name: 'I-HDF',
  569. dialysis_duration: 1,
  570. replacement_way: 1,
  571. hemodialysis_machine: 2,
  572. blood_filter: 1,
  573. perfusion_apparatus: 2,
  574. blood_flow_volume: 1,
  575. dialysate_flow: 1,
  576. kalium: 1,
  577. sodium: 1,
  578. calcium: 1,
  579. bicarbonate: 1
  580. },
  581. 25: {
  582. id: 25,
  583. name: 'HD高通',
  584. dialysis_duration: 1,
  585. replacement_way: 1,
  586. hemodialysis_machine: 2,
  587. blood_filter: 1,
  588. perfusion_apparatus: 2,
  589. blood_flow_volume: 1,
  590. dialysate_flow: 1,
  591. kalium: 1,
  592. sodium: 1,
  593. calcium: 1,
  594. bicarbonate: 1
  595. },
  596. 26: {
  597. id: 26,
  598. name: 'CVVH',
  599. dialysis_duration: 1,
  600. replacement_way: 1,
  601. hemodialysis_machine: 2,
  602. blood_filter: 1,
  603. perfusion_apparatus: 2,
  604. blood_flow_volume: 1,
  605. dialysate_flow: 1,
  606. kalium: 1,
  607. sodium: 1,
  608. calcium: 1,
  609. bicarbonate: 1
  610. },
  611. 27: {
  612. id: 27,
  613. name: 'CVVHD',
  614. dialysis_duration: 1,
  615. replacement_way: 1,
  616. hemodialysis_machine: 2,
  617. blood_filter: 1,
  618. perfusion_apparatus: 2,
  619. blood_flow_volume: 1,
  620. dialysate_flow: 1,
  621. kalium: 1,
  622. sodium: 1,
  623. calcium: 1,
  624. bicarbonate: 1
  625. },
  626. 28: {
  627. id: 28,
  628. name: 'CVVHDF',
  629. dialysis_duration: 1,
  630. replacement_way: 1,
  631. hemodialysis_machine: 2,
  632. blood_filter: 1,
  633. perfusion_apparatus: 2,
  634. blood_flow_volume: 1,
  635. dialysate_flow: 1,
  636. kalium: 1,
  637. sodium: 1,
  638. calcium: 1,
  639. bicarbonate: 1
  640. },
  641. 29: {
  642. id: 29,
  643. name: 'PE',
  644. dialysis_duration: 1,
  645. replacement_way: 1,
  646. hemodialysis_machine: 2,
  647. blood_filter: 1,
  648. perfusion_apparatus: 2,
  649. blood_flow_volume: 1,
  650. dialysate_flow: 1,
  651. kalium: 1,
  652. sodium: 1,
  653. calcium: 1,
  654. bicarbonate: 1
  655. },
  656. 30: {
  657. id: 30,
  658. name: '血浆胆红素吸附+HP',
  659. dialysis_duration: 1,
  660. replacement_way: 1,
  661. hemodialysis_machine: 2,
  662. blood_filter: 1,
  663. perfusion_apparatus: 2,
  664. blood_flow_volume: 1,
  665. dialysate_flow: 1,
  666. kalium: 1,
  667. sodium: 1,
  668. calcium: 1,
  669. bicarbonate: 1
  670. },
  671. 31: {
  672. id: 31,
  673. name: 'HPD',
  674. dialysis_duration: 1,
  675. replacement_way: 1,
  676. hemodialysis_machine: 2,
  677. blood_filter: 1,
  678. perfusion_apparatus: 2,
  679. blood_flow_volume: 1,
  680. dialysate_flow: 1,
  681. kalium: 1,
  682. sodium: 1,
  683. calcium: 1,
  684. bicarbonate: 1
  685. },
  686. 32: {
  687. id: 32,
  688. name: 'HDP',
  689. dialysis_duration: 1,
  690. replacement_way: 1,
  691. hemodialysis_machine: 2,
  692. blood_filter: 1,
  693. perfusion_apparatus: 2,
  694. blood_flow_volume: 1,
  695. dialysate_flow: 1,
  696. kalium: 1,
  697. sodium: 1,
  698. calcium: 1,
  699. bicarbonate: 1
  700. }
  701. },
  702. anticoagulants_confit: { // 抗凝剂
  703. 1: {
  704. id: 1,
  705. name: '无肝素',
  706. type: 1,
  707. shouji: 2,
  708. weichi: 2,
  709. zongliang: 2,
  710. gaimingcheng: -1,
  711. gaijiliang: -1,
  712. shouji_unit: 'mg',
  713. weichi_unit: 'mg/h',
  714. zongliang_unit: 'mg',
  715. gaimingcheng_unit: '',
  716. gaijiliang_unit: ''
  717. },
  718. 2: {
  719. id: 2,
  720. name: '普通肝素',
  721. type: 1,
  722. shouji: 1,
  723. weichi: 1,
  724. zongliang: 1,
  725. gaimingcheng: -1,
  726. gaijiliang: -1,
  727. shouji_unit: 'iu',
  728. weichi_unit: 'iu/h',
  729. zongliang_unit: 'iu',
  730. gaimingcheng_unit: '',
  731. gaijiliang_unit: ''
  732. },
  733. 3: {
  734. id: 3,
  735. name: '低分子肝素',
  736. type: 1,
  737. shouji: 1,
  738. weichi: 1,
  739. zongliang: 1,
  740. gaimingcheng: -1,
  741. gaijiliang: -1,
  742. shouji_unit: 'IU',
  743. weichi_unit: 'IU',
  744. zongliang_unit: 'IU',
  745. gaimingcheng_unit: '',
  746. gaijiliang_unit: ''
  747. },
  748. 4: {
  749. id: 4,
  750. name: '阿加曲班',
  751. type: 1,
  752. shouji: 1,
  753. weichi: 1,
  754. zongliang: 1,
  755. gaimingcheng: -1,
  756. gaijiliang: -1,
  757. shouji_unit: 'mg',
  758. weichi_unit: 'mg/h',
  759. zongliang_unit: 'mg',
  760. gaimingcheng_unit: '',
  761. gaijiliang_unit: ''
  762. },
  763. 5: {
  764. id: 5,
  765. name: '枸橼酸钠',
  766. type: 1,
  767. shouji: -1,
  768. weichi: 1,
  769. zongliang: -1,
  770. gaimingcheng: 1,
  771. gaijiliang: 1,
  772. shouji_unit: '',
  773. weichi_unit: 'ml/h',
  774. zongliang_unit: '',
  775. gaimingcheng_unit: 'ml',
  776. gaijiliang_unit: ''
  777. },
  778. 6: {
  779. id: 6,
  780. name: '低分子肝素钙',
  781. type: 1,
  782. shouji: 1,
  783. weichi: 1,
  784. zongliang: 1,
  785. gaimingcheng: -1,
  786. gaijiliang: -1,
  787. shouji_unit: 'iu',
  788. weichi_unit: 'iu/h',
  789. zongliang_unit: 'iu',
  790. gaimingcheng_unit: '',
  791. gaijiliang_unit: ''
  792. },
  793. 7: {
  794. id: 7,
  795. name: '低分子肝素钠',
  796. type: 1,
  797. shouji: 1,
  798. weichi: 1,
  799. zongliang: 1,
  800. gaimingcheng: -1,
  801. gaijiliang: -1,
  802. shouji_unit: 'iu',
  803. weichi_unit: 'iu/h',
  804. zongliang_unit: 'iu',
  805. gaimingcheng_unit: '',
  806. gaijiliang_unit: ''
  807. },
  808. 8: {
  809. id: 8,
  810. name: '依诺肝素',
  811. type: 1,
  812. shouji: 1,
  813. weichi: 1,
  814. zongliang: 1,
  815. gaimingcheng: -1,
  816. gaijiliang: -1,
  817. shouji_unit: 'iu',
  818. weichi_unit: 'iu/h',
  819. zongliang_unit: 'iu',
  820. gaimingcheng_unit: '',
  821. gaijiliang_unit: ''
  822. },
  823. 9: {
  824. id: 9,
  825. name: '达肝素',
  826. type: 1,
  827. shouji: 1,
  828. weichi: 1,
  829. zongliang: 1,
  830. gaimingcheng: -1,
  831. gaijiliang: -1,
  832. shouji_unit: 'iu',
  833. weichi_unit: 'iu/h',
  834. zongliang_unit: 'iu',
  835. gaimingcheng_unit: '',
  836. gaijiliang_unit: ''
  837. },
  838. 10: {
  839. id: 10,
  840. name: '体外抗凝',
  841. type: 1,
  842. shouji: 1,
  843. weichi: 1,
  844. zongliang: 1,
  845. gaimingcheng: -1,
  846. gaijiliang: -1,
  847. shouji_unit: 'mg',
  848. weichi_unit: 'mg/h',
  849. zongliang_unit: 'mg',
  850. gaimingcheng_unit: '',
  851. gaijiliang_unit: ''
  852. },
  853. 11: {
  854. id: 11,
  855. name: '那屈肝素',
  856. type: 1,
  857. shouji: 1,
  858. weichi: 1,
  859. zongliang: 1,
  860. gaimingcheng: -1,
  861. gaijiliang: -1,
  862. shouji_unit: 'mg',
  863. weichi_unit: 'mg/h',
  864. zongliang_unit: 'mg',
  865. gaimingcheng_unit: '',
  866. gaijiliang_unit: ''
  867. },
  868. 12: {
  869. id: 12,
  870. name: '无抗凝剂',
  871. type: 1,
  872. shouji: 2,
  873. weichi: 2,
  874. zongliang: 2,
  875. gaimingcheng: -1,
  876. gaijiliang: -1,
  877. shouji_unit: 'mg',
  878. weichi_unit: 'mg/h',
  879. zongliang_unit: 'mg',
  880. gaimingcheng_unit: '',
  881. gaijiliang_unit: ''
  882. },
  883. 13: {
  884. id: 13,
  885. name: '那屈肝素钙',
  886. type: 1,
  887. shouji: 1,
  888. weichi: 1,
  889. zongliang: 1,
  890. gaimingcheng: -1,
  891. gaijiliang: -1,
  892. shouji_unit: 'mg',
  893. weichi_unit: 'mg/h',
  894. zongliang_unit: 'mg',
  895. gaimingcheng_unit: '',
  896. gaijiliang_unit: ''
  897. },
  898. 14: {
  899. id: 14,
  900. name: '肝素钙注射液',
  901. type: 1,
  902. shouji: 1,
  903. weichi: 1,
  904. zongliang: 1,
  905. gaimingcheng: -1,
  906. gaijiliang: -1,
  907. shouji_unit: 'mg',
  908. weichi_unit: 'mg/h',
  909. zongliang_unit: 'mg',
  910. gaimingcheng_unit: '',
  911. gaijiliang_unit: ''
  912. },
  913. 15: {
  914. id: 15,
  915. name: '甲磺酸萘莫司他',
  916. type: 1,
  917. shouji: 1,
  918. weichi: 1,
  919. zongliang: 1,
  920. gaimingcheng: -1,
  921. gaijiliang: -1,
  922. shouji_unit: 'mg',
  923. weichi_unit: 'mg/h',
  924. zongliang_unit: 'mg',
  925. gaimingcheng_unit: '',
  926. gaijiliang_unit: ''
  927. },
  928. 16: {
  929. id: 16,
  930. name: '低分子量肝素钙',
  931. type: 1,
  932. shouji: 1,
  933. weichi: 1,
  934. zongliang: 1,
  935. gaimingcheng: -1,
  936. gaijiliang: -1,
  937. shouji_unit: 'iu',
  938. weichi_unit: 'iu/h',
  939. zongliang_unit: 'iu',
  940. gaimingcheng_unit: '',
  941. gaijiliang_unit: ''
  942. }
  943. },
  944. anticoagulants_set: {
  945. type: 2
  946. },
  947. replacement_ways: [{
  948. id: 1,
  949. name: '前置换'
  950. },
  951. {
  952. id: 2,
  953. name: '后置换'
  954. },
  955. {
  956. id: 3,
  957. name: '中置换'
  958. },
  959. {
  960. id: 4,
  961. name: '混合置换'
  962. }
  963. ],
  964. blood_filters: [{
  965. id: 1,
  966. name: '血滤器1'
  967. },
  968. {
  969. id: 2,
  970. name: '血滤器2'
  971. },
  972. {
  973. id: 3,
  974. name: '血滤器3'
  975. },
  976. {
  977. id: 4,
  978. name: '血滤器4'
  979. }
  980. ],
  981. perfusion_apparatus: [{
  982. id: 1,
  983. name: '灌流器1'
  984. },
  985. {
  986. id: 2,
  987. name: '灌流器2'
  988. },
  989. {
  990. id: 3,
  991. name: '灌流器3'
  992. },
  993. {
  994. id: 4,
  995. name: '灌流4'
  996. }
  997. ],
  998. hemodialysis_machines: [{
  999. id: 1,
  1000. name: '血透器1'
  1001. },
  1002. {
  1003. id: 2,
  1004. name: '血透器2'
  1005. },
  1006. {
  1007. id: 3,
  1008. name: '血透器3'
  1009. },
  1010. {
  1011. id: 4,
  1012. name: '血透器4'
  1013. }
  1014. ],
  1015. vascular_access: {
  1016. 1: {
  1017. id: 1,
  1018. name: '左侧'
  1019. },
  1020. 2: {
  1021. id: 2,
  1022. name: '右侧'
  1023. },
  1024. 3: {
  1025. id: 3,
  1026. name: '左鼻咽窝'
  1027. },
  1028. 4: {
  1029. id: 4,
  1030. name: '右鼻咽窝'
  1031. },
  1032. 5: {
  1033. id: 5,
  1034. name: '左前臂腕部'
  1035. },
  1036. 6: {
  1037. id: 6,
  1038. name: '右前臂腕部'
  1039. },
  1040. 7: {
  1041. id: 7,
  1042. name: '左前臂'
  1043. },
  1044. 8: {
  1045. id: 8,
  1046. name: '右前臂'
  1047. },
  1048. 9: {
  1049. id: 9,
  1050. name: '左上臂'
  1051. },
  1052. 10: {
  1053. id: 10,
  1054. name: '右上臂'
  1055. },
  1056. 11: {
  1057. id: 11,
  1058. name: '左下肢'
  1059. },
  1060. 12: {
  1061. id: 12,
  1062. name: '右下肢'
  1063. }
  1064. },
  1065. vascular_access_desc: {
  1066. 1: {
  1067. id: 1,
  1068. name: '自体内瘘'
  1069. },
  1070. 2: {
  1071. id: 2,
  1072. name: '人造血管'
  1073. },
  1074. 3: {
  1075. id: 3,
  1076. name: '直穿'
  1077. },
  1078. 4: {
  1079. id: 4,
  1080. name: '颈内静脉'
  1081. },
  1082. 5: {
  1083. id: 5,
  1084. name: '股静脉'
  1085. },
  1086. 6: {
  1087. id: 6,
  1088. name: '动脉直穿'
  1089. },
  1090. 7: {
  1091. id: 7,
  1092. name: '动静脉直穿'
  1093. },
  1094. 8: {
  1095. id: 8,
  1096. name: '带隧道带绦纶套股静脉导管'
  1097. },
  1098. 9: {
  1099. id: 9,
  1100. name: '带隧道带绦纶套锁骨下静脉导管'
  1101. },
  1102. 10: {
  1103. id: 10,
  1104. name: '带隧道带绦纶套颈内静脉导管'
  1105. },
  1106. 11: {
  1107. id: 11,
  1108. name: '无绦纶套股静脉导管'
  1109. },
  1110. 12: {
  1111. id: 12,
  1112. name: '无绦纶套锁骨下静脉导管'
  1113. },
  1114. 13: {
  1115. id: 13,
  1116. name: '无绦纶套颈内静脉导管'
  1117. },
  1118. 14: {
  1119. id: 14,
  1120. name: '直线型移植血管动静脉内瘘'
  1121. },
  1122. 15: {
  1123. id: 15,
  1124. name: '自体动静脉内瘘'
  1125. },
  1126. 16: {
  1127. id: 16,
  1128. name: '袢型移植血管动静脉内瘘'
  1129. },
  1130. 17: {
  1131. id: 17,
  1132. name: '静脉直穿'
  1133. }
  1134. },
  1135. // 透析液配方
  1136. dialysate_formulation: [{
  1137. id: 1,
  1138. value: '常规',
  1139. name: '常规'
  1140. },
  1141. {
  1142. id: 2,
  1143. value: '低钙(1.25mmol/L)',
  1144. name: '低钙(1.25mmol/L)'
  1145. },
  1146. {
  1147. id: 3,
  1148. value: '高钙(1.75mmol/L)',
  1149. name: '高钙(1.75mmol/L)'
  1150. },
  1151. {
  1152. id: 4,
  1153. value: '低钠(135mmol/L)',
  1154. name: '低钠(135mmol/L)'
  1155. },
  1156. {
  1157. id: 5,
  1158. value: '高钠(145mmol/L)',
  1159. name: '高钠(145mmol/L)'
  1160. }
  1161. ],
  1162. symptoms: [{
  1163. id: 1,
  1164. name: '血压下降'
  1165. },
  1166. {
  1167. id: 2,
  1168. name: '恶心呕吐'
  1169. },
  1170. {
  1171. id: 3,
  1172. name: '肌肉痉挛'
  1173. },
  1174. {
  1175. id: 4,
  1176. name: '血压增高'
  1177. },
  1178. {
  1179. id: 5,
  1180. name: '头痛'
  1181. },
  1182. {
  1183. id: 6,
  1184. name: '胸痛,背痛'
  1185. },
  1186. {
  1187. id: 7,
  1188. name: '休克'
  1189. },
  1190. {
  1191. id: 8,
  1192. name: '低血糖'
  1193. },
  1194. {
  1195. id: 9,
  1196. name: '皮肤瘙痒'
  1197. },
  1198. {
  1199. id: 10,
  1200. name: '静脉压高'
  1201. },
  1202. {
  1203. id: 11,
  1204. name: '静脉压低'
  1205. },
  1206. {
  1207. id: 12,
  1208. name: '血流量不足'
  1209. },
  1210. {
  1211. id: 13,
  1212. name: '透析中体外循环凝血'
  1213. },
  1214. {
  1215. id: 14,
  1216. name: '胃寒发热'
  1217. },
  1218. {
  1219. id: 15,
  1220. name: '无肝素透析'
  1221. },
  1222. {
  1223. id: 16,
  1224. name: '穿刺部位渗血'
  1225. },
  1226. {
  1227. id: 17,
  1228. name: 'A端穿刺点脓性分泌物,更换穿刺点'
  1229. },
  1230. {
  1231. id: 18,
  1232. name: 'A端穿失败至血肿'
  1233. },
  1234. {
  1235. id: 19,
  1236. name: '穿刺针脱落'
  1237. },
  1238. {
  1239. id: 20,
  1240. name: '导管相关血流感染'
  1241. },
  1242. {
  1243. id: 21,
  1244. name: '导管出口处感染:红肿热痛,有异味'
  1245. },
  1246. {
  1247. id: 22,
  1248. name: '首次使用综合症'
  1249. },
  1250. {
  1251. id: 23,
  1252. name: '失衡综合症'
  1253. },
  1254. {
  1255. id: 24,
  1256. name: '意识障碍'
  1257. },
  1258. {
  1259. id: 25,
  1260. name: '空气栓塞'
  1261. },
  1262. {
  1263. id: 26,
  1264. name: '透析器破膜'
  1265. },
  1266. {
  1267. id: 27,
  1268. name: '透析器反应'
  1269. },
  1270. {
  1271. id: 28,
  1272. name: '下机拔针动脉渗血'
  1273. },
  1274. {
  1275. id: 29,
  1276. name: '下机拔针京脉渗血'
  1277. }
  1278. ],
  1279. deals: [{
  1280. id: 1,
  1281. name: '立即汇报医生'
  1282. },
  1283. {
  1284. id: 2,
  1285. name: '遵医嘱'
  1286. },
  1287. {
  1288. id: 3,
  1289. name: '暂停超滤'
  1290. },
  1291. {
  1292. id: 4,
  1293. name: '降低血流量'
  1294. },
  1295. {
  1296. id: 5,
  1297. name: '头低足高位'
  1298. },
  1299. {
  1300. id: 6,
  1301. name: '0.9%NS100ml输注'
  1302. },
  1303. {
  1304. id: 7,
  1305. name: '密切观察病情变化'
  1306. },
  1307. {
  1308. id: 8,
  1309. name: '提前结束透析'
  1310. },
  1311. {
  1312. id: 9,
  1313. name: '透析平卧,头偏向一侧'
  1314. },
  1315. {
  1316. id: 10,
  1317. name: '保持呼吸道通畅'
  1318. },
  1319. {
  1320. id: 11,
  1321. name: '挤压按摩痉挛肌肉'
  1322. },
  1323. {
  1324. id: 12,
  1325. name: '按医嘱用药'
  1326. },
  1327. {
  1328. id: 13,
  1329. name: '指测血糖'
  1330. },
  1331. {
  1332. id: 14,
  1333. name: '进食糖块'
  1334. },
  1335. {
  1336. id: 15,
  1337. name: '安抚患者,减轻患者紧张情绪'
  1338. },
  1339. {
  1340. id: 16,
  1341. name: '停止透析,丢弃透析器及管路内的血液'
  1342. }
  1343. ],
  1344. results: [{
  1345. id: 1,
  1346. name: '症状好转'
  1347. },
  1348. {
  1349. id: 2,
  1350. name: '症状好转,继续脱水'
  1351. },
  1352. {
  1353. id: 3,
  1354. name: '低血糖纠正'
  1355. },
  1356. {
  1357. id: 4,
  1358. name: '症状消失'
  1359. },
  1360. {
  1361. id: 5,
  1362. name: '回血后症状好转'
  1363. },
  1364. {
  1365. id: 6,
  1366. name: '其他'
  1367. },
  1368. {
  1369. id: 7,
  1370. name: '血糖mmol/l'
  1371. },
  1372. {
  1373. id: 8,
  1374. name: '家属要求结束透析'
  1375. },
  1376. {
  1377. id: 9,
  1378. name: '内瘘穿刺不顺利'
  1379. },
  1380. {
  1381. id: 10,
  1382. name: '内瘘穿刺不顺利-静脉端'
  1383. },
  1384. {
  1385. id: 11,
  1386. name: '局部血肿瘀血'
  1387. },
  1388. {
  1389. id: 12,
  1390. name: '瘢痕'
  1391. },
  1392. {
  1393. id: 13,
  1394. name: '血管条件差'
  1395. },
  1396. {
  1397. id: 14,
  1398. name: '血流量不足'
  1399. },
  1400. {
  1401. id: 15,
  1402. name: '血肿:无'
  1403. },
  1404. {
  1405. id: 16,
  1406. name: '血肿:有,5x5cm'
  1407. },
  1408. {
  1409. id: 17,
  1410. name: '动脉穿刺2针'
  1411. },
  1412. {
  1413. id: 18,
  1414. name: '静脉穿刺2针'
  1415. },
  1416. {
  1417. id: 19,
  1418. name: '下针拔针不顺利'
  1419. },
  1420. {
  1421. id: 20,
  1422. name: '血肿:有,5x5cm'
  1423. }
  1424. ],
  1425. dialysis_duration: [{
  1426. id: 1,
  1427. name: '无症状'
  1428. },
  1429. {
  1430. id: 2,
  1431. name: '耳鸣'
  1432. },
  1433. {
  1434. id: 3,
  1435. name: '出汗'
  1436. },
  1437. {
  1438. id: 4,
  1439. name: '食欲差'
  1440. },
  1441. {
  1442. id: 5,
  1443. name: '血压偏高'
  1444. },
  1445. {
  1446. id: 6,
  1447. name: '四肢无力,口周发麻'
  1448. },
  1449. {
  1450. id: 7,
  1451. name: '腹泻'
  1452. },
  1453. {
  1454. id: 8,
  1455. name: '肢体偏瘫活动'
  1456. },
  1457. {
  1458. id: 9,
  1459. name: '胸闷'
  1460. },
  1461. {
  1462. id: 10,
  1463. name: '黑便'
  1464. },
  1465. {
  1466. id: 11,
  1467. name: '咳嗽'
  1468. }
  1469. ],
  1470. last_dialysis_after: [{
  1471. id: 1,
  1472. name: '无症状'
  1473. },
  1474. {
  1475. id: 2,
  1476. name: '耳鸣'
  1477. },
  1478. {
  1479. id: 3,
  1480. name: '出汗'
  1481. },
  1482. {
  1483. id: 4,
  1484. name: '乏力'
  1485. },
  1486. {
  1487. id: 5,
  1488. name: '呕吐'
  1489. },
  1490. {
  1491. id: 6,
  1492. name: '胸闷'
  1493. },
  1494. {
  1495. id: 7,
  1496. name: '出血'
  1497. },
  1498. {
  1499. id: 8,
  1500. name: '深昏迷'
  1501. },
  1502. {
  1503. id: 9,
  1504. name: '腹泻'
  1505. },
  1506. {
  1507. id: 10,
  1508. name: '痉挛'
  1509. },
  1510. {
  1511. id: 11,
  1512. name: '头晕'
  1513. },
  1514. {
  1515. id: 12,
  1516. name: '出血'
  1517. },
  1518. {
  1519. id: 13,
  1520. name: '恶心'
  1521. },
  1522. {
  1523. id: 14,
  1524. name: '头痛'
  1525. },
  1526. {
  1527. id: 15,
  1528. name: '发热'
  1529. }
  1530. ],
  1531. dialysis_before: [{
  1532. id: 1,
  1533. name: '无症状'
  1534. },
  1535. {
  1536. id: 2,
  1537. name: '耳鸣'
  1538. },
  1539. {
  1540. id: 3,
  1541. name: '出汗'
  1542. },
  1543. {
  1544. id: 4,
  1545. name: '乏力'
  1546. },
  1547. {
  1548. id: 5,
  1549. name: '呕吐'
  1550. },
  1551. {
  1552. id: 6,
  1553. name: '胸闷'
  1554. },
  1555. {
  1556. id: 7,
  1557. name: '出血'
  1558. },
  1559. {
  1560. id: 8,
  1561. name: '深昏迷'
  1562. },
  1563. {
  1564. id: 9,
  1565. name: '腹泻'
  1566. },
  1567. {
  1568. id: 10,
  1569. name: '痉挛'
  1570. },
  1571. {
  1572. id: 11,
  1573. name: '头晕'
  1574. },
  1575. {
  1576. id: 12,
  1577. name: '出血'
  1578. },
  1579. {
  1580. id: 13,
  1581. name: '恶心'
  1582. },
  1583. {
  1584. id: 14,
  1585. name: '头痛'
  1586. },
  1587. {
  1588. id: 15,
  1589. name: '发热'
  1590. }
  1591. ],
  1592. internal_fistula_tremor_ac: [{
  1593. id: 1,
  1594. name: '存在'
  1595. },
  1596. {
  1597. id: 2,
  1598. name: '减弱'
  1599. },
  1600. {
  1601. id: 3,
  1602. name: '无'
  1603. }
  1604. ],
  1605. patient_gose: [{
  1606. id: 1,
  1607. name: '离院'
  1608. },
  1609. {
  1610. id: 2,
  1611. name: '留观'
  1612. },
  1613. {
  1614. id: 3,
  1615. name: '住院'
  1616. }, {
  1617. id: 4,
  1618. name: '门诊'
  1619. }
  1620. ],
  1621. observation_content: [{
  1622. id: 1,
  1623. name: '意识状态'
  1624. },
  1625. {
  1626. id: 2,
  1627. name: '生命体征'
  1628. },
  1629. {
  1630. id: 3,
  1631. name: '内瘘搏动/渗血'
  1632. },
  1633. {
  1634. id: 4,
  1635. name: '导管固定/穿刺口渗血'
  1636. },
  1637. {
  1638. id: 5,
  1639. name: '动静脉直接穿刺口渗血/肢端循环情况'
  1640. }
  1641. ],
  1642. internal_fistula: [{
  1643. id: 1,
  1644. name: '震颤-存在'
  1645. },
  1646. {
  1647. id: 2,
  1648. name: '震颤-减弱'
  1649. },
  1650. {
  1651. id: 3,
  1652. name: '震颤-无'
  1653. },
  1654. {
  1655. id: 4,
  1656. name: '内瘘皮肤-正常'
  1657. },
  1658. {
  1659. id: 5,
  1660. name: '内瘘皮肤-瘀斑'
  1661. },
  1662. {
  1663. id: 6,
  1664. name: '内瘘皮肤-红'
  1665. },
  1666. {
  1667. id: 7,
  1668. name: '内瘘皮肤-肿'
  1669. },
  1670. {
  1671. id: 8,
  1672. name: '无搏动'
  1673. },
  1674. {
  1675. id: 9,
  1676. name: '皮下瘀血'
  1677. },
  1678. {
  1679. id: 10,
  1680. name: '内瘘术后待成熟,可及震颤'
  1681. },
  1682. {
  1683. id: 11,
  1684. name: '内瘘PTA术后一天,震颤强'
  1685. },
  1686. {
  1687. id: 12,
  1688. name: '内瘘首次使用穿刺顺利'
  1689. },
  1690. {
  1691. id: 13,
  1692. name: '血管狭窄'
  1693. },
  1694. {
  1695. id: 14,
  1696. name: '肿胀手综合征'
  1697. },
  1698. {
  1699. id: 15,
  1700. name: '正常'
  1701. },
  1702. {
  1703. id: 16,
  1704. name: '血管震颤减弱'
  1705. },
  1706. {
  1707. id: 17,
  1708. name: '穿刺部位肿胀'
  1709. },
  1710. {
  1711. id: 18,
  1712. name: '手指发冷、苍白、发绀'
  1713. },
  1714. {
  1715. id: 19,
  1716. name: '内瘘原血管重建术后,切口干燥'
  1717. },
  1718. {
  1719. id: 20,
  1720. name: '血栓'
  1721. },
  1722. {
  1723. id: 21,
  1724. name: '血管瘤样扩张'
  1725. },
  1726. {
  1727. id: 22,
  1728. name: '内瘘感染'
  1729. }
  1730. ],
  1731. catheter: [{
  1732. id: 1,
  1733. name: '穿刺口-干洁'
  1734. },
  1735. {
  1736. id: 2,
  1737. name: '穿刺口-红肿'
  1738. },
  1739. {
  1740. id: 3,
  1741. name: '穿刺口-分泌物'
  1742. },
  1743. {
  1744. id: 4,
  1745. name: '穿刺口-渗血'
  1746. },
  1747. {
  1748. id: 5,
  1749. name: '导管打折'
  1750. },
  1751. {
  1752. id: 6,
  1753. name: '导管堵塞'
  1754. },
  1755. {
  1756. id: 7,
  1757. name: '皮导管出口处感染:红肿热痛、有异味下瘀血'
  1758. },
  1759. {
  1760. id: 8,
  1761. name: '缝线脱落'
  1762. },
  1763. {
  1764. id: 9,
  1765. name: '导管同侧肢体肿胀'
  1766. },
  1767. {
  1768. id: 10,
  1769. name: '内瘘首次使用穿刺顺利'
  1770. },
  1771. {
  1772. id: 11,
  1773. name: '导管破损'
  1774. },
  1775. {
  1776. id: 12,
  1777. name: '正常'
  1778. },
  1779. {
  1780. id: 13,
  1781. name: '导管相关血流感染'
  1782. },
  1783. {
  1784. id: 14,
  1785. name: '导管出口处渗血'
  1786. },
  1787. {
  1788. id: 15,
  1789. name: '导管脱落'
  1790. },
  1791. {
  1792. id: 16,
  1793. name: '头面部肿胀'
  1794. }
  1795. ],
  1796. complication: [{
  1797. id: 1,
  1798. name: '低血压'
  1799. },
  1800. {
  1801. id: 2,
  1802. name: '高血压'
  1803. },
  1804. {
  1805. id: 3,
  1806. name: '心律失常'
  1807. },
  1808. {
  1809. id: 4,
  1810. name: '头晕'
  1811. },
  1812. {
  1813. id: 5,
  1814. name: '头痛'
  1815. },
  1816. {
  1817. id: 6,
  1818. name: '呕吐'
  1819. },
  1820. {
  1821. id: 7,
  1822. name: '抽搐'
  1823. },
  1824. {
  1825. id: 8,
  1826. name: '出血'
  1827. },
  1828. {
  1829. id: 9,
  1830. name: '心衰'
  1831. },
  1832. {
  1833. id: 10,
  1834. name: '腹痛'
  1835. },
  1836. {
  1837. id: 11,
  1838. name: '痔疮出血'
  1839. },
  1840. {
  1841. id: 12,
  1842. name: '鼻腔出血'
  1843. },
  1844. {
  1845. id: 13,
  1846. name: '脑梗塞'
  1847. },
  1848. {
  1849. id: 14,
  1850. name: '外伤'
  1851. },
  1852. {
  1853. id: 15,
  1854. name: '呼吸道感染'
  1855. },
  1856. {
  1857. id: 16,
  1858. name: '其他'
  1859. },
  1860. {
  1861. id: 17,
  1862. name: '右耻骨下支骨折'
  1863. },
  1864. {
  1865. id: 18,
  1866. name: '上消化道出血'
  1867. },
  1868. {
  1869. id: 19,
  1870. name: '牙龈出血'
  1871. },
  1872. {
  1873. id: 20,
  1874. name: '出血-其他'
  1875. },
  1876. {
  1877. id: 21,
  1878. name: '手术后一周'
  1879. },
  1880. {
  1881. id: 22,
  1882. name: '肿瘤'
  1883. },
  1884. {
  1885. id: 23,
  1886. name: '肠道感染'
  1887. }
  1888. ],
  1889. cruor: [{
  1890. id: 1,
  1891. name: '透析器-0度'
  1892. },
  1893. {
  1894. id: 2,
  1895. name: '透析器-Ⅰ度'
  1896. },
  1897. {
  1898. id: 3,
  1899. name: '透析器-Ⅱ度'
  1900. },
  1901. {
  1902. id: 4,
  1903. name: '透析器-Ⅲ度'
  1904. },
  1905. {
  1906. id: 5,
  1907. name: '动脉壶凝血块'
  1908. },
  1909. {
  1910. id: 6,
  1911. name: '静脉壶凝血块'
  1912. },
  1913. {
  1914. id: 7,
  1915. name: '体外循环完全凝血'
  1916. },
  1917. {
  1918. id: 8,
  1919. name: '更换透析器'
  1920. },
  1921. {
  1922. id: 9,
  1923. name: '更换管路'
  1924. }
  1925. ],
  1926. summary: [{
  1927. id: 1,
  1928. value: '嘱少食含钾高的食物,告知含钾高的代表食物及降低钾摄入的烹调方法',
  1929. text: '高钾'
  1930. },
  1931. {
  1932. id: 2,
  1933. value: '告知内瘘术后注意事项',
  1934. text: '内瘘术后'
  1935. },
  1936. {
  1937. id: 3,
  1938. value: '告知内瘘自我护理要点',
  1939. text: '内瘘护理'
  1940. },
  1941. {
  1942. id: 4,
  1943. value: '嘱做好个人卫生',
  1944. text: '卫生'
  1945. },
  1946. {
  1947. id: 5,
  1948. value: '嘱控制水分摄入,饮食清淡,保持透析间期体重增加在合理范围。',
  1949. text: '控水摄入'
  1950. },
  1951. {
  1952. id: 6,
  1953. value: '告知中心静脉置管注意事项。',
  1954. text: '导管护理'
  1955. },
  1956. {
  1957. id: 7,
  1958. value: '中心静脉导管新置入,予以妥善固定,防止牵扯,注意观察有无渗血,及时告知医护人员。',
  1959. text: '新置导管'
  1960. },
  1961. {
  1962. id: 8,
  1963. value: '告知人造血管自我护理要点',
  1964. text: '人造血管护理'
  1965. },
  1966. {
  1967. id: 9,
  1968. value: '血压偏高,请按医嘱规律服药,透析间期监测血压并记录,有不适随诊。',
  1969. text: '血压管理'
  1970. },
  1971. {
  1972. id: 10,
  1973. value: '结束后血压低,嘱休息半小时测血压平稳后离院,途中注意安会,出现头昏、出汗等低血压症状立即平卧并与医生联系,同时监测内瘘功能。',
  1974. text: '内瘘低血压'
  1975. },
  1976. {
  1977. id: 11,
  1978. value: '导管口轻压可见分泌物,红、痛不明显,百多邦药膏外用,嘱注意个人卫生。',
  1979. text: '导管口感染'
  1980. }
  1981. ],
  1982. good_unit: [{
  1983. id: 1,
  1984. name: '支'
  1985. },
  1986. {
  1987. id: 2,
  1988. name: '条'
  1989. },
  1990. {
  1991. id: 3,
  1992. name: '盒'
  1993. },
  1994. {
  1995. id: 4,
  1996. name: '包'
  1997. },
  1998. {
  1999. id: 5,
  2000. name: '件'
  2001. },
  2002. {
  2003. id: 6,
  2004. name: '个'
  2005. },
  2006. {
  2007. id: 7,
  2008. name: '套'
  2009. },
  2010. {
  2011. id: 8,
  2012. name: '袋'
  2013. },
  2014. {
  2015. id: 9,
  2016. name: '箱'
  2017. },
  2018. {
  2019. id: 10,
  2020. name: '瓶'
  2021. },
  2022. {
  2023. id: 11,
  2024. name: '付'
  2025. },
  2026. {
  2027. id: 12,
  2028. name: '颗'
  2029. },
  2030. {
  2031. id: 13,
  2032. name: '根'
  2033. },
  2034. {
  2035. id: 14,
  2036. name: '桶'
  2037. },
  2038. {
  2039. id: 15,
  2040. name: '台'
  2041. },
  2042. {
  2043. id: 16,
  2044. name: '张'
  2045. },
  2046. {
  2047. id: 17,
  2048. name: '把'
  2049. },
  2050. {
  2051. id: 18,
  2052. name: '卷'
  2053. },
  2054. {
  2055. id: 19,
  2056. name: '块'
  2057. },
  2058. {
  2059. id: 20,
  2060. name: '双'
  2061. },
  2062. {
  2063. id: 21,
  2064. name: '人份'
  2065. },
  2066. {
  2067. id: 22,
  2068. name: 'kg'
  2069. },
  2070. {
  2071. id: 23,
  2072. name: 'g'
  2073. },
  2074. {
  2075. id: 24,
  2076. name: 'mg'
  2077. },
  2078. {
  2079. id: 25,
  2080. name: 'u'
  2081. },
  2082. {
  2083. id: 26,
  2084. name: 'ml'
  2085. },
  2086. {
  2087. id: 27,
  2088. name: '万u'
  2089. }, {
  2090. id: 28,
  2091. name: '片'
  2092. }, {
  2093. id: 29,
  2094. name: '只'
  2095. }, {
  2096. id: 30,
  2097. name: '次'
  2098. }, {
  2099. id: 31,
  2100. name: '米'
  2101. }, {
  2102. id: 32,
  2103. name: '对'
  2104. },
  2105. {
  2106. id: 31,
  2107. name: '米'
  2108. },
  2109. {
  2110. id: 32,
  2111. name: '对'
  2112. },
  2113. {
  2114. id: 33,
  2115. name: '万份'
  2116. },
  2117. {
  2118. id: 34,
  2119. name: '副'
  2120. },
  2121. {
  2122. id: 35,
  2123. name: '本'
  2124. },
  2125. {
  2126. id: 36,
  2127. name: '轴'
  2128. },
  2129. {
  2130. id: 37,
  2131. name: '辆'
  2132. }
  2133. ],
  2134. body_fluid: [{
  2135. id: 1,
  2136. name: '无'
  2137. },
  2138. {
  2139. id: 2,
  2140. name: '下肢水肿+'
  2141. },
  2142. {
  2143. id: 3,
  2144. name: '下肢水肿++'
  2145. },
  2146. {
  2147. id: 4,
  2148. name: '下肢水肿+++'
  2149. }
  2150. ],
  2151. special_medicine: [{
  2152. id: 1,
  2153. name: '无'
  2154. },
  2155. {
  2156. id: 2,
  2157. name: '降压药'
  2158. },
  2159. {
  2160. id: 3,
  2161. name: '抗凝'
  2162. },
  2163. {
  2164. id: 4,
  2165. name: '其他'
  2166. }
  2167. ],
  2168. blood_access: [{
  2169. id: 1,
  2170. name: '内瘘'
  2171. },
  2172. {
  2173. id: 2,
  2174. name: '直穿'
  2175. },
  2176. {
  2177. id: 3,
  2178. name: '导管'
  2179. }
  2180. ],
  2181. displace_liqui: [{
  2182. id: 1,
  2183. name: '前稀释'
  2184. },
  2185. {
  2186. id: 2,
  2187. name: '后稀释'
  2188. }
  2189. ],
  2190. blood_access_internal_fistula: [
  2191. // { id: 1, name: '正常' },
  2192. // { id: 2, name: '震颤' },
  2193. // { id: 3, name: '堵塞' },
  2194. // { id: 4, name: '血肿' },
  2195. // { id: 5, name: '淤血' },
  2196. // { id: 6, name: '感染' },
  2197. // { id: 7, name: '自体内瘘' },
  2198. // { id: 8, name: '人工血管内瘘' }
  2199. {
  2200. id: 1,
  2201. name: '自体内瘘'
  2202. },
  2203. {
  2204. id: 2,
  2205. name: '中心静脉置管'
  2206. },
  2207. {
  2208. id: 3,
  2209. name: '人造血管'
  2210. },
  2211. {
  2212. id: 4,
  2213. name: '直穿'
  2214. },
  2215. {
  2216. id: 5,
  2217. name: '股静脉'
  2218. },
  2219. {
  2220. id: 6,
  2221. name: '动脉直穿'
  2222. },
  2223. {
  2224. id: 7,
  2225. name: '动静脉直穿'
  2226. },
  2227. {
  2228. id: 8,
  2229. name: '带隧道带绦纶套股静脉导管'
  2230. },
  2231. {
  2232. id: 9,
  2233. name: '带隧道带绦纶套锁骨下静脉导管'
  2234. },
  2235. {
  2236. id: 10,
  2237. name: '带隧道带绦纶套颈内静脉导管'
  2238. }, {
  2239. id: 11,
  2240. name: '无绦纶套股静脉导管'
  2241. }, {
  2242. id: 12,
  2243. name: '无绦纶套锁骨下静脉导管'
  2244. }, {
  2245. id: 13,
  2246. name: '无绦纶套颈内静脉导管'
  2247. }, {
  2248. id: 14,
  2249. name: '直线型移植血管动静脉内瘘'
  2250. }, {
  2251. id: 15,
  2252. name: '直线型移植血管动静脉内瘘'
  2253. }, {
  2254. id: 16,
  2255. name: '自体动静脉内瘘'
  2256. }, {
  2257. id: 17,
  2258. name: '袢型移植血管动静脉内瘘'
  2259. }, {
  2260. id: 18,
  2261. name: '静脉直穿'
  2262. }
  2263. ],
  2264. blood_access_noise: [{
  2265. id: 1,
  2266. name: '存在'
  2267. },
  2268. {
  2269. id: 2,
  2270. name: '不存在'
  2271. },
  2272. {
  2273. id: 3,
  2274. name: '减弱'
  2275. }
  2276. ],
  2277. puncture_way: [{
  2278. id: 1,
  2279. name: '绳梯'
  2280. },
  2281. {
  2282. id: 2,
  2283. name: '扣眼'
  2284. },
  2285. {
  2286. id: 3,
  2287. name: '区域'
  2288. }
  2289. ],
  2290. venous_catheterization: [{
  2291. id: 1,
  2292. name: '长期'
  2293. },
  2294. {
  2295. id: 2,
  2296. name: '临时'
  2297. }
  2298. ],
  2299. venous_catheterization_part: [{
  2300. id: 1,
  2301. name: '锁骨下'
  2302. },
  2303. {
  2304. id: 2,
  2305. name: '颈静脉'
  2306. },
  2307. {
  2308. id: 3,
  2309. name: '股静脉'
  2310. }
  2311. ],
  2312. ductus_arantii: [{
  2313. id: 1,
  2314. name: '正常'
  2315. },
  2316. {
  2317. id: 2,
  2318. name: '不畅'
  2319. },
  2320. {
  2321. id: 3,
  2322. name: '正接'
  2323. },
  2324. {
  2325. id: 4,
  2326. name: '反接'
  2327. },
  2328. {
  2329. id: 5,
  2330. name: '血栓'
  2331. },
  2332. {
  2333. id: 6,
  2334. name: '缝线脱落'
  2335. },
  2336. {
  2337. id: 7,
  2338. name: '导管脱落'
  2339. },
  2340. {
  2341. id: 8,
  2342. name: '感染'
  2343. },
  2344. {
  2345. id: 9,
  2346. name: '破损'
  2347. },
  2348. {
  2349. id: 10,
  2350. name: '血流不足'
  2351. }
  2352. ],
  2353. dialysis_process: [{
  2354. id: 1,
  2355. name: '完成'
  2356. },
  2357. {
  2358. id: 2,
  2359. name: '提前'
  2360. }
  2361. ],
  2362. in_advance_reason: [{
  2363. id: 1,
  2364. name: '心梗'
  2365. },
  2366. {
  2367. id: 2,
  2368. name: '心率失常'
  2369. },
  2370. {
  2371. id: 3,
  2372. name: '低血压'
  2373. },
  2374. {
  2375. id: 4,
  2376. name: '血流不止'
  2377. }
  2378. ],
  2379. hemostasis_opera: [{
  2380. id: 1,
  2381. name: '需要护士'
  2382. },
  2383. {
  2384. id: 2,
  2385. name: '他人协助'
  2386. },
  2387. {
  2388. id: 3,
  2389. name: '自己压迫'
  2390. }, {
  2391. id: 4,
  2392. name: '内瘘止血带'
  2393. }
  2394. ],
  2395. tremor_noise: [{
  2396. id: 1,
  2397. name: '存在'
  2398. },
  2399. {
  2400. id: 2,
  2401. name: '不存在'
  2402. },
  2403. {
  2404. id: 3,
  2405. name: '减弱'
  2406. }
  2407. ],
  2408. disequilibrium_syndrome: [{
  2409. id: 1,
  2410. name: '无'
  2411. },
  2412. {
  2413. id: 2,
  2414. name: '有'
  2415. }
  2416. ],
  2417. disequilibrium_syndrome_option: [{
  2418. id: 1,
  2419. name: '头晕'
  2420. },
  2421. {
  2422. id: 2,
  2423. name: '头痛'
  2424. },
  2425. {
  2426. id: 3,
  2427. name: '呕吐'
  2428. },
  2429. {
  2430. id: 4,
  2431. name: '低血压'
  2432. }
  2433. ],
  2434. arterial_tube: [{
  2435. id: 1,
  2436. name: '动脉管道0'
  2437. },
  2438. {
  2439. id: 2,
  2440. name: '动脉管道+'
  2441. },
  2442. {
  2443. id: 3,
  2444. name: '动脉管道++'
  2445. },
  2446. {
  2447. id: 4,
  2448. name: '动脉管道+++'
  2449. }
  2450. ],
  2451. intravenous_tube: [{
  2452. id: 1,
  2453. name: '静脉管道0'
  2454. },
  2455. {
  2456. id: 2,
  2457. name: '静脉管道+'
  2458. },
  2459. {
  2460. id: 3,
  2461. name: '静脉管道++'
  2462. },
  2463. {
  2464. id: 4,
  2465. name: '静脉管道+++'
  2466. }
  2467. ],
  2468. dialyzer: [{
  2469. id: 1,
  2470. name: '透析器0'
  2471. },
  2472. {
  2473. id: 2,
  2474. name: '透析器+'
  2475. },
  2476. {
  2477. id: 3,
  2478. name: '透析器++'
  2479. },
  2480. {
  2481. id: 4,
  2482. name: '透析器+++'
  2483. }
  2484. ],
  2485. // 导管打折
  2486. catheter_bend: [{
  2487. id: 1,
  2488. name: '有'
  2489. },
  2490. {
  2491. id: 2,
  2492. name: '无'
  2493. }
  2494. ],
  2495. emergency_treatment: [{
  2496. id: 1,
  2497. name: '急性心衰'
  2498. },
  2499. {
  2500. id: 2,
  2501. name: '高血钾'
  2502. },
  2503. {
  2504. id: 3,
  2505. name: '重症酸中毒'
  2506. }
  2507. ],
  2508. skin: [{
  2509. id: 1,
  2510. name: '完整'
  2511. },
  2512. {
  2513. id: 2,
  2514. name: '干燥'
  2515. },
  2516. {
  2517. id: 3,
  2518. name: '瘙痒'
  2519. },
  2520. {
  2521. id: 4,
  2522. name: '菲薄'
  2523. },
  2524. {
  2525. id: 5,
  2526. name: '水肿'
  2527. },
  2528. {
  2529. id: 6,
  2530. name: '皮疹'
  2531. },
  2532. {
  2533. id: 7,
  2534. name: '出血点'
  2535. },
  2536. {
  2537. id: 8,
  2538. name: '压疮'
  2539. },
  2540. {
  2541. id: 9,
  2542. name: '皮下出血'
  2543. }
  2544. ],
  2545. puncture_needle: [{
  2546. id: 1,
  2547. name: 'V钝针'
  2548. },
  2549. {
  2550. id: 2,
  2551. name: 'V锐针'
  2552. },
  2553. {
  2554. id: 3,
  2555. name: 'A锐针'
  2556. },
  2557. {
  2558. id: 4,
  2559. name: 'A钝针'
  2560. }
  2561. ],
  2562. channels: [{
  2563. id: 1,
  2564. name: '无'
  2565. },
  2566. {
  2567. id: 2,
  2568. name: '+'
  2569. },
  2570. {
  2571. id: 3,
  2572. name: '++'
  2573. },
  2574. {
  2575. id: 4,
  2576. name: '+++'
  2577. }
  2578. ]
  2579. },
  2580. mutations: {
  2581. SET_PATIENT_TYPE: (state, patientTypes) => {
  2582. state.patient_types = patientTypes
  2583. }
  2584. },
  2585. action: {}
  2586. }
  2587. export default global_config