PatientForm.vue 76KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244
  1. <template>
  2. <!-- 电子病历/新增患者 -->
  3. <div class="main-contain">
  4. <!-- 传染病(已隐藏) -->
  5. <el-dialog
  6. title="新增传染病检查"
  7. :visible.sync="dialogFormVisible"
  8. width="1000px"
  9. id="user-inspection-form"
  10. v-loading="formLoading"
  11. >
  12. <el-form :model="form" ref="form" label-position="top">
  13. <el-row>
  14. <el-col :span="1">&nbsp;</el-col>
  15. <template v-for="(item, index) in form.formItem">
  16. <el-col :span="7" ><!--:key="index"-->
  17. <el-form-item
  18. :label="item.item_name"
  19. v-if="item.range_type == 1"
  20. :key="item.item_id"
  21. :prop="'formItem.' + index + '.value'"
  22. >
  23. <el-input
  24. placeholder="请填入"
  25. v-model="item.value"
  26. style="width:95%"
  27. type="number"
  28. >
  29. <template slot="append">{{ item.unit }}</template>
  30. </el-input>
  31. </el-form-item><!--:key="item.item_id"-->
  32. <el-form-item
  33. :label="item.item_name"
  34. v-else
  35. :prop="'formItem.' + index + '.value'"
  36. >
  37. <el-select
  38. v-model="item.value"
  39. placeholder="请选择"
  40. style="width:95%"
  41. >
  42. <el-option
  43. v-for="(optionItem, oidex) in item.select_options"
  44. :key="oidex"
  45. :label="optionItem"
  46. :value="optionItem"
  47. ></el-option>
  48. </el-select>
  49. </el-form-item>
  50. </el-col>
  51. <el-col :span="1" >&nbsp;</el-col><!--:key="'form-col' + index"-->
  52. </template>
  53. </el-row>
  54. </el-form>
  55. <div slot="footer" class="dialog-footer">
  56. <el-button @click="dialogFormVisible = false">取 消</el-button>
  57. <el-button type="primary" @click="submitNew('form')">保 存</el-button>
  58. </div>
  59. </el-dialog>
  60. <div v-if="!isEdit" class="position">
  61. <bread-crumb :crumbs="crumbs"></bread-crumb>
  62. <div class style="float:right;color: white">
  63. <el-button
  64. :disabled="
  65. $store.getters.xt_user.subscibe.state == 3 || !subscibeFlag
  66. ? true
  67. : false
  68. "
  69. type="primary"
  70. v-if="this.isEdit == false"
  71. @click="resetForm('form')"
  72. icon="el-icon-circle-plus-outline"
  73. size="small"
  74. >新增</el-button
  75. >
  76. </div>
  77. </div>
  78. <div
  79. v-if="isEdit"
  80. class
  81. style="float:right;margin-right: 35px;margin-top: 10px"
  82. >
  83. <!-- <el-button @click="$router.back(-1)" icon="el-icon-refresh" size="small">取消</el-button>
  84. <el-button :disabled="$store.getters.xt_user.subscibe.state==3||!subscibeFlag?true:false" type="primary" v-if="this.isEdit==false" @click="resetForm('form')" icon="el-icon-circle-plus-outline" size="small">新增</el-button>
  85. <el-button :disabled="$store.getters.xt_user.subscibe.state==3||!subscibeFlag?true:false" @click="onSubmit('form')" size="small" type="success" icon="el-icon-setting" >保存</el-button>
  86. <el-button v-if="isEdit==false" @click="onReSubmit('form')" :disabled="$store.getters.xt_user.subscibe.state==3||!subscibeFlag?true:false" icon="el-icon-document-add" size="small" type="warning" >保存并继续新增</el-button>-->
  87. </div>
  88. <div class="app-container" v-loading="pageLoad">
  89. <el-form
  90. ref="form"
  91. :rules="rules"
  92. :model="form"
  93. label-width="124px"
  94. class="clearfix"
  95. popper-append-to-body="false"
  96. >
  97. <div class="dataTitle">一般资料</div>
  98. <el-row>
  99. <el-col :span="20" class="form-table">
  100. <el-row :span="20">
  101. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  102. <el-form-item label="姓名 : " class="is-required" prop="name">
  103. <el-input v-model="form.name"></el-input>
  104. </el-form-item>
  105. </el-col>
  106. <el-col
  107. :span="8"
  108. :style="isEdit ? 'width:360px' : ''"
  109. style="height:59px;"
  110. >
  111. <el-form-item label="性别 : " class="is-required" prop="gender">
  112. <el-radio-group v-model="form.gender" @change="changeGender">
  113. <el-radio
  114. v-for="item in sexOptions"
  115. :key="item.value"
  116. :label="item.value"
  117. :value="item.value"
  118. >{{ item.label }}</el-radio
  119. >
  120. </el-radio-group>
  121. </el-form-item>
  122. </el-col>
  123. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  124. <el-form-item
  125. label="身份证号 : "
  126. >
  127. <el-input
  128. v-model="form.idCardNo"
  129. ></el-input><!---->
  130. </el-form-item>
  131. </el-col>
  132. <el-col
  133. :span="8"
  134. :style="isEdit ? 'width:360px' : ''"
  135. style="height:59px;"
  136. >
  137. <el-form-item label="年龄 : " class="is-required" prop="age">
  138. <el-input
  139. v-model="form.age"
  140. placeholder="请填写年龄"
  141. ></el-input>
  142. </el-form-item>
  143. </el-col>
  144. <template v-if="isEdit">
  145. <!-- <el-col :span="8" :style="isEdit?'width:360px':''">
  146. <el-form-item label="患者类型 : " class="is-required" >
  147. <el-select v-model="form.patientType" placeholder="请选择患者类型" disabled >
  148. <el-option v-for="item in styleOptions" :key="item.id" :label="item.name" :value="item.id"/>
  149. </el-select>
  150. </el-form-item>
  151. </el-col>-->
  152. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  153. <el-form-item label="透析号 : " class="is-required">
  154. <el-input
  155. v-model="form.dialysisNo"
  156. placeholder="填写或自动生成"
  157. style="width:62%;float:left;margin-right: 2%;"
  158. ></el-input>
  159. <!-- <el-button style="width:36%;padding:10px 0;" disabled type="primary">自动生成</el-button> -->
  160. </el-form-item>
  161. </el-col>
  162. </template>
  163. <template v-else>
  164. <el-col :span="8">
  165. <el-form-item
  166. label="透析号 : "
  167. class="is-required"
  168. prop="dialysisNo"
  169. >
  170. <el-input
  171. v-model="form.dialysisNo"
  172. placeholder="填写或自动生成"
  173. style="width:62%;float:left;margin-right: 2%;"
  174. ></el-input>
  175. <el-button
  176. style="width:35%;padding:10px 0;"
  177. :disabled="
  178. $store.getters.xt_user.subscibe.state == 3 ||
  179. !subscibeFlag
  180. ? true
  181. : false
  182. "
  183. type="primary"
  184. @click="generatedialysisno"
  185. >自动生成</el-button
  186. >
  187. </el-form-item>
  188. </el-col>
  189. </template>
  190. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  191. <el-form-item
  192. label="出生日期 : "
  193. class="is-required"
  194. prop="birth"
  195. >
  196. <el-date-picker
  197. v-model="form.birth"
  198. type="date"
  199. placeholder="选择日期"
  200. :suffix-icon="'el-icon-menu'"
  201. @change="hadSelectBirth"
  202. format="yyyy-MM-dd"
  203. value-format="yyyy-MM-dd"
  204. ></el-date-picker>
  205. </el-form-item>
  206. </el-col>
  207. <el-col :span="6" :style="isEdit ? 'width:380px' : ''" v-if="org_id!=0 && org_id!=10138 && org_id!=10278">
  208. <el-form-item
  209. label="首次肾脏治疗时间:"
  210. prop="firstDialysisDate"
  211. label-width="150px"
  212. >
  213. <el-date-picker
  214. v-model="form.firstDialysisDate"
  215. type="date"
  216. format="yyyy-MM-dd"
  217. value-format="yyyy-MM-dd"
  218. ></el-date-picker>
  219. </el-form-item>
  220. </el-col>
  221. <el-col :span="6" :style="isEdit ? 'width:380px' : ''" v-if="org_id==0||org_id == 10138 || org_id == 10278">
  222. <el-form-item
  223. label="首次进入本院时间:"
  224. prop="firstDialysisDate"
  225. label-width="150px"
  226. >
  227. <el-date-picker
  228. v-model="form.firstDialysisDate"
  229. type="date"
  230. format="yyyy-MM-dd"
  231. value-format="yyyy-MM-dd"
  232. ></el-date-picker>
  233. </el-form-item>
  234. </el-col>
  235. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  236. <el-form-item
  237. label="本人电话 : "
  238. prop="phone"
  239. >
  240. <el-input v-model="form.phone" maxlength="20"></el-input>
  241. </el-form-item>
  242. </el-col>
  243. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  244. <el-form-item label="家属姓名 : ">
  245. <el-input
  246. v-model="form.contact_name"
  247. maxlength="20"
  248. ></el-input>
  249. </el-form-item>
  250. </el-col>
  251. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  252. <el-form-item label="家属电话 : " prop="homeTelephone">
  253. <el-input
  254. v-model="form.homeTelephone"
  255. maxlength="20"
  256. ></el-input>
  257. </el-form-item>
  258. </el-col>
  259. <el-col :span="6" :style="isEdit ? 'width:360px' : ''">
  260. <el-form-item
  261. label="本院首次透析 : "
  262. prop="is_hospital_first_dialysis"
  263. >
  264. <el-radio-group v-model="form.is_hospital_first_dialysis">
  265. <el-radio
  266. v-for="item in isHospitalFirstDialysisOptions"
  267. :key="item.value"
  268. :label="item.value"
  269. :value="item.value"
  270. >{{ item.label }}</el-radio
  271. >
  272. </el-radio-group>
  273. </el-form-item>
  274. </el-col>
  275. <el-col :span="6" :style="isEdit ? 'width:360px' : ''">
  276. <el-form-item
  277. label="系统前透析次数: "
  278. prop="user_sys_before_count"
  279. >
  280. <el-input v-model="form.user_sys_before_count"></el-input>
  281. </el-form-item>
  282. </el-col>
  283. <el-col :span="6" :style="isEdit ? 'width:360px' : ''">
  284. <el-form-item label="首次透析时间 : ">
  285. <el-date-picker
  286. v-model="form.first_treatment_date"
  287. type="date"
  288. format="yyyy-MM-dd"
  289. value-format="yyyy-MM-dd"
  290. ></el-date-picker>
  291. </el-form-item>
  292. </el-col>
  293. <el-col :span="6" :style="isEdit ? 'width:360px' : ''">
  294. <el-form-item
  295. label="上家透析医院 : "
  296. prop="first_dialysis_hospital"
  297. >
  298. <el-input v-model="form.first_dialysis_hospital"></el-input>
  299. </el-form-item>
  300. </el-col>
  301. <el-col :span="24">
  302. <el-form-item
  303. label="透析之前情况 : "
  304. prop="predialysis_condition"
  305. >
  306. <el-checkbox-group v-model="form.predialysis_condition">
  307. <el-checkbox
  308. v-for="item in predialysisConditionOptions"
  309. :label="item.label"
  310. :key="item.value"
  311. :value="item.label"
  312. >{{ item.label }}</el-checkbox
  313. >
  314. </el-checkbox-group>
  315. </el-form-item>
  316. </el-col>
  317. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  318. <el-form-item label="家庭住址 : " prop="homeAddress" class="is-required">
  319. <el-input v-model="form.homeAddress" style="width: 280px;"></el-input>
  320. </el-form-item>
  321. </el-col>
  322. <el-col :span="8" :style="isEdit ? 'width:280px' : ''">
  323. <el-form-item
  324. label="打印日期:"
  325. label-width="150px"
  326. >
  327. <el-date-picker
  328. v-model="form.print_date"
  329. type="date"
  330. format="yyyy-MM-dd"
  331. value-format="yyyy-MM-dd"
  332. ></el-date-picker>
  333. </el-form-item>
  334. </el-col>
  335. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  336. <el-form-item label="住院(门诊)号 : ">
  337. <el-input v-model="form.admissionNumber"></el-input>
  338. </el-form-item>
  339. </el-col>
  340. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  341. <el-form-item label="工作单位 : " prop="work">
  342. <el-input v-model="form.work"></el-input>
  343. </el-form-item>
  344. </el-col>
  345. <el-col :span="24">
  346. <el-form-item label="病历号 : " prop="record_number">
  347. <el-input
  348. style="width: 200px;"
  349. v-model="form.record_number"
  350. ></el-input>
  351. </el-form-item>
  352. </el-col>
  353. <el-col :span="24">
  354. <el-form-item label="主管护士 : " prop="record_number">
  355. <el-select v-model="form.nurse" style="width:200px">
  356. <el-option
  357. v-for="(item,index) in adminUserOptions"
  358. :key="index"
  359. :label="item.name"
  360. :value="item.id"
  361. />
  362. </el-select>
  363. </el-form-item>
  364. </el-col>
  365. <el-col :span="6" :style="isEdit ? 'width:360px' : ''">
  366. <el-form-item
  367. label="本院前透析频率 : "
  368. prop="pre_hospital_dialysis_frequency"
  369. >
  370. <el-input
  371. v-model="form.pre_hospital_dialysis_frequency"
  372. ></el-input>
  373. </el-form-item>
  374. </el-col>
  375. <el-col :span="6" :style="isEdit ? 'width:360px' : ''">
  376. <el-form-item
  377. label="本院前透析次数 : "
  378. prop="pre_hospital_dialysis_times"
  379. >
  380. <el-input v-model="form.pre_hospital_dialysis_times"></el-input>
  381. </el-form-item>
  382. </el-col>
  383. <el-col :span="6" :style="isEdit ? 'width:360px' : ''">
  384. <el-form-item
  385. label="本院首次透析 : "
  386. prop="hospital_first_dialysis_date"
  387. >
  388. <el-date-picker
  389. v-model="form.hospital_first_dialysis_date"
  390. type="date"
  391. format="yyyy-MM-dd"
  392. value-format="yyyy-MM-dd"
  393. ></el-date-picker>
  394. </el-form-item>
  395. </el-col>
  396. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  397. <el-form-item
  398. label="患者来源 : "
  399. class="is-required"
  400. prop="source"
  401. >
  402. <el-radio-group v-model="form.source">
  403. <el-radio
  404. v-for="item in sourceOptions"
  405. :key="item.value"
  406. :label="item.value"
  407. :value="item.value"
  408. >{{ item.label }}</el-radio
  409. >
  410. </el-radio-group>
  411. </el-form-item>
  412. </el-col>
  413. <!-- <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  414. <el-form-item
  415. label="患者去向 : "
  416. >
  417. <el-radio-group v-model="form.patient_source">
  418. <el-radio
  419. v-for="item in patientSourceList"
  420. :key="item.value"
  421. :label="item.value"
  422. :value="item.value"
  423. >{{ item.label }}</el-radio
  424. >
  425. </el-radio-group>
  426. </el-form-item>
  427. </el-col> -->
  428. <!-- <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  429. <el-form-item
  430. label="流转地: "
  431. >
  432. <el-select v-model="form.patient_address" placeholder="请选择">
  433. <el-option
  434. v-for="item in liuAddresslist"
  435. :key="item.id"
  436. :label="item.name"
  437. :value="item.name">
  438. </el-option>
  439. </el-select>
  440. </el-form-item>
  441. </el-col> -->
  442. <!-- <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  443. <el-form-item
  444. label="流转开始时间 : "
  445. >
  446. <el-date-picker
  447. size="small"
  448. v-model="form.patient_start_time"
  449. prefix-icon="el-icon-date"
  450. :editable="false"
  451. style="width: 150px;"
  452. type="date"
  453. placeholder="选择日期时间"
  454. align="right"
  455. format="yyyy-MM-dd"
  456. value-format="yyyy-MM-dd"
  457. @change="startTimeChange"
  458. ></el-date-picker>
  459. </el-form-item>
  460. </el-col> -->
  461. <!-- <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  462. <el-form-item
  463. label="流转结束时间 : "
  464. >
  465. <el-date-picker
  466. size="small"
  467. v-model="form.patient_end_time"
  468. prefix-icon="el-icon-date"
  469. :editable="false"
  470. style="width: 150px;"
  471. type="date"
  472. placeholder="选择日期时间"
  473. align="right"
  474. format="yyyy-MM-dd"
  475. value-format="yyyy-MM-dd"
  476. @change="startTimeChange"
  477. ></el-date-picker>
  478. </el-form-item>
  479. </el-col> -->
  480. <!-- <el-col :span="8" style="margin-bottom: 20px;" :style="isEdit ? 'width:360px' : ''">
  481. <el-form-item
  482. label="备注 : "
  483. prop="sch_remark">
  484. <el-input
  485. type="textarea"
  486. :rows="3"
  487. v-model="form.sch_remark"
  488. resize="none"
  489. placeholder
  490. ></el-input>
  491. </el-form-item>
  492. </el-col> -->
  493. <el-col :span="24" :style="isEdit ? 'width:360px' : ''" v-show="showLapseto">
  494. <el-form-item
  495. label="治疗状态(转归) : "
  496. class="is-required"
  497. prop="lapseto"
  498. >
  499. <el-radio-group v-model="form.lapseto">
  500. <el-radio
  501. v-for="item in lapsetoOptions"
  502. :key="item.value"
  503. :label="item.value"
  504. :value="item.value"
  505. >{{ item.label }}</el-radio
  506. >
  507. </el-radio-group>
  508. </el-form-item>
  509. </el-col>
  510. <el-col :span="24">
  511. <el-form-item label="传染病 : " prop="contagions">
  512. <el-radio-group v-model="form.is_infectious" @change="changeInfectious">
  513. <el-radio :label="1">阴性</el-radio>
  514. <el-radio :label="2">阳性</el-radio>
  515. </el-radio-group>
  516. <el-checkbox-group
  517. v-model="form.contagions"
  518. v-if="form.is_infectious == '2'"
  519. >
  520. <el-checkbox
  521. v-for="item in contagionList"
  522. v-if="item.type == 2"
  523. :label="item.id"
  524. :key="item.id"
  525. name="contagions"
  526. :value="item.id"
  527. >{{ item.name }}</el-checkbox
  528. >
  529. </el-checkbox-group>
  530. </el-form-item>
  531. </el-col>
  532. <el-col :span="24">
  533. <el-form-item label="传染病细分:" v-if="form.is_infectious == '2'">
  534. <el-input v-model="form.infectious_remark"></el-input>
  535. </el-form-item>
  536. </el-col>
  537. <el-col :span="8">
  538. <el-form-item label="疑难内瘘 : " prop="contagions">
  539. <el-radio-group v-model="form.troble_shoot">
  540. <el-radio :label="1">是</el-radio>
  541. <el-radio :label="2">否</el-radio>
  542. </el-radio-group>
  543. </el-form-item>
  544. </el-col>
  545. <el-col :span="8">
  546. <el-form-item label="人员编码: ">
  547. <el-input
  548. v-model="form.zb_patient_id"
  549. ></el-input>
  550. </el-form-item>
  551. </el-col>
  552. <el-col :span="16" v-if="!isEdit">
  553. <el-form-item label="检查结果日期 : ">
  554. <!--<el-date-picker v-model="form.record_date" type="date" placeholder="选择日期" :suffix-icon="'el-icon-menu'"-->
  555. <!--format="yyyy-MM-dd"-->
  556. <!--style="width: 200px;"-->
  557. <!--disabled-->
  558. <!--value-format="yyyy-MM-dd" v-if="isEdit"></el-date-picker>-->
  559. <el-date-picker
  560. v-model="form.record_date"
  561. type="date"
  562. placeholder="选择日期"
  563. :suffix-icon="'el-icon-menu'"
  564. format="yyyy-MM-dd"
  565. style="width: 200px;"
  566. value-format="yyyy-MM-dd"
  567. v-if="!isEdit"
  568. ></el-date-picker>
  569. <el-button
  570. type="primary"
  571. @click="recordCheck()"
  572. v-if="!isEdit"
  573. >录入检验检查</el-button
  574. >
  575. <!--<el-button type="primary" v-if="isEdit">查看检验检查</el-button>-->
  576. </el-form-item>
  577. </el-col>
  578. <el-col :span="24">
  579. <el-form-item label="传染病周期提醒:">
  580. <el-radio-group
  581. v-model="form.remind_cycle"
  582. @change="changeCycle()"
  583. >
  584. <el-radio :label="1">一月一次</el-radio>
  585. <el-radio :label="2">两月一次</el-radio>
  586. <el-radio :label="3">三月一次</el-radio>
  587. <el-radio :label="4">半年一次</el-radio>
  588. <el-radio :label="5">一年一次</el-radio>
  589. </el-radio-group>
  590. </el-form-item>
  591. </el-col>
  592. <el-col :span="24">
  593. <el-form-item label="诊断 : " prop="diagnose">
  594. <el-input
  595. type="textarea"
  596. :rows="3"
  597. v-model="form.diagnose"
  598. resize="none"
  599. placeholder
  600. ></el-input>
  601. </el-form-item>
  602. </el-col>
  603. <el-col :span="24">
  604. <el-form-item label="诊疗计划 : " prop="diagnose">
  605. <el-input
  606. type="textarea"
  607. :rows="3"
  608. v-model="form.treatment_plan"
  609. resize="none"
  610. placeholder
  611. ></el-input>
  612. </el-form-item>
  613. </el-col>
  614. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  615. <el-form-item label="民族 : " prop="nation">
  616. <el-input v-model="form.nation" maxlength="30"></el-input>
  617. </el-form-item>
  618. </el-col>
  619. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  620. <el-form-item label="籍贯 : " prop="native_place">
  621. <el-input
  622. v-model="form.native_place"
  623. maxlength="30"
  624. ></el-input>
  625. </el-form-item>
  626. </el-col>
  627. <div v-show="!generic_info_fold">
  628. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  629. <el-form-item label="别名 : " prop="alias">
  630. <el-input v-model="form.alias"></el-input>
  631. </el-form-item>
  632. </el-col>
  633. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  634. <el-form-item label="身高(cm) : " prop="height">
  635. <el-input
  636. maxlength="5"
  637. v-model="form.height"
  638. @change="checkHeight"
  639. ></el-input>
  640. </el-form-item>
  641. </el-col>
  642. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  643. <el-form-item label="婚姻状况 : " prop="maritalStatus">
  644. <el-select
  645. v-model="form.maritalStatus"
  646. placeholder="请选择婚姻状况"
  647. >
  648. <el-option
  649. v-for="item in maritalOptions"
  650. :key="item.id"
  651. :label="item.name"
  652. :value="item.id"
  653. />
  654. </el-select>
  655. </el-form-item>
  656. </el-col>
  657. <el-col
  658. :span="8"
  659. style="clearfix"
  660. :style="isEdit ? 'width:360px' : ''"
  661. >
  662. <el-form-item label="子女情况(个) : " prop="children">
  663. <el-input maxlength="5" v-model="form.children"></el-input>
  664. </el-form-item>
  665. <!-- <el-form-item label=" " style="float:left;" label-width="30px">
  666. </el-form-item>-->
  667. </el-col>
  668. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  669. <el-form-item label="医保类型 : " prop="reimbursementWayID">
  670. <el-select v-model="form.reimbursementWayID">
  671. <el-option
  672. v-for="item in wayOptions"
  673. :key="item.id"
  674. :label="item.name"
  675. :value="item.id"
  676. />
  677. </el-select>
  678. </el-form-item>
  679. </el-col>
  680. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  681. <el-form-item label="医保号 : " prop="healthCareNo">
  682. <el-input v-model="form.healthCareNo"></el-input>
  683. </el-form-item>
  684. </el-col>
  685. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  686. <el-form-item label="教育程度 : " prop="educationOptions">
  687. <el-select v-model="form.education">
  688. <el-option
  689. v-for="item in educationOptions"
  690. :key="item.id"
  691. :label="item.name"
  692. :value="item.id"
  693. />
  694. </el-select>
  695. </el-form-item>
  696. </el-col>
  697. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  698. <el-form-item label="固定电话 : ">
  699. <el-input
  700. v-model="form.tell_phone"
  701. maxlength="20"
  702. ></el-input>
  703. </el-form-item>
  704. </el-col>
  705. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  706. <el-form-item label="费别 : ">
  707. <el-select v-model="form.expense_kind">
  708. <el-option
  709. v-for="item in expenseOptions"
  710. :key="item.id"
  711. :label="item.name"
  712. :value="item.id"
  713. />
  714. </el-select>
  715. </el-form-item>
  716. </el-col>
  717. <el-col
  718. :span="8"
  719. :style="isEdit ? 'width:360px' : ''"
  720. style="height:59px;"
  721. >
  722. <el-form-item label="透析龄(月): ">
  723. <el-input v-model="form.dialysis_age"></el-input>
  724. </el-form-item>
  725. </el-col>
  726. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  727. <el-form-item label="亲友电话 : " prop="relative_phone">
  728. <el-input
  729. v-model="form.relative_phone"
  730. maxlength="20"
  731. ></el-input>
  732. </el-form-item>
  733. </el-col>
  734. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  735. <el-form-item label="亲友关系 : " prop="relative_relations">
  736. <el-input
  737. v-model="form.relative_relations"
  738. maxlength="20"
  739. ></el-input>
  740. </el-form-item>
  741. </el-col>
  742. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  743. <el-form-item label="职业 : " prop="profession">
  744. <el-select v-model="form.profession">
  745. <el-option
  746. v-for="item in professionOptions"
  747. :key="item.id"
  748. :label="item.name"
  749. :value="item.id"
  750. />
  751. </el-select>
  752. </el-form-item>
  753. </el-col>
  754. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  755. <el-form-item label="单位地址 : " prop="unit_address">
  756. <el-input v-model="form.unit_address"></el-input>
  757. </el-form-item>
  758. </el-col>
  759. </div>
  760. <el-col :span="24">
  761. <el-form-item>
  762. <el-button
  763. type="text"
  764. @click="generic_info_fold = !generic_info_fold"
  765. >
  766. {{ generic_info_fold ? "更多资料" : "收起" }}
  767. <i class="el-icon--right" :class="generic_fold_icon"></i>
  768. </el-button>
  769. </el-form-item>
  770. </el-col>
  771. </el-row>
  772. </el-col>
  773. <el-col :span="4" align="center">
  774. <el-upload
  775. style="width:100%;"
  776. :disabled="
  777. $store.getters.xt_user.subscibe.state == 3 || !subscibeFlag
  778. ? true
  779. : false
  780. "
  781. :data="uploadData"
  782. class="uploadHead"
  783. :multiple="false"
  784. action="https://upload.qiniup.com"
  785. :show-file-list="false"
  786. :on-error="handleAvatarError"
  787. :on-success="handleAvatarSuccess"
  788. list-type="picture-card"
  789. :before-upload="beforeAvatarUpload"
  790. >
  791. <img
  792. width="100%"
  793. height="100%"
  794. v-if="form.avatar"
  795. :src="form.avatar"
  796. class="avatar"
  797. />
  798. <i class="el-icon-plus" v-else></i>
  799. </el-upload>
  800. <el-dialog :visible.sync="dialogVisible">
  801. <img width="100%" :src="dialogImageUrl" alt />
  802. </el-dialog>
  803. <el-upload
  804. :disabled="
  805. $store.getters.xt_user.subscibe.state == 3 || !subscibeFlag
  806. ? true
  807. : false
  808. "
  809. :data="uploadData"
  810. :multiple="false"
  811. action="https://upload.qiniup.com"
  812. :show-file-list="false"
  813. :on-error="handleAvatarError"
  814. :on-success="handleAvatarSuccess"
  815. :before-upload="beforeAvatarUpload"
  816. >
  817. <el-button
  818. :disabled="
  819. $store.getters.xt_user.subscibe.state == 3 || !subscibeFlag
  820. ? true
  821. : false
  822. "
  823. class="uploadHeadBtn"
  824. type="primary"
  825. >上传头像</el-button
  826. >
  827. </el-upload>
  828. <el-form-item>
  829. <el-input
  830. v-model="form.avatar"
  831. type="hidden"
  832. placeholder
  833. ></el-input>
  834. </el-form-item>
  835. </el-col>
  836. </el-row>
  837. <div class="dataTitle">治疗信息</div>
  838. <div style="display: flex">
  839. <div style="flex: 1 1 9%;">
  840. <el-row :gutter="24">
  841. <el-col :span="24">
  842. <el-form-item label="主诉 : " prop="patient_complains">
  843. <el-input
  844. type="textarea"
  845. :rows="3"
  846. v-model="form.patient_complains"
  847. resize="none"
  848. placeholder=""
  849. ></el-input>
  850. </el-form-item>
  851. </el-col>
  852. </el-row>
  853. <el-row :gutter="24">
  854. <el-col :span="24">
  855. <el-form-item label="既往史 : " prop="past_history">
  856. <el-input
  857. type="textarea"
  858. :rows="3"
  859. v-model="form.past_history"
  860. resize="none"
  861. placeholder=""
  862. ></el-input>
  863. </el-form-item>
  864. </el-col>
  865. </el-row>
  866. <el-row :gutter="24">
  867. <el-col :span="24">
  868. <el-form-item label="过敏史 : " prop="past_history">
  869. <el-input
  870. type="textarea"
  871. :rows="3"
  872. v-model="form.allergic_history"
  873. resize="none"
  874. placeholder=""
  875. ></el-input>
  876. </el-form-item>
  877. </el-col>
  878. </el-row>
  879. <el-row :gutter="24">
  880. <el-col :span="24">
  881. <el-form-item label="体格检查">
  882. <el-input
  883. v-model="form.temperature"
  884. style="width: 200px"
  885. >
  886. <template slot="prepend">体温:</template>
  887. <template slot="append">℃</template>
  888. </el-input>
  889. <el-input v-model="form.pulse" style="width: 220px" >
  890. <template slot="prepend">脉搏: </template>
  891. <template slot="append">次/分</template>
  892. </el-input>
  893. <el-input
  894. v-model="form.respiratory"
  895. style="width: 220px"
  896. >
  897. <template slot="prepend">呼吸: </template>
  898. <template slot="append">次/分</template>
  899. </el-input>
  900. </el-form-item>
  901. </el-col>
  902. </el-row>
  903. <el-row :gutter="24">
  904. <el-col>
  905. <el-form-item>
  906. <el-input v-model="form.sbp" style="width: 240px" >
  907. <template slot="prepend">收缩压:</template>
  908. <template slot="append">mmHg</template>
  909. </el-input>
  910. <el-input v-model="form.dbp" style="width: 240px" >
  911. <template slot="prepend">舒张压:</template>
  912. <template slot="append">mmHg</template>
  913. </el-input>
  914. </el-form-item>
  915. </el-col>
  916. </el-row>
  917. </div>
  918. <div style="flex: 1;" class="now_his">
  919. <el-row :gutter="24" style="height:100%;">
  920. <el-col :span="24" style="height:100%;">
  921. <el-form-item label="现病史 : " prop="present_history" style="height:100%;">
  922. <el-input
  923. style="height:100%;"
  924. type="textarea"
  925. :rows="3"
  926. v-model="form.present_history"
  927. resize="none"
  928. placeholder=""
  929. ></el-input>
  930. </el-form-item>
  931. </el-col>
  932. </el-row>
  933. </div>
  934. </div>
  935. <el-row :span="24">
  936. <el-col>
  937. </el-col>
  938. <el-col></el-col>
  939. <el-col :span="24">
  940. <el-form-item label prop="remark">
  941. <el-input
  942. type="textarea"
  943. :rows="3"
  944. v-model="form.remark"
  945. resize="none"
  946. placeholder
  947. ></el-input>
  948. </el-form-item>
  949. </el-col>
  950. <!--<el-col :span="24">-->
  951. <!--<el-form-item label="传染病 : " prop="checkContagions">-->
  952. <!--<el-checkbox-group v-model="form.contagions">-->
  953. <!--<el-checkbox v-for="item in contagionList" v-if="item.type==2" :label="item.id" :key="item.id"-->
  954. <!--:value="item.id">{{item.name}}-->
  955. <!--</el-checkbox>-->
  956. <!--</el-checkbox-group>-->
  957. <!--</el-form-item>-->
  958. <!--</el-col>-->
  959. <!-- <el-col :span="24">
  960. <el-form-item label="慢性病 : " prop="diseases">
  961. <el-checkbox-group v-model="form.diseases">
  962. <el-checkbox
  963. v-for="item in checkDisease"
  964. :label="item.id"
  965. :key="item.id"
  966. :value="item.id"
  967. >{{ item.name }}</el-checkbox
  968. >
  969. </el-checkbox-group>
  970. </el-form-item>
  971. </el-col> -->
  972. <!-- <el-col :span="24">
  973. <el-form-item>
  974. <el-button
  975. type="text"
  976. @click="treat_info_fold = !treat_info_fold"
  977. >
  978. {{ treat_info_fold ? "更多治疗信息" : "收起" }}
  979. <i class="el-icon--right" :class="treat_fold_icon"></i>
  980. </el-button>
  981. </el-form-item>
  982. </el-col> -->
  983. <el-col :span="24">
  984. <el-form-item label="登记人员 : ">
  985. <span>{{ adminusername }}</span>
  986. </el-form-item>
  987. </el-col>
  988. <el-col :span="6">
  989. <el-form-item label="主治医生 : ">
  990. <el-select v-model="form.doctor">
  991. <el-option
  992. v-for="(item,index) in adminUserOptions"
  993. :key="index"
  994. :label="item.name"
  995. :value="item.id"
  996. />
  997. </el-select>
  998. </el-form-item>
  999. </el-col>
  1000. <el-col :span="24" align="right" class="newCol">
  1001. <el-form-item>
  1002. <el-button
  1003. @click="$router.back(-1)"
  1004. icon="el-icon-refresh"
  1005. size="small"
  1006. >取消</el-button
  1007. >
  1008. <el-button
  1009. :disabled="
  1010. $store.getters.xt_user.subscibe.state == 3 || !subscibeFlag
  1011. ? true
  1012. : false
  1013. "
  1014. @click="onSubmit('form')"
  1015. size="small"
  1016. type="primary"
  1017. icon="el-icon-setting"
  1018. >保存</el-button
  1019. >
  1020. <el-button
  1021. v-if="isEdit == false"
  1022. @click="onReSubmit('form')"
  1023. :disabled="
  1024. $store.getters.xt_user.subscibe.state == 3 || !subscibeFlag
  1025. ? true
  1026. : false
  1027. "
  1028. icon="el-icon-document-add"
  1029. size="small"
  1030. type="success"
  1031. >保存并继续新增</el-button
  1032. >
  1033. </el-form-item>
  1034. </el-col>
  1035. </el-row>
  1036. </el-form>
  1037. </div>
  1038. </div>
  1039. </template>
  1040. <script>
  1041. import { getToken } from "@/api/qiniu";
  1042. import BreadCrumb from "@/xt_pages/components/bread-crumb";
  1043. import {
  1044. dialysisAge,
  1045. getFileExtension,
  1046. isCardNo,
  1047. isPositiveInteger,
  1048. jsGetAge,
  1049. uParseTime
  1050. } from "@/utils/tools";
  1051. import {
  1052. createPatient,
  1053. editPatient,
  1054. fetchPatient,
  1055. generateDialysisNo,
  1056. GetPatientTotal
  1057. } from "@/api/patient";
  1058. import { fetchAllAdminUsers } from "@/api/doctor";
  1059. // import { fetchAllDoctorAndNurse } from "@/api/doctor";
  1060. import { getDataConfig } from "@/utils/data";
  1061. const defaultForm = {
  1062. avatar: "https://images.shengws.com/201809182128111.png",
  1063. name: "",
  1064. alias: "",
  1065. idCardNo: "",
  1066. dialysisNo: "",
  1067. gender: "",
  1068. birth: "",
  1069. nation: "",
  1070. native_place: "",
  1071. height: "",
  1072. maritalStatus: "",
  1073. children: "",
  1074. admissionNumber: "",
  1075. reimbursementWayID: "",
  1076. healthCareNo: "",
  1077. phone: "",
  1078. homeTelephone: "",
  1079. relative_phone: "",
  1080. relative_relations: "",
  1081. lapseto: "",
  1082. homeAddress: "",
  1083. work: "",
  1084. unit_address: "",
  1085. profession: "",
  1086. education: "",
  1087. source: "",
  1088. is_hospital_first_dialysis: "",
  1089. firstDialysisDate: "",
  1090. first_dialysis_hospital: "",
  1091. predialysis_condition: [],
  1092. pre_hospital_dialysis_frequency: "",
  1093. pre_hospital_dialysis_times: "",
  1094. hospital_first_dialysis_date: "",
  1095. contagions: [],
  1096. diseases: [],
  1097. remark: "",
  1098. sch_remark:"",
  1099. diagnose: "",
  1100. is_infectious: 1,
  1101. age: "",
  1102. record_number:"",
  1103. response_result: "",
  1104. remind_cycle: 0,
  1105. record_date: "",
  1106. tell_phone: "",
  1107. first_treatment_date: "",
  1108. dialysis_age: "",
  1109. expense_kind: "",
  1110. contact_name: "",
  1111. user_sys_before_count: "",
  1112. troble_shoot:2,
  1113. zb_patient_id:"",
  1114. doctor:"",
  1115. nurse:"",
  1116. patient_source:0,
  1117. patient_start_time:"",
  1118. patient_end_time:"",
  1119. patient_address:"",
  1120. infectious_remark:"",
  1121. allergic_history:"",
  1122. print_date:"",
  1123. formItem: [
  1124. {
  1125. id: 0,
  1126. item: "",
  1127. item_id: 60,
  1128. item_name: "丙型肝炎病毒核心抗体(AntiHCV)",
  1129. project_id: 14,
  1130. project_name: "传染病检查",
  1131. range_type: 2,
  1132. select_options: ["阴性", "阳性", "弱阳性"],
  1133. unit: "",
  1134. value: ""
  1135. },
  1136. {
  1137. id: 0,
  1138. item: "",
  1139. item_id: 62,
  1140. item_name: "乙型肝炎病毒表面抗原(HBsAg)",
  1141. project_id: 14,
  1142. project_name: "传染病检查",
  1143. range_type: 2,
  1144. select_options: ["阴性", "阳性", "弱阳性"],
  1145. unit: "",
  1146. value: ""
  1147. },
  1148. {
  1149. id: 0,
  1150. item: "",
  1151. item_id: 63,
  1152. item_name: "乙型肝炎病毒表面抗体(AntiHBs)",
  1153. project_id: 14,
  1154. project_name: "传染病检查",
  1155. range_type: 2,
  1156. select_options: ["阴性", "阳性", "弱阳性"],
  1157. unit: "",
  1158. value: ""
  1159. },
  1160. {
  1161. id: 0,
  1162. item: "",
  1163. item_id: 64,
  1164. item_name: "乙型肝炎病毒E抗原(HBeAg)",
  1165. project_id: 14,
  1166. project_name: "传染病检查",
  1167. range_type: 2,
  1168. select_options: ["阴性", "阳性", "弱阳性"],
  1169. unit: "",
  1170. value: ""
  1171. },
  1172. {
  1173. id: 0,
  1174. item: "",
  1175. item_id: 65,
  1176. item_name: "乙型肝炎病毒E抗体(AntiHBe)",
  1177. project_id: 14,
  1178. project_name: "传染病检查",
  1179. range_type: 2,
  1180. select_options: ["阴性", "阳性", "弱阳性"],
  1181. unit: "",
  1182. value: ""
  1183. },
  1184. {
  1185. id: 0,
  1186. item: "",
  1187. item_id: 66,
  1188. item_name: "乙型肝炎病毒核心抗体(AntiHBc)",
  1189. project_id: 14,
  1190. project_name: "传染病检查",
  1191. range_type: 2,
  1192. select_options: ["阴性", "阳性", "弱阳性"],
  1193. unit: "",
  1194. value: ""
  1195. },
  1196. {
  1197. id: 0,
  1198. item: "",
  1199. item_id: 111,
  1200. item_name: "HIV抗体",
  1201. project_id: 14,
  1202. project_name: "传染病检查",
  1203. range_type: 2,
  1204. select_options: ["阴性", "阳性", "弱阳性"],
  1205. unit: "",
  1206. value: ""
  1207. },
  1208. {
  1209. id: 0,
  1210. item: "",
  1211. item_id: 112,
  1212. item_name: "梅毒",
  1213. project_id: 14,
  1214. project_name: "传染病检查",
  1215. range_type: 2,
  1216. select_options: ["阴性", "阳性", "弱阳性"],
  1217. unit: "",
  1218. value: ""
  1219. },
  1220. {
  1221. id: 0,
  1222. item: "",
  1223. item_id: 178,
  1224. item_name: "乙型病毒DNA测定(HBVDNH)",
  1225. project_id: 14,
  1226. project_name: "传染病检查",
  1227. range_type: 1,
  1228. select_options: 0,
  1229. unit: "",
  1230. value: ""
  1231. },
  1232. {
  1233. id: 0,
  1234. item: "",
  1235. item_id: 179,
  1236. item_name: "丙型病毒DNA测定(HCVDNH",
  1237. project_id: 14,
  1238. project_name: "传染病检查",
  1239. range_type: 1,
  1240. select_options: 0,
  1241. unit: "",
  1242. value: ""
  1243. }
  1244. ],
  1245. // patientType: "",
  1246. // partition: "",
  1247. // bed: "",
  1248. // age: "",
  1249. // healthCareDueDate: "",
  1250. // blood: "",
  1251. // rh: "",
  1252. // healthCareDueAlertDate: "",
  1253. // receivingDate: "",
  1254. // dialysisAge: "",
  1255. // induction: "",
  1256. // initial: "",
  1257. // dialysisTotal: "",
  1258. // doctor: "",
  1259. // nurse: "",
  1260. // assessment: "",
  1261. patient_complains: "",
  1262. present_history: "",
  1263. past_history: "",
  1264. temperature: "",
  1265. pulse: "",
  1266. respiratory: "",
  1267. sbp: "",
  1268. dbp: "",
  1269. showOne:true,
  1270. treatment_plan:"",
  1271. };
  1272. export default {
  1273. name: "patientForm",
  1274. props: {
  1275. isEdit: {
  1276. type: Boolean,
  1277. default: false
  1278. }
  1279. },
  1280. data() {
  1281. // var checkName = (rule, value, callback) => {
  1282. // const regName=/^([\u4E00-\u9FA5]{1,20}|[a-zA-Z\.\s])$/;
  1283. // if (regName.test(value)){
  1284. // return callback();
  1285. // }
  1286. // callback(new Error("请输入正确的名字"));
  1287. // };
  1288. var checkage = (rule, value, callback) =>{
  1289. const regage=/^(?:[1-9][0-9]?|1[01][0-9]|120)$/
  1290. if(regage.test(value)){
  1291. callback()
  1292. }else{
  1293. callback(new Error('年龄输入不合法'))
  1294. }
  1295. }
  1296. var checkidCard = (rule, value, callback) =>{
  1297. const regid=/^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[0-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}([0-9Xx])$/
  1298. if(regid.test(value)){
  1299. callback()
  1300. }else{
  1301. callback(new Error('身份证输入有误'))
  1302. }
  1303. }
  1304. var checkContagions = (rule, value, callback) => {
  1305. if (this.form.is_infectious == '1') {
  1306. return callback();
  1307. }
  1308. if (this.form.is_infectious == "2" && value.length == 0) {
  1309. return callback(new Error("至少选择一项传染病"));
  1310. }
  1311. callback();
  1312. };
  1313. var checkPhone = (rule, value, callback) => {
  1314. if (value.length == 0) {
  1315. return callback(new Error("本人电话不能为空"));
  1316. }
  1317. if (
  1318. !value.match(
  1319. /^1\d{10}$/
  1320. )
  1321. ) {
  1322. return callback(new Error("请填写正确的电话(手机号码)"));
  1323. }
  1324. callback();
  1325. };
  1326. var checkFamilyPhone = (rule, value, callback) => {
  1327. if (value.length == 0) {
  1328. return callback(new Error("家属电话不能为空"));
  1329. }
  1330. if (
  1331. !value.match(
  1332. /^1\d{10}$/
  1333. )
  1334. ) {
  1335. return callback(new Error("请填写正确的电话(手机号码)"));
  1336. }
  1337. callback();
  1338. };
  1339. return {
  1340. crumbs: [
  1341. { path: false, name: "病人管理" },
  1342. { path: false, name: "新增病人" }
  1343. ],
  1344. generic_info_fold: true,
  1345. treat_info_fold: true,
  1346. patientTotal: 0,
  1347. pageLoad: true,
  1348. avatarFlag: false,
  1349. subscibeFlag: false,
  1350. orgname: "",
  1351. adminusername: "",
  1352. form: Object.assign({}, defaultForm),
  1353. formSubmit: true,
  1354. submitMethod: "",
  1355. uploadData: { token: "", key: "" },
  1356. dialogImageUrl: "",
  1357. qiniuDomain: "https://images.shengws.com/",
  1358. dialogVisible: false,
  1359. // typeOptions: null,
  1360. // styleOptions: null,
  1361. sourceOptions: [{ value: 1, label: "门诊" }, { value: 2, label: "住院" }, { value: 3, label: "门特" }],
  1362. patientSourceList:[
  1363. {value:1,label:"门诊"},
  1364. {value:2,label:"住院"},
  1365. ],
  1366. lapsetoOptions: [
  1367. { value: 1, label: "留治" },
  1368. { value: 2, label: "转出" }
  1369. ],
  1370. // partitionOptions: null,
  1371. sexOptions: [{ value: 1, label: "男" }, { value: 2, label: "女" }],
  1372. isHospitalFirstDialysisOptions: [
  1373. { value: 1, label: "是" },
  1374. { value: 2, label: "否" }
  1375. ],
  1376. predialysisConditionOptions: [
  1377. { value: 1, label: "腹膜透析" },
  1378. { value: 2, label: "肾移植" }
  1379. ],
  1380. maritalOptions: null,
  1381. wayOptions: null,
  1382. educationOptions: null,
  1383. professionOptions: null,
  1384. // inductionOptions: null,
  1385. // doctorOptions: null,
  1386. // nurseOptions: null,
  1387. // rhOptions: null,
  1388. checkDisease: null,
  1389. contagionList: null,
  1390. dialogFormVisible: false,
  1391. loading: null,
  1392. submitMsg: "",
  1393. patientID: 0,
  1394. formLoading: false,
  1395. expenseOptions: [
  1396. { id: 1, name: "基本医保" },
  1397. { id: 2, name: "新农合" },
  1398. { id: 3, name: "自费医疗" },
  1399. { id: 4, name: "公费医疗" },
  1400. { id: 5, name: "商业保险" },
  1401. { id: 6, name: "军队医疗" },
  1402. { id: 7, name: "其他" }
  1403. ],
  1404. subscibe: {},
  1405. showLapseto:true,
  1406. rules: {
  1407. contagions: [
  1408. {
  1409. type: "array",
  1410. required: true,
  1411. trigger: "change",
  1412. validator: checkContagions
  1413. }
  1414. ],
  1415. patientType: [
  1416. { required: true, message: "请选择患者类型", trigger: "blur" }
  1417. ],
  1418. dialysisNo: [
  1419. { required: true, message: "请填写透析号", trigger: "blur" }
  1420. // {type:'number', message:"透析号填写有误", trigger: 'blur'}
  1421. ],
  1422. phone: [{ validator: checkPhone, trigger: "blur" }],
  1423. source: [
  1424. { required: true, message: "请选择患者来源", trigger: "blur" }
  1425. ],
  1426. lapseto: [
  1427. { required: true, message: "请选择治疗状态", trigger: "blur" }
  1428. ],
  1429. name: [{ required: true, message: "请填写姓名", trigger: "blur" },
  1430. // { validator: checkName,min:2,max:5, message: '请输入正确的名字', trigger: 'blur'}
  1431. ],
  1432. gender: [{ required: true, message: "请选择性别", trigger: "blur" }],
  1433. idCardNo: [
  1434. { required: true, message: "请填写身份证号", trigger: "blur" },
  1435. {validator:checkidCard,trigger:'blur'}
  1436. ],
  1437. birth: [{ required: true, message: "请填写生日", trigger: "blur" }],
  1438. age: [{ required: true, message: "年龄不能为空", trigger: "blur" },
  1439. {validator: checkage,trigger:'blur'}],
  1440. firstDialysisDate: [
  1441. { required: true, message: "请选择日期", trigger: "blur" }
  1442. ],
  1443. homeTelephone: [{ validator: checkFamilyPhone, trigger: "blur" }],
  1444. homeAddress: [{ required: true, message: "请填写住址", trigger: "blur" }],
  1445. },
  1446. adminUserOptions:[],
  1447. org_id:0,
  1448. liuAddresslist:[]
  1449. };
  1450. },
  1451. components: {
  1452. BreadCrumb
  1453. },
  1454. computed: {
  1455. generic_fold_icon: function() {
  1456. return this.generic_info_fold ? "el-icon-arrow-down" : "el-icon-arrow-up";
  1457. },
  1458. treat_fold_icon: function() {
  1459. return this.treat_info_fold ? "el-icon-arrow-down" : "el-icon-arrow-up";
  1460. }
  1461. },
  1462. created() {
  1463. this.liuAddresslist = getDataConfig('hemodialysis', 'liu_address')
  1464. console.log("liuAddresslist",this.liuAddresslist)
  1465. this.fetchAllAdminUsers();
  1466. if(this.isEdit == true){
  1467. this.showLapseto = false
  1468. }
  1469. // this.styleOptions = this.$store.getters.patient_types;
  1470. // this.partitionOptions = this.$store.getters.partitions;
  1471. this.maritalOptions = getDataConfig("patient", "marital_options");
  1472. this.wayOptions = getDataConfig("patient", "reimbursement_ways");
  1473. // this.typeOptions = this.$store.getters.blood_types;
  1474. // this.rhOptions = this.$store.getters.rh;
  1475. this.educationOptions = getDataConfig("patient", "education_types");
  1476. this.professionOptions = getDataConfig("patient", "profession_options");
  1477. var obj ={id:11,name:"退休"}
  1478. var objOne = {id:12,name:"灵活就业人员"}
  1479. this.professionOptions.push(obj)
  1480. this.professionOptions.push(objOne)
  1481. // this.inductionOptions = this.$store.getters.induction_options;
  1482. this.contagionList = this.$store.getters.contagions;
  1483. this.checkDisease = this.$store.getters.disease;
  1484. this.subscibe = this.$store.getters.xt_user.subscibe;
  1485. this.GetPatientTotal();
  1486. // this.fetchAllDoctorAndNurse();
  1487. this.pageLoad = false;
  1488. var xtuser = this.$store.getters.xt_user;
  1489. this.orgname = xtuser.org.org_name;
  1490. this.adminusername = xtuser.user.user_name;
  1491. this.org_id =this.$store.getters.xt_user.org.id
  1492. if (this.isEdit) {
  1493. this.submitMsg = "修改患者信息成功";
  1494. const id = this.$route.params && this.$route.params.id;
  1495. this.patientID = parseInt(id);
  1496. if (isNaN(this.patientID) || this.patientID <= 0) {
  1497. this.$notify.error({
  1498. title: "错误",
  1499. message: "无效的id"
  1500. });
  1501. this.$router.back(-1);
  1502. }
  1503. this.fetchPatient(id);
  1504. this.avatarFlag = true;
  1505. } else {
  1506. this.submitMsg = "新增患者成功";
  1507. this.form = Object.assign({}, defaultForm);
  1508. this.form.lapseto = 1
  1509. if(this.org_id == 0 || this.org_id ==9919 || this.org_id ==10571){
  1510. this.form.diagnose = "1.慢性肾脏病5期 IgA肾病 维持性血液透析 肾性贫血 肾性高血压 继发性甲状旁腺功能亢进症 2.右前臂自体动静脉内瘘成形术后"
  1511. this.form.treatment_plan ="完善相关检查,规律血液透析,每周2次,每次5小时。纠正贫血, 达泊丁 (自备) 120ug 皮下注射 每4周1次;控制血压:非洛地平缓释片 5mg 口服 1次/日,酒石酸美托洛尔片 50mg/次 口服 每日1次;阿托伐他汀钙片 40mg/次 口服 每日1次。"
  1512. this.form.patient_complains = "维持性血液透析1年余"
  1513. this.form.past_history = "既往否认冠心病、糖尿病等慢性疾病;否认肝炎、结核、艾滋、梅毒等传染病史;否认药物、食物过敏史;无重大手术、外伤史。"
  1514. this.form.present_history = "患者于30年前体检查尿蛋白+,行肾穿刺活检,病理结果示:IgA肾病,此后于香港当地医院规范治疗,定时复查,至2021年12月复查发现血肌酐渐升高,300+umol/L,血压高于正常,开始为肾透析行右前臂自体动静脉内瘘成形术,1年前导入透析治疗,每周2次,每次5小时,规律维持至今。平素无胸闷、心慌,无咳嗽、咳痰,无恶心、呕吐,饮食、睡眠可,尿量约1000ml/日。本次检查感染四项阴性,血红蛋白103g/L,PTH 28.2pmol/L, Ca 2.17mmol/L ,P 1.57mmol/L。"
  1515. this.form.remark = "神志清,精神可,体型肥胖,面色黝黑,颜面、眼睑无浮肿,皮肤未见出血点、瘀斑;胸廓对称,心前区无隆起,心界向左扩大,心音有力,节律规整,未闻及明显杂音,双肺呼吸音粗;腹部呈脂肪堆积,腹软,无包块、无皮疹、无静脉曲张、无压痛;脊柱、四肢未见畸形,关节活动正常,肌力正常;双下肢无明显水肿;右前臂自体动静脉内瘘能触及震颤、闻及连续杂音。"
  1516. this.form.temperature = 36.5
  1517. this.form.pulse=75
  1518. this.form.respiratory = 20
  1519. this.form.sbp=150
  1520. this.form.dbp = 80
  1521. }
  1522. }
  1523. },
  1524. watch: {
  1525. // "form.record_date": function(val) {
  1526. // console.log(val);
  1527. // if (val == null || val == "") {
  1528. // console.log("111111");
  1529. // this.form.remind_cycle = "";
  1530. // }
  1531. // }
  1532. },
  1533. methods: {
  1534. fetchAllAdminUsers() {
  1535. fetchAllAdminUsers().then((response) => {
  1536. if (response.data.state === 1) {
  1537. this.form.doctor = this.$store.getters.xt_user.user.id
  1538. this.adminUserOptions = response.data.data.users;
  1539. }
  1540. });
  1541. },
  1542. recordCheck() {
  1543. if (this.form.record_date == "") {
  1544. this.$message.error("请先选择检验检查日期");
  1545. return;
  1546. } else {
  1547. this.dialogFormVisible = true;
  1548. }
  1549. },
  1550. GetPatientTotal() {
  1551. GetPatientTotal()
  1552. .then(response => {
  1553. if (response.data.state == 1) {
  1554. this.patientTotal = response.data.data.total;
  1555. this.subscibeFlag = true;
  1556. // if ((this.subscibe.state == 2 && this.patientTotal >= 100) || (this.subscibe.state == 1 && this.patientTotal >= 200)) {
  1557. // this.$alert('患者数已达到当前服务版本病人数,需要升级到更高的版本', '提示', {
  1558. // confirmButtonText: '确定',
  1559. // showClose: false,
  1560. // callback: action => {
  1561. // this.$router.push('/service/buy')
  1562. // }
  1563. // })
  1564. // } else {
  1565. // this.subscibeFlag = true
  1566. // }
  1567. } else {
  1568. this.$message.error(response.data.msg);
  1569. }
  1570. })
  1571. .catch(e => {});
  1572. },
  1573. changeGender(value) {
  1574. if (this.avatarFlag) {
  1575. return false;
  1576. }
  1577. if (value == 1) {
  1578. this.form.avatar = "https://images.shengws.com/201809182128111.png";
  1579. } else if (value == 2) {
  1580. this.form.avatar = "https://images.shengws.com/201809182128222.png";
  1581. } else {
  1582. }
  1583. },
  1584. resetForm(formName) {
  1585. this.$refs[formName].resetFields();
  1586. },
  1587. onReSubmit(formName) {
  1588. this.submitForm(formName, "renew");
  1589. },
  1590. onSubmit(formName) {
  1591. console.log("2222",this.form)
  1592. this.submitForm(formName, "redict");
  1593. },
  1594. submitForm(formName, action) {
  1595. if (!this.formSubmit) {
  1596. return false;
  1597. }
  1598. this.form.user_sys_before_count = this.form.user_sys_before_count.toString()
  1599. this.$refs[formName].validate(valid => {
  1600. if (valid) {
  1601. this.formSubmit = false;
  1602. if (this.isEdit) {
  1603. this.form.age = parseInt(this.form.age);
  1604. this.form.user_sys_before_count = this.form.user_sys_before_count.toString();
  1605. this.form.troble_shoot = parseInt(this.form.troble_shoot)
  1606. this.form.doctor = parseInt(this.form.doctor)
  1607. this.form.nurse = parseInt(this.form.nurse)
  1608. if(this.form.patient_source >0){
  1609. this.form.patient_source = parseInt(this.form.patient_source)
  1610. }else{
  1611. this.form.patient_source = 1
  1612. }
  1613. if(this.form.patient_source == "NaN"){
  1614. this.form.patient_source = 1
  1615. }
  1616. if(this.form.avatar.indexOf('?imageView2/2/w/500/h/500/q/90')!=-1){
  1617. this.form.avatar = this.form.avatar
  1618. }else{
  1619. this.form.avatar = this.form.avatar + "?imageView2/2/w/500/h/500/q/90"
  1620. }
  1621. console.log("form---",this.form)
  1622. editPatient(this.patientID, this.form)
  1623. .then(response => {
  1624. if (response.data.state == 0) {
  1625. this.$message.error(response.data.msg);
  1626. this.formSubmit = true;
  1627. return false;
  1628. } else {
  1629. this.formSubmit = false;
  1630. this.$notify({
  1631. title: "成功",
  1632. message: this.submitMsg,
  1633. type: "success",
  1634. duration: 2000
  1635. });
  1636. this.$refs[formName].resetFields();
  1637. if (action !== "renew") {
  1638. this.$router.back(-1);
  1639. }
  1640. this.formSubmit = true;
  1641. return false;
  1642. }
  1643. })
  1644. .catch(err => {
  1645. this.$message.error("网络异常");
  1646. this.formSubmit = true;
  1647. return false;
  1648. });
  1649. } else {
  1650. this.form.age = parseInt(this.form.age);
  1651. this.form.troble_shoot = parseInt(this.form.troble_shoot)
  1652. this.form.doctor = parseInt(this.form.doctor)
  1653. this.form.nurse = parseInt(this.form.nurse)
  1654. if(this.form.patient_source >0){
  1655. this.form.patient_source = parseInt(this.form.patient_source)
  1656. }else{
  1657. this.form.patient_source = 1
  1658. }
  1659. if(this.form.patient_source == "NaN"){
  1660. this.form.patient_source = 1
  1661. }
  1662. console.log("form233322332w",this.form)
  1663. createPatient(this.form)
  1664. .then(response => {
  1665. if (response.data.state == 0) {
  1666. this.$message.error(response.data.msg);
  1667. this.formSubmit = true;
  1668. return false;
  1669. } else {
  1670. this.formSubmit = true;
  1671. this.$notify({
  1672. title: "成功",
  1673. message: this.submitMsg,
  1674. type: "success",
  1675. duration: 2000
  1676. });
  1677. this.$refs[formName].resetFields();
  1678. this.$store.dispatch("SetSubscibePatients");
  1679. var sub = this.$store.getters.xt_user.subscibe;
  1680. if (action !== "renew") {
  1681. this.$router.back(-1);
  1682. }
  1683. return false;
  1684. }
  1685. })
  1686. .catch(err => {
  1687. this.$message.error("网络异常");
  1688. this.formSubmit = true;
  1689. return false;
  1690. });
  1691. }
  1692. } else {
  1693. this.formSubmit = true;
  1694. return false;
  1695. }
  1696. });
  1697. },
  1698. handlePictureCardPreview(file) {
  1699. this.dialogImageUrl = file.url;
  1700. this.dialogVisible = true;
  1701. },
  1702. handleAvatarError(err, file, fileList) {
  1703. this.$message.error(err);
  1704. this.loading.close();
  1705. return false;
  1706. },
  1707. handleAvatarSuccess(res, file) {
  1708. // this.imageUrl = URL.createObjectURL(file.raw);
  1709. this.form.avatar = this.qiniuDomain + res.url +"?imageView2/2/w/500/h/500/q/90";
  1710. console.log("上传成功地址",this.form.avatar)
  1711. this.avatarFlag = true;
  1712. this.loading.close();
  1713. },
  1714. beforeAvatarUpload(file) {
  1715. // const isJPG = file.type === "image/jpeg";
  1716. var fileType = file.type;
  1717. const isJPG = fileType.indexOf("image") > -1;
  1718. const isLt2M = file.size / 1024 / 1024 < 6;
  1719. if (!isJPG) {
  1720. this.$message.error("只能上传图片");
  1721. return false;
  1722. }
  1723. if (!isLt2M) {
  1724. this.$message.error("上传头像图片大小不能超过 6MB!");
  1725. return false;
  1726. }
  1727. var date = new Date();
  1728. var ext = getFileExtension(file.name);
  1729. var key =
  1730. date.getFullYear() +
  1731. "/" +
  1732. (date.getMonth() + 1) +
  1733. "/" +
  1734. date.getDate() +
  1735. "/" +
  1736. date.getHours() +
  1737. "/" +
  1738. date.getMinutes() +
  1739. "/" +
  1740. date.getSeconds() +
  1741. "/" +
  1742. "_s_" +
  1743. file.uid +
  1744. "." +
  1745. ext;
  1746. this.loading = this.$loading({
  1747. lock: true,
  1748. text: "上传中...",
  1749. spinner: "el-icon-loading",
  1750. background: "rgba(0, 0, 0, 0.7)"
  1751. });
  1752. const _self = this;
  1753. return new Promise((resolve, reject) => {
  1754. getToken()
  1755. .then(response => {
  1756. const token = response.data.data.uptoken;
  1757. _self._data.uploadData.token = token;
  1758. _self._data.uploadData.key = key;
  1759. resolve(true);
  1760. })
  1761. .catch(err => {
  1762. console.log(err);
  1763. reject(false);
  1764. this.loading.close();
  1765. });
  1766. });
  1767. },
  1768. generatedialysisno() {
  1769. generateDialysisNo().then(response => {
  1770. this.form.dialysisNo = response.data.data.no + "";
  1771. });
  1772. },
  1773. checkIdCardNo() {
  1774. // console.log(this.form.idCardNo);
  1775. if (!isCardNo(this.form.idCardNo)) {
  1776. // this.$message.error("身份证号码信息有误!");
  1777. this.form.birth = "";
  1778. return false;
  1779. }
  1780. var thisLen = this.form.idCardNo.length;
  1781. var birth = "";
  1782. if (thisLen == 15) {
  1783. birth = "19" + this.form.idCardNo.substr(6, 6);
  1784. } else {
  1785. birth = this.form.idCardNo.substr(6, 8);
  1786. }
  1787. this.form.birth =
  1788. birth.substr(0, 4) +
  1789. "-" +
  1790. birth.substr(4, 2) +
  1791. "-" +
  1792. birth.substr(6, 2);
  1793. this.form.age = jsGetAge(this.form.birth, "-");
  1794. },
  1795. hadSelectBirth() {
  1796. this.form.age = jsGetAge(this.form.birth, "-");
  1797. },
  1798. checkHeight() {
  1799. if (!isPositiveInteger(this.form.height)) {
  1800. this.$message.error("身高请填写正整数!");
  1801. return false;
  1802. }
  1803. },
  1804. selectFirstDialysisDate() {
  1805. this.form.dialysisAge = dialysisAge(this.form.firstDialysisDate);
  1806. },
  1807. fetchPatient(id) {
  1808. fetchPatient(id)
  1809. .then(response => {
  1810. if (response.data.state == 1) {
  1811. this.$emit("tran-patient-info", response.data.data.patient);
  1812. var patietInfo = response.data.data.patient;
  1813. console.log("9999999",response.data.data.patient)
  1814. this.form.avatar = patietInfo.avatar;
  1815. this.form.name = patietInfo.name;
  1816. this.form.alias = patietInfo.alias;
  1817. this.form.idCardNo = patietInfo.id_card_no;
  1818. this.form.dialysisNo = patietInfo.dialysis_no;
  1819. this.form.gender = patietInfo.gender;
  1820. if (patietInfo.gender == 1 || patietInfo.gender == 2) {
  1821. this.form.gender = patietInfo.gender;
  1822. }
  1823. this.form.birth = uParseTime(patietInfo.birthday, "{y}-{m}-{d}");
  1824. this.form.nation = patietInfo.nation;
  1825. this.form.native_place = patietInfo.native_place;
  1826. this.form.height = patietInfo.height + "";
  1827. console.log(this.form.birth);
  1828. if (patietInfo.marital_status > 0) {
  1829. this.form.maritalStatus = patietInfo.marital_status;
  1830. }
  1831. this.form.children = patietInfo.children;
  1832. this.form.admissionNumber = patietInfo.admission_number;
  1833. if (patietInfo.reimbursement_way_id > 0) {
  1834. this.form.reimbursementWayID = patietInfo.reimbursement_way_id;
  1835. }
  1836. this.form.healthCareNo = patietInfo.health_care_no;
  1837. this.form.phone = patietInfo.phone;
  1838. this.form.homeTelephone = patietInfo.home_telephone;
  1839. this.form.relative_phone = patietInfo.relative_phone;
  1840. this.form.relative_relations = patietInfo.relative_relations;
  1841. this.form.remind_cycle = patietInfo.remind_cycle;
  1842. this.form.homeAddress = patietInfo.home_address;
  1843. this.form.work = patietInfo.work_unit;
  1844. this.form.unit_address = patietInfo.unit_address;
  1845. this.form.user_sys_before_count = patietInfo.user_sys_before_count;
  1846. this.form.treatment_plan = patietInfo.treatment_plan
  1847. if (patietInfo.profession > 0) {
  1848. this.form.profession = patietInfo.profession;
  1849. }
  1850. if (patietInfo.education_level > 0) {
  1851. this.form.education = patietInfo.education_level;
  1852. }
  1853. if (patietInfo.source == 1 || patietInfo.source == 2) {
  1854. this.form.source = patietInfo.source;
  1855. }
  1856. if (patietInfo.lapseto == 1 || patietInfo.lapseto == 2 || patietInfo.lapseto == 3) {
  1857. this.form.lapseto = patietInfo.lapseto;
  1858. }
  1859. if (
  1860. patietInfo.is_hospital_first_dialysis == 1 ||
  1861. patietInfo.is_hospital_first_dialysis == 2
  1862. ) {
  1863. this.form.is_hospital_first_dialysis =
  1864. patietInfo.is_hospital_first_dialysis;
  1865. }
  1866. if (patietInfo.first_dialysis_date != 0) {
  1867. this.form.firstDialysisDate = uParseTime(
  1868. patietInfo.first_dialysis_date,
  1869. "{y}-{m}-{d}"
  1870. );
  1871. }
  1872. this.form.first_dialysis_hospital =
  1873. patietInfo.first_dialysis_hospital;
  1874. if (patietInfo.predialysis_condition.length > 0) {
  1875. this.form.predialysis_condition = patietInfo.predialysis_condition.split(
  1876. ","
  1877. );
  1878. }
  1879. this.form.pre_hospital_dialysis_frequency =
  1880. patietInfo.pre_hospital_dialysis_frequency;
  1881. this.form.pre_hospital_dialysis_times =
  1882. patietInfo.pre_hospital_dialysis_times;
  1883. if (patietInfo.hospital_first_dialysis_date != 0) {
  1884. this.form.hospital_first_dialysis_date = uParseTime(
  1885. patietInfo.hospital_first_dialysis_date,
  1886. "{y}-{m}-{d}"
  1887. );
  1888. }
  1889. this.form.contagions = response.data.data.contagions;
  1890. this.form.diseases = response.data.data.diseases;
  1891. this.form.remark = patietInfo.remark;
  1892. this.form.sch_remark = patietInfo.sch_remark;
  1893. this.form.diagnose = patietInfo.diagnose;
  1894. this.form.patient_complains = patietInfo.patient_complains;
  1895. this.form.present_history = patietInfo.present_history;
  1896. this.form.past_history = patietInfo.past_history;
  1897. this.form.temperature = patietInfo.temperature;
  1898. this.form.pulse = patietInfo.pulse;
  1899. this.form.respiratory = patietInfo.respiratory;
  1900. this.form.sbp = patietInfo.sbp;
  1901. this.form.dbp = patietInfo.dbp;
  1902. this.form.response_result = patietInfo.response_result;
  1903. this.form.is_infectious = patietInfo.is_infectious;
  1904. console.log("哈哈哈哈",patietInfo.is_infectious)
  1905. // if(this.form.is_infectious == 1){
  1906. // this.form.remind_cycle = 0
  1907. // }
  1908. this.form.tell_phone = patietInfo.tell_phone;
  1909. this.form.dialysis_age = patietInfo.dialysis_age;
  1910. this.form.contact_name = patietInfo.contact_name;
  1911. if (patietInfo.expense_kind == 0) {
  1912. this.form.expense_kind = "";
  1913. } else {
  1914. this.form.expense_kind = patietInfo.expense_kind;
  1915. }
  1916. this.form.troble_shoot = patietInfo.troble_shoot
  1917. this.form.zb_patient_id = patietInfo.zb_patient_id
  1918. this.form.first_treatment_date = uParseTime(
  1919. patietInfo.first_treatment_date,
  1920. "{y}-{m}-{d}"
  1921. );
  1922. this.form.print_date = uParseTime(
  1923. patietInfo.print_date,
  1924. "{y}-{m}-{d}"
  1925. );
  1926. if (patietInfo.age == 0) {
  1927. this.form.age = jsGetAge(this.form.birth, "-");
  1928. } else {
  1929. this.form.age = patietInfo.age;
  1930. }
  1931. // this.form.initial = patietInfo.initial_dialysis + "";
  1932. // this.form.dialysisTotal = patietInfo.total_dialysis + "";
  1933. // this.form.assessment = patietInfo.evaluate;
  1934. // if (patietInfo.patient_type > 0) {
  1935. // this.form.patientType = patietInfo.patient_type;
  1936. // }
  1937. // if (patietInfo.partition_id > 0) {
  1938. // this.form.partition = patietInfo.partition_id;
  1939. // }
  1940. // if (patietInfo.bed_id > 0) {
  1941. // this.form.bed = patietInfo.bed_id;
  1942. // }
  1943. // this.form.healthCareDueDate = uParseTime(
  1944. // patietInfo.health_care_due_date,
  1945. // "{y}-{m}-{d}"
  1946. // );
  1947. // if (patietInfo.blood_type > 0) {
  1948. // this.form.blood = patietInfo.blood_type;
  1949. // }
  1950. // if (patietInfo.rh > 0) {
  1951. // this.form.rh = patietInfo.rh;
  1952. // }
  1953. // this.form.healthCareDueAlertDate = uParseTime(
  1954. // patietInfo.health_care_due_alert_date,
  1955. // "{y}-{m}-{d}"
  1956. // );
  1957. // this.form.receivingDate = uParseTime(
  1958. // patietInfo.receiving_date,
  1959. // "{y}-{m}-{d}"
  1960. // );
  1961. // this.form.dialysisAge = dialysisAge(
  1962. // this.form.firstDialysisDate,
  1963. // "-"
  1964. // );
  1965. // if (patietInfo.induction_period > 0) {
  1966. // this.form.induction = patietInfo.induction_period;
  1967. // }
  1968. // if (patietInfo.attending_doctor_id > 0) {
  1969. // this.form.doctor = patietInfo.attending_doctor_id;
  1970. // }
  1971. if (patietInfo.head_nurse_id > 0) {
  1972. this.form.nurse = patietInfo.head_nurse_id;
  1973. }
  1974. // if (patietInfo.registrars_id > 0) {
  1975. // this.form.registrars = patietInfo.registrars_id;
  1976. // }
  1977. this.form.record_number = patietInfo.record_number
  1978. this.form.doctor = patietInfo.doctor
  1979. if(this.form.doctor == 0){
  1980. this.form.doctor = ""
  1981. }
  1982. this.form.patient_source = patietInfo.patient_source
  1983. if (patietInfo.patient_start_time != 0) {
  1984. this.form.patient_start_time = uParseTime(
  1985. patietInfo.patient_start_time,
  1986. "{y}-{m}-{d}"
  1987. );
  1988. }
  1989. if (patietInfo.patient_end_time != 0) {
  1990. this.form.patient_end_time = uParseTime(
  1991. patietInfo.patient_end_time,
  1992. "{y}-{m}-{d}"
  1993. );
  1994. }
  1995. this.form.patient_address = patietInfo.patient_address
  1996. this.form.allergic_history = patietInfo.allergic_history
  1997. this.form.infectious_remark = patietInfo.infectious_remark
  1998. this.checkIdCardNo();
  1999. } else {
  2000. this.$notify.error({
  2001. title: "错误",
  2002. message: "网络异常"
  2003. });
  2004. this.$router.back(-1);
  2005. }
  2006. // this.postForm = response.data
  2007. // // Just for test
  2008. // this.postForm.title += ` Article Id:${this.postForm.id}`
  2009. // this.postForm.content_short += ` Article Id:${this.postForm.id}`
  2010. })
  2011. .catch(err => {
  2012. this.$notify.error({
  2013. title: "错误",
  2014. message: "网络异常"
  2015. });
  2016. this.$router.back(-1);
  2017. });
  2018. },
  2019. submitNew(formName) {
  2020. this.dialogFormVisible = false;
  2021. },
  2022. changeCycle(val) {
  2023. if (!this.isEdit) {
  2024. if (this.form.record_date == "" || this.form.record_date == null) {
  2025. this.$message.error("请先选择检查结果日期");
  2026. this.form.remind_cycle = "";
  2027. return;
  2028. }
  2029. }
  2030. },
  2031. changeInfectious(val){
  2032. if(val == 1){
  2033. this.showOne = false
  2034. }
  2035. if(val == 2){
  2036. this.showOne = true
  2037. }
  2038. },
  2039. getTime(value, temp) {
  2040. if (value != undefined) {
  2041. return uParseTime(value, temp);
  2042. }
  2043. return "";
  2044. },
  2045. // fetchAllDoctorAndNurse() {
  2046. // fetchAllDoctorAndNurse().then(response => {
  2047. // if (response.data.state == 1) {
  2048. // this.doctorOptions = response.data.data.doctors;
  2049. // this.nurseOptions = response.data.data.nursers;
  2050. // }
  2051. // });
  2052. // }
  2053. }
  2054. };
  2055. </script>
  2056. <style rel="stylesheet/scss" lang="scss" scoped>
  2057. .uploadHeadBtn {
  2058. width: 148px;
  2059. margin-top: 10px;
  2060. }
  2061. .el-form {
  2062. .el-col-6,
  2063. .el-col-8 {
  2064. width: 430px;
  2065. height: 59px !important;
  2066. }
  2067. .el-form-item {
  2068. .el-select {
  2069. width: 100%;
  2070. }
  2071. .el-date-editor.el-input {
  2072. width: 100%;
  2073. }
  2074. .textarea {
  2075. width: 100%;
  2076. height: 70px;
  2077. border-color: #dcdfe6;
  2078. padding: 5px;
  2079. }
  2080. }
  2081. }
  2082. .el-select-dropdown {
  2083. z-index: 998 !important;
  2084. }
  2085. .newCol {
  2086. position: fixed;
  2087. bottom: 0;
  2088. right: 50px;
  2089. }
  2090. /deep/ .now_his{
  2091. .el-row{
  2092. .el-col-24{
  2093. .el-form-item{
  2094. .el-form-item__content{
  2095. height: 100%;
  2096. .el-textarea{
  2097. .el-textarea__inner{
  2098. height: 93%;
  2099. }
  2100. }
  2101. }
  2102. }
  2103. }
  2104. }
  2105. }
  2106. </style>