PatientDetail.vue 95KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685
  1. <template>
  2. <div class="app-container">
  3. <el-dialog
  4. title="查看传染病检查结果"
  5. :visible.sync="dialogFormVisible"
  6. width="1000px"
  7. id="user-inspection-form"
  8. >
  9. <el-form :model="form" ref="form" label-position="top">
  10. <el-row>
  11. <el-col :span="1">&nbsp;</el-col>
  12. <template v-for="(item, index) in form.formItem">
  13. <el-col :span="7" >
  14. <el-form-item
  15. :label="item.item_name"
  16. v-if="item.range_type == 1"
  17. :key="item.item_id"
  18. :prop="'formItem.' + index + '.value'"
  19. >
  20. <el-input
  21. placeholder="请填入"
  22. v-model="item.value"
  23. style="width: 95%"
  24. type="number"
  25. disabled
  26. >
  27. <template slot="append">{{ item.unit }}</template>
  28. </el-input>
  29. </el-form-item>
  30. <el-form-item
  31. :label="item.item_name"
  32. v-else
  33. :key="item.item_id"
  34. :prop="'formItem.' + index + '.value'"
  35. >
  36. <!-- :key="item.item_id" -->
  37. <el-select
  38. v-model="item.value"
  39. placeholder="请选择"
  40. style="width: 95%"
  41. disabled
  42. >
  43. <el-option
  44. v-for="(optionItem, oidex) in item.select_options"
  45. :key="oidex"
  46. :label="optionItem"
  47. :value="optionItem"
  48. >
  49. </el-option>
  50. </el-select>
  51. </el-form-item>
  52. </el-col>
  53. <el-col :span="1" :key="'form-col' + index">&nbsp;</el-col>
  54. </template>
  55. </el-row>
  56. </el-form>
  57. <div slot="footer" class="dialog-footer">
  58. <el-button @click="dialogFormVisible = false">关闭</el-button>
  59. </div>
  60. </el-dialog>
  61. <el-form
  62. ref="form"
  63. :rules="rules"
  64. :model="form"
  65. label-width="134px"
  66. class="clearfix"
  67. id="patient-info"
  68. >
  69. <div style="float: right; z-index: 8; position: absolute; right: 16px">
  70. <el-button
  71. size="small"
  72. type="primary"
  73. @click="printCard()"
  74. style="margin: 0 6px 6px 0; z-index: 1"
  75. >打印签到卡</el-button
  76. >
  77. <el-button
  78. size="small"
  79. :disabled="$store.getters.xt_user.subscibe.state == 3 ? true : false"
  80. type="primary"
  81. @click="$router.push('/patients/patient/' + patientID + '/edit')"
  82. style="margin: 0 0 6px 0; z-index: 1"
  83. >修改</el-button
  84. >
  85. <el-button
  86. size="small"
  87. type="primary"
  88. @click="printThisInfo()"
  89. style="margin: 0 6px 6px 0; z-index: 1"
  90. >打印</el-button
  91. >
  92. </div>
  93. <div class="dataTitle">一般资料</div>
  94. <el-row>
  95. <el-col :span="20">
  96. <el-row :gutter="10">
  97. <el-col :span="8">
  98. <el-form-item label="姓名 : " class="is-required" prop="name">
  99. <el-input v-model="form.name" disabled></el-input>
  100. </el-form-item>
  101. </el-col>
  102. <el-col :span="8" style="height: 59px">
  103. <el-form-item label="性别 : " class="is-required" prop="gender">
  104. <el-radio-group v-model="form.gender">
  105. <el-radio
  106. v-for="item in sexOptions"
  107. :key="item.value"
  108. :label="item.value"
  109. :value="item.value"
  110. disabled
  111. >{{ item.label }}</el-radio
  112. >
  113. </el-radio-group>
  114. </el-form-item>
  115. </el-col>
  116. <el-col :span="8">
  117. <el-form-item
  118. label="身份证号 : "
  119. class="is-required"
  120. >
  121. <el-input v-model="form.idCardNo" disabled @blur="checkIdCardNo"></el-input>
  122. </el-form-item>
  123. </el-col>
  124. <el-col :span="8" style="height: 59px">
  125. <el-form-item label="年龄 : " class="is-required" prop="age">
  126. <el-input v-model="form.age" disabled></el-input>
  127. </el-form-item>
  128. </el-col>
  129. <el-col :span="8">
  130. <el-form-item label="透析号 : " class="is-required">
  131. <el-input
  132. disabled
  133. v-model="form.dialysisNo"
  134. placeholder="填写或自动生成"
  135. style="width: 110px; float: left; margin-right: 1%"
  136. ></el-input>
  137. <el-button disabled type="primary">自动生成</el-button>
  138. </el-form-item>
  139. </el-col>
  140. <el-col :span="8">
  141. <el-form-item
  142. label="出生日期 : "
  143. class="is-required"
  144. prop="birth"
  145. >
  146. <el-date-picker
  147. v-model="form.birth"
  148. type="date"
  149. disabled
  150. placeholder="选择日期"
  151. :suffix-icon="'el-icon-menu'"
  152. format="yyyy-MM-dd"
  153. value-format="yyyy-MM-dd"
  154. ></el-date-picker>
  155. </el-form-item>
  156. </el-col>
  157. <el-col :span="8" v-if="org_id!=0 && org_id!=10138 && org_id!=10278">
  158. <el-form-item
  159. label="首次肾脏治疗时间 : "
  160. label-width="150px"
  161. class="is-required"
  162. prop="birth"
  163. >
  164. <el-date-picker
  165. v-model="form.firstDialysisDate"
  166. type="date"
  167. disabled
  168. placeholder="选择日期"
  169. :suffix-icon="'el-icon-menu'"
  170. format="yyyy-MM-dd"
  171. value-format="yyyy-MM-dd"
  172. ></el-date-picker>
  173. </el-form-item>
  174. </el-col>
  175. <el-col :span="6" :style="isEdit ? 'width:380px' : ''" v-if="org_id==0||org_id == 10138 || org_id == 10278">
  176. <el-form-item
  177. label="首次进入本院时间:"
  178. prop="firstDialysisDate"
  179. label-width="150px"
  180. >
  181. <el-date-picker
  182. v-model="form.firstDialysisDate"
  183. type="date"
  184. format="yyyy-MM-dd"
  185. value-format="yyyy-MM-dd"
  186. ></el-date-picker>
  187. </el-form-item>
  188. </el-col>
  189. <el-col :span="8">
  190. <el-form-item label="本人电话: " class="is-required">
  191. <el-input
  192. v-model="form.phone"
  193. maxlength="20"
  194. disabled
  195. ></el-input>
  196. </el-form-item>
  197. </el-col>
  198. <el-col :span="8">
  199. <el-form-item label="家属姓名: ">
  200. <el-input
  201. v-model="form.contact_name"
  202. maxlength="20"
  203. disabled
  204. ></el-input>
  205. </el-form-item>
  206. </el-col>
  207. <el-col :span="8">
  208. <el-form-item label="家属电话: ">
  209. <el-input
  210. v-model="form.homeTelephone"
  211. maxlength="20"
  212. disabled
  213. ></el-input>
  214. </el-form-item>
  215. </el-col>
  216. <el-col :span="6">
  217. <el-form-item
  218. label="本院首次透析 : "
  219. prop="is_hospital_first_dialysis"
  220. >
  221. <el-radio-group v-model="form.is_hospital_first_dialysis">
  222. <el-radio
  223. v-for="item in isHospitalFirstDialysisOptions"
  224. :key="item.value"
  225. :label="item.value"
  226. :value="item.value"
  227. disabled
  228. >{{ item.label }}</el-radio
  229. >
  230. </el-radio-group>
  231. </el-form-item>
  232. </el-col>
  233. <el-col :span="6">
  234. <el-form-item
  235. label="系统前透析次数 : "
  236. prop="first_dialysis_hospital"
  237. >
  238. <el-input v-model="form.user_sys_before_count" disabled></el-input>
  239. </el-form-item>
  240. </el-col>
  241. <el-col :span="6">
  242. <el-form-item label="首次诊治日期 : ">
  243. <el-date-picker
  244. v-model="form.first_treatment_date"
  245. type="date"
  246. disabled
  247. format="yyyy-MM-dd"
  248. value-format="yyyy-MM-dd"
  249. ></el-date-picker>
  250. </el-form-item>
  251. </el-col>
  252. <el-col :span="6">
  253. <el-form-item label="上家透析医院 : " prop="first_dialysis_hospital">
  254. <el-input
  255. v-model="form.first_dialysis_hospital"
  256. disabled
  257. ></el-input>
  258. </el-form-item>
  259. </el-col>
  260. <el-col :span="8">
  261. <el-form-item label="透析之前情况 : " prop="predialysis_condition">
  262. <el-checkbox-group v-model="form.predialysis_condition">
  263. <el-checkbox
  264. v-for="item in predialysisConditionOptions"
  265. :label="item.label"
  266. :key="item.value"
  267. :value="item.label"
  268. disabled
  269. >{{ item.label }}</el-checkbox
  270. >
  271. </el-checkbox-group>
  272. </el-form-item>
  273. </el-col>
  274. <el-col :span="8">
  275. <el-form-item label="家庭住址 : " prop="homeAddress">
  276. <el-input v-model="form.homeAddress" disabled style="width: 350px;"></el-input>
  277. </el-form-item>
  278. </el-col>
  279. <el-col :span="8" :style="isEdit ? 'width:280px' : ''">
  280. <el-form-item
  281. label="打印日期:"
  282. label-width="150px"
  283. >
  284. <el-date-picker
  285. disabled
  286. v-model="form.print_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="8">
  294. <el-form-item label="住院(门诊)号 : " prop="admissionNumber">
  295. <el-input v-model="form.admissionNumber" disabled></el-input>
  296. </el-form-item>
  297. </el-col>
  298. <el-col :span="8">
  299. <el-form-item label="工作单位 : " prop="work">
  300. <el-input v-model="form.work" disabled></el-input>
  301. </el-form-item>
  302. </el-col>
  303. <el-col :span="24">
  304. <el-form-item label="病历号 : " prop="record_number">
  305. <el-input
  306. style="width: 200px;"
  307. v-model="form.record_number"
  308. disabled
  309. ></el-input>
  310. </el-form-item>
  311. </el-col>
  312. <el-col :span="24">
  313. <el-form-item label="主管护士 : " prop="record_number">
  314. <el-select v-model="form.nurse" style="width:200px" disabled>
  315. <el-option
  316. v-for="(item,index) in adminUserOptions"
  317. :key="index"
  318. :label="item.name"
  319. :value="item.id"
  320. />
  321. </el-select>
  322. </el-form-item>
  323. </el-col>
  324. <el-col :span="6">
  325. <el-form-item
  326. label="本院前透析频率 : "
  327. prop="pre_hospital_dialysis_frequency"
  328. >
  329. <el-input
  330. v-model="form.pre_hospital_dialysis_frequency"
  331. disabled
  332. ></el-input>
  333. </el-form-item>
  334. </el-col>
  335. <el-col :span="6">
  336. <el-form-item
  337. label="本院前透析次数 : "
  338. prop="pre_hospital_dialysis_times"
  339. >
  340. <el-input
  341. v-model="form.pre_hospital_dialysis_times"
  342. disabled
  343. ></el-input>
  344. </el-form-item>
  345. </el-col>
  346. <el-col :span="6">
  347. <el-form-item
  348. label="本院首次透析 : "
  349. prop="hospital_first_dialysis_date"
  350. >
  351. <el-date-picker
  352. v-model="form.hospital_first_dialysis_date"
  353. type="date"
  354. format="yyyy-MM-dd"
  355. value-format="yyyy-MM-dd"
  356. disabled
  357. ></el-date-picker>
  358. </el-form-item>
  359. </el-col>
  360. <el-col :span="8" style="height: 59px">
  361. <el-form-item
  362. label="患者来源 : "
  363. class="is-required"
  364. prop="source"
  365. >
  366. <el-radio-group v-model="form.source">
  367. <el-radio
  368. v-for="item in sourceOptions"
  369. :key="item.value"
  370. :label="item.value"
  371. :value="item.value"
  372. disabled
  373. >{{ item.label }}</el-radio
  374. >
  375. </el-radio-group>
  376. </el-form-item>
  377. </el-col>
  378. <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  379. <el-form-item
  380. label="患者去向 : "
  381. >
  382. <el-radio-group v-model="form.patient_source">
  383. <el-radio
  384. disabled
  385. v-for="item in patientSourceList"
  386. :key="item.value"
  387. :label="item.value"
  388. :value="item.value"
  389. >{{ item.label }}</el-radio
  390. >
  391. </el-radio-group>
  392. </el-form-item>
  393. </el-col>
  394. <!-- <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  395. <el-form-item
  396. label="流转地: "
  397. >
  398. <el-select v-model="form.patient_address" placeholder="请选择">
  399. <el-option
  400. v-for="item in liuAddresslist"
  401. :key="item.id"
  402. :label="item.name"
  403. :value="item.name">
  404. </el-option>
  405. </el-select>
  406. </el-form-item>
  407. </el-col>
  408. -->
  409. <!-- <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
  410. <el-form-item
  411. label="流转开始时间 : "
  412. >
  413. <el-date-picker
  414. size="small"
  415. v-model="form.patient_start_time"
  416. prefix-icon="el-icon-date"
  417. :editable="false"
  418. style="width: 150px;"
  419. type="date"
  420. placeholder="选择日期时间"
  421. align="right"
  422. format="yyyy-MM-dd"
  423. value-format="yyyy-MM-dd"
  424. @change="startTimeChange"
  425. ></el-date-picker>
  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-date-picker
  433. size="small"
  434. v-model="form.patient_end_time"
  435. prefix-icon="el-icon-date"
  436. :editable="false"
  437. style="width: 150px;"
  438. type="date"
  439. placeholder="选择日期时间"
  440. align="right"
  441. format="yyyy-MM-dd"
  442. value-format="yyyy-MM-dd"
  443. @change="startTimeChange"
  444. ></el-date-picker>
  445. </el-form-item>
  446. </el-col> -->
  447. <!-- <el-col :span="8" style="margin-bottom: 20px;">
  448. <el-form-item
  449. label="备注 : "
  450. prop="sch_remark">
  451. <el-input
  452. disabled
  453. type="textarea"
  454. :rows="3"
  455. v-model="form.sch_remark"
  456. resize="none"
  457. placeholder
  458. ></el-input>
  459. </el-form-item>
  460. </el-col> -->
  461. <el-col :span="8" style="height: 59px">
  462. <el-form-item
  463. label="治疗状态(转归) : "
  464. class="is-required"
  465. prop="lapseto"
  466. >
  467. <el-radio-group v-model="form.lapseto">
  468. <el-radio
  469. v-for="item in lapsetoOptions"
  470. :key="item.value"
  471. :label="item.value"
  472. :value="item.value"
  473. disabled
  474. >{{ item.label }}</el-radio
  475. >
  476. </el-radio-group>
  477. </el-form-item>
  478. </el-col>
  479. <el-col :span="24">
  480. <el-form-item label="传染病 : " required prop="is_infectious">
  481. <el-radio-group v-model="form.is_infectious" disabled>
  482. <el-radio :label="1">阴性</el-radio>
  483. <el-radio :label="2">阳性</el-radio>
  484. </el-radio-group>
  485. <el-checkbox-group
  486. v-model="form.contagions"
  487. v-if="form.is_infectious == '2'"
  488. disabled
  489. >
  490. <el-checkbox
  491. v-for="item in contagionList"
  492. v-if="item.type == 2"
  493. :label="item.id"
  494. :key="item.id"
  495. name="contagions"
  496. :value="item.id"
  497. >{{ item.name }}
  498. </el-checkbox>
  499. </el-checkbox-group>
  500. </el-form-item>
  501. <el-col :span="24">
  502. <el-form-item label="传染病细分:" v-if="form.is_infectious == '2'">
  503. <el-input v-model="form.infectious_remark"></el-input>
  504. </el-form-item>
  505. </el-col>
  506. <el-form-item label="疑难内瘘:">
  507. <el-radio-group v-model="form.troble_shoot" disabled>
  508. <el-radio :label="1">是</el-radio>
  509. <el-radio :label="2">否</el-radio>m
  510. </el-radio-group>
  511. </el-form-item>
  512. <el-form-item label="人员编码: ">
  513. <el-input v-model="form.zb_patient_id"></el-input>
  514. </el-form-item>
  515. </el-col>
  516. <!--<el-col :span="16" >-->
  517. <!--<el-form-item label="检查结果日期 : " >-->
  518. <!--<el-date-picker v-model="form.record_date" type="date" placeholder="选择日期" :suffix-icon="'el-icon-menu'"-->
  519. <!--format="yyyy-MM-dd"-->
  520. <!--style="width: 200px;"-->
  521. <!--value-format="yyyy-MM-dd"></el-date-picker>-->
  522. <!--&lt;!&ndash;<el-button type="primary" @click="recordCheck()">录入检验检查</el-button>&ndash;&gt;-->
  523. <!--</el-form-item>-->
  524. <!--</el-col>-->
  525. <el-col :span="16">
  526. <el-form-item label="检查结果日期 : ">
  527. <!--<el-date-picker v-model="form.record_date" type="date" placeholder="选择日期" :suffix-icon="'el-icon-menu'"-->
  528. <!--format="yyyy-MM-dd"-->
  529. <!--style="width: 200px;"-->
  530. <!--disabled-->
  531. <!--value-format="yyyy-MM-dd" v-if="isEdit"></el-date-picker>-->
  532. <el-date-picker
  533. v-model="form.record_date"
  534. type="date"
  535. placeholder="选择日期"
  536. :suffix-icon="'el-icon-menu'"
  537. format="yyyy-MM-dd"
  538. disabled
  539. style="width: 200px"
  540. value-format="yyyy-MM-dd"
  541. ></el-date-picker>
  542. <el-button type="primary" @click="showInspectDialog()"
  543. >查看检验检查</el-button
  544. >
  545. </el-form-item>
  546. </el-col>
  547. <el-col :span="24">
  548. <el-form-item label="传染病周期提醒: ">
  549. <el-radio-group
  550. v-model="form.remind_cycle"
  551. @change="changeCycle()"
  552. disabled
  553. >
  554. <el-radio :label="1">一月一次</el-radio>
  555. <el-radio :label="2">两月一次</el-radio>
  556. <el-radio :label="3">三月一次</el-radio>
  557. <el-radio :label="4">半年一次</el-radio>
  558. <el-radio :label="5">一年一次</el-radio>
  559. </el-radio-group>
  560. </el-form-item>
  561. </el-col>
  562. <el-col :span="24">
  563. <el-form-item label="诊断 : " prop="diagnose">
  564. <!-- <textarea v-model="form.diagnose" class="textarea" disabled></textarea> -->
  565. <el-input
  566. type="textarea"
  567. :rows="3"
  568. v-model="form.diagnose"
  569. resize="none"
  570. placeholder=""
  571. readonly
  572. ></el-input>
  573. </el-form-item>
  574. </el-col>
  575. <el-col :span="24">
  576. <el-form-item label="诊疗计划 : " prop="diagnose">
  577. <el-input
  578. type="textarea"
  579. :rows="3"
  580. v-model="form.treatment_plan"
  581. resize="none"
  582. placeholder
  583. readonly
  584. ></el-input>
  585. </el-form-item>
  586. </el-col>
  587. <el-col :span="8">
  588. <el-form-item label="民族 : " prop="nation">
  589. <el-input
  590. v-model="form.nation"
  591. maxlength="30"
  592. disabled
  593. ></el-input>
  594. </el-form-item>
  595. </el-col>
  596. <el-col :span="8">
  597. <el-form-item label="籍贯 : " prop="native_place">
  598. <el-input
  599. v-model="form.native_place"
  600. maxlength="30"
  601. disabled
  602. ></el-input>
  603. </el-form-item>
  604. </el-col>
  605. <div v-show="!generic_info_fold">
  606. <el-col :span="8">
  607. <el-form-item label="别名 : " prop="alias">
  608. <el-input v-model="form.alias" disabled></el-input>
  609. </el-form-item>
  610. </el-col>
  611. <el-col :span="8">
  612. <el-form-item label="身高(cm) : " prop="height">
  613. <el-input
  614. maxlength="5"
  615. v-model="form.height"
  616. disabled
  617. ></el-input>
  618. </el-form-item>
  619. </el-col>
  620. <el-col :span="8">
  621. <el-form-item label="婚姻状况 : " prop="maritalStatus">
  622. <el-select
  623. v-model="form.maritalStatus"
  624. placeholder="请选择婚姻状况"
  625. disabled
  626. >
  627. <el-option
  628. v-for="item in maritalOptions"
  629. :key="item.id"
  630. :label="item.name"
  631. :value="item.id"
  632. />
  633. </el-select>
  634. </el-form-item>
  635. </el-col>
  636. <el-col :span="8">
  637. <el-form-item label="子女情况(个) : " prop="children">
  638. <el-input
  639. maxlength="5"
  640. v-model="form.children"
  641. disabled
  642. ></el-input>
  643. </el-form-item>
  644. <!-- <el-form-item label=" " style="float:left;" label-width="30px" >
  645. </el-form-item> -->
  646. </el-col>
  647. <!-- <el-col :span="8">
  648. <el-form-item label="住院(门诊)号 : " prop="admissionNumber">
  649. <el-input v-model="form.admissionNumber" disabled></el-input>
  650. </el-form-item>
  651. </el-col> -->
  652. <el-col :span="8">
  653. <el-form-item label="医保类型 : " prop="reimbursementWayID">
  654. <el-select v-model="form.reimbursementWayID" disabled>
  655. <el-option
  656. v-for="item in wayOptions"
  657. :key="item.id"
  658. :label="item.name"
  659. :value="item.id"
  660. />
  661. </el-select>
  662. </el-form-item>
  663. </el-col>
  664. <el-col :span="8">
  665. <el-form-item label="医保号 : " prop="healthCareNo">
  666. <el-input v-model="form.healthCareNo" disabled></el-input>
  667. </el-form-item>
  668. </el-col>
  669. <el-col :span="8">
  670. <el-form-item label="教育程度 : " prop="educationOptions">
  671. <el-select v-model="form.education" disabled>
  672. <el-option
  673. v-for="item in educationOptions"
  674. :key="item.id"
  675. :label="item.name"
  676. :value="item.id"
  677. />
  678. </el-select>
  679. </el-form-item>
  680. </el-col>
  681. <el-col :span="8">
  682. <el-form-item label="固定电话 : ">
  683. <el-input
  684. v-model="form.tell_phone"
  685. maxlength="20"
  686. disabled
  687. ></el-input>
  688. </el-form-item>
  689. </el-col>
  690. <el-col :span="8">
  691. <el-form-item label="费别 : ">
  692. <el-select v-model="form.expense_kind" disabled>
  693. <el-option
  694. v-for="item in expenseOptions"
  695. :key="item.id"
  696. :label="item.name"
  697. :value="item.id"
  698. />
  699. </el-select>
  700. </el-form-item>
  701. </el-col>
  702. <el-col :span="8">
  703. <el-form-item label="透析龄(月): ">
  704. <el-input v-model="form.dialysis_age" disabled></el-input>
  705. </el-form-item>
  706. </el-col>
  707. <el-col :span="8">
  708. <el-form-item label="亲友电话: " prop="relative_phone">
  709. <el-input
  710. v-model="form.relative_phone"
  711. maxlength="20"
  712. disabled
  713. ></el-input>
  714. </el-form-item>
  715. </el-col>
  716. <el-col :span="8">
  717. <el-form-item label="亲友关系: " prop="relative_relations">
  718. <el-input
  719. v-model="form.relative_relations"
  720. maxlength="20"
  721. disabled
  722. ></el-input>
  723. </el-form-item>
  724. </el-col>
  725. <el-col :span="8">
  726. <el-form-item label="职业 : " prop="profession">
  727. <el-select v-model="form.profession" disabled>
  728. <el-option
  729. v-for="item in professionOptions"
  730. :key="item.id"
  731. :label="item.name"
  732. :value="item.id"
  733. />
  734. </el-select>
  735. </el-form-item>
  736. </el-col>
  737. <el-col :span="8">
  738. <el-form-item label="单位地址 : " prop="unit_address">
  739. <el-input v-model="form.unit_address" disabled></el-input>
  740. </el-form-item>
  741. </el-col>
  742. </div>
  743. <el-col :span="8">
  744. <el-form-item>
  745. <el-button
  746. type="text"
  747. @click="generic_info_fold = !generic_info_fold"
  748. >{{ generic_info_fold ? "更多资料" : "收起"
  749. }}<i class="el-icon--right" :class="generic_fold_icon"></i
  750. ></el-button>
  751. </el-form-item>
  752. </el-col>
  753. </el-row>
  754. </el-col>
  755. <el-col :span="4" align="center">
  756. <img
  757. width="146px"
  758. height="146px"
  759. v-if="form.avatar"
  760. :src="form.avatar"
  761. class="avatar"
  762. />
  763. <el-form-item prop="avatar">
  764. <el-input
  765. v-model="form.avatar"
  766. type="hidden"
  767. placeholder=""
  768. ></el-input>
  769. </el-form-item>
  770. </el-col>
  771. </el-row>
  772. <div class="dataTitle">治疗信息</div>
  773. <div style="display: flex">
  774. <div style="flex: 1 1 9%;">
  775. <el-row :gutter="24">
  776. <el-col :span="24">
  777. <el-form-item label="主诉 : " prop="patient_complains">
  778. <el-input
  779. type="textarea"
  780. :rows="3"
  781. v-model="form.patient_complains"
  782. resize="none"
  783. placeholder=""
  784. readonly
  785. ></el-input>
  786. </el-form-item>
  787. </el-col>
  788. </el-row>
  789. <el-row :gutter="24">
  790. <el-col :span="24">
  791. <el-form-item label="既往史 : " prop="past_history">
  792. <el-input
  793. type="textarea"
  794. :rows="3"
  795. v-model="form.past_history"
  796. resize="none"
  797. placeholder=""
  798. readonly
  799. ></el-input>
  800. </el-form-item>
  801. </el-col>
  802. </el-row>
  803. <el-row :gutter="24">
  804. <el-col :span="24">
  805. <el-form-item label="过敏史 : " prop="past_history">
  806. <el-input
  807. type="textarea"
  808. :rows="3"
  809. v-model="form.allergic_history"
  810. resize="none"
  811. placeholder=""
  812. ></el-input>
  813. </el-form-item>
  814. </el-col>
  815. </el-row>
  816. <el-row :gutter="24">
  817. <el-col :span="24">
  818. <el-form-item label="体格检查">
  819. <el-input
  820. v-model="form.temperature"
  821. style="width: 200px"
  822. disabled
  823. >
  824. <template slot="prepend">体温:</template>
  825. <template slot="append">℃</template>
  826. </el-input>
  827. <el-input v-model="form.pulse" style="width: 220px" disabled>
  828. <template slot="prepend">脉搏: </template>
  829. <template slot="append">次/分</template>
  830. </el-input>
  831. <el-input
  832. v-model="form.respiratory"
  833. style="width: 220px"
  834. disabled
  835. >
  836. <template slot="prepend">呼吸: </template>
  837. <template slot="append">次/分</template>
  838. </el-input>
  839. </el-form-item>
  840. </el-col>
  841. </el-row>
  842. <el-row :gutter="24">
  843. <el-col>
  844. <el-form-item>
  845. <el-input v-model="form.sbp" style="width: 240px" disabled>
  846. <template slot="prepend">收缩压:</template>
  847. <template slot="append">mmHg</template>
  848. </el-input>
  849. <el-input v-model="form.dbp" style="width: 240px" disabled>
  850. <template slot="prepend">舒张压:</template>
  851. <template slot="append">mmHg</template>
  852. </el-input>
  853. </el-form-item>
  854. </el-col>
  855. </el-row>
  856. </div>
  857. <div style="flex: 1;" class="now_his">
  858. <el-row :gutter="24" style="height:100%;">
  859. <el-col :span="24" style="height:100%;">
  860. <el-form-item label="现病史 : " prop="present_history" style="height:100%;">
  861. <el-input
  862. style="height:100%;"
  863. type="textarea"
  864. :rows="3"
  865. v-model="form.present_history"
  866. resize="none"
  867. placeholder=""
  868. readonly
  869. ></el-input>
  870. </el-form-item>
  871. </el-col>
  872. </el-row>
  873. </div>
  874. </div>
  875. <el-row :gutter="24">
  876. <el-col :span="24">
  877. <el-form-item label="" prop="remark">
  878. <!-- <textarea v-model="form.remark" class="textarea" disabled></textarea> -->
  879. <el-input
  880. type="textarea"
  881. :rows="3"
  882. v-model="form.remark"
  883. resize="none"
  884. placeholder=""
  885. readonly
  886. ></el-input>
  887. </el-form-item>
  888. </el-col>
  889. <el-col :span="8">
  890. <el-form-item label="" prop="sch_remark">
  891. <!-- <textarea v-model="form.remark" class="textarea" disabled></textarea> -->
  892. <el-input
  893. type="textarea"
  894. :rows="3"
  895. v-model="form.sch_remark"
  896. resize="none"
  897. placeholder=""
  898. readonly
  899. ></el-input>
  900. </el-form-item>
  901. </el-col>
  902. <!-- <el-col :span="24">
  903. <el-form-item label="慢性病 : " prop="diseases">
  904. <el-checkbox-group v-model="form.diseases">
  905. <el-checkbox
  906. v-for="item in checkDisease"
  907. :label="item.id"
  908. :key="item.id"
  909. :value="item.id"
  910. disabled
  911. >{{ item.name }}</el-checkbox
  912. >
  913. </el-checkbox-group>
  914. </el-form-item>
  915. </el-col> -->
  916. </el-row>
  917. <!-- <el-col :span="24">
  918. <el-form-item>
  919. <el-button type="text" @click="treat_info_fold = !treat_info_fold"
  920. >{{ treat_info_fold ? "更多治疗信息" : "收起"
  921. }}<i class="el-icon--right" :class="treat_fold_icon"></i
  922. ></el-button>
  923. </el-form-item>
  924. </el-col> -->
  925. <el-col :span="24">
  926. <el-form-item label="登记人员 : ">
  927. <span>{{ form.registrars }} </span>
  928. </el-form-item>
  929. </el-col>
  930. <el-col :span="6">
  931. <el-form-item label="医生 : ">
  932. <el-select v-model="form.doctor" disabled>
  933. <el-option
  934. v-for="item in adminUserOptions"
  935. :key="item.id"
  936. :label="item.name"
  937. :value="item.id"
  938. />
  939. </el-select>
  940. </el-form-item>
  941. </el-col>
  942. </el-form>
  943. <!-- 打印预览 -->
  944. <div style="display: none">
  945. <div id="print-info-box" v-if="org_id !=10206&&org_id !=0">
  946. <div class="print_main_content" style="margin-top: 70px;">
  947. <div class="order_title" v-if="org_id!=10210">{{ orgname }} 血液透析门诊病历</div>
  948. <div class="order_title" v-if="org_id==10210">{{ orgname }} 血液透析住院病历</div>
  949. <div >
  950. <table >
  951. <!-- 用 thead 规定好宽度 -->
  952. <!-- <thead>
  953. <tr v-show="false">
  954. <td width="7%"></td>
  955. <td width="10%"></td>
  956. <td width="5%"></td>
  957. <td width="10%"></td>
  958. <td width="5%"></td>
  959. <td width="10%"></td>
  960. <td width="5%"></td>
  961. <td width="30%"></td>
  962. </tr>
  963. </thead> -->
  964. <tbody>
  965. <tr>
  966. <!-- -->
  967. <td style="width:8%;padding: 3px 0px;font-size: 17px;font-weight: 500;">
  968. 姓名
  969. <!-- <div class="td_proj_title">姓名</div> -->
  970. </td>
  971. <td style="padding: 3px 0px;font-size: 17px;">
  972. {{ patientPrint.name }}
  973. <!-- <div class="td_proj_content">{{ patientPrint.name }}</div> -->
  974. </td>
  975. <td style="padding: 3px 0px;font-size: 17px;">
  976. 性别
  977. <!-- <div class="td_proj_title">性别</div> -->
  978. </td>
  979. <td style="padding: 3px 0px;font-size: 17px;">
  980. {{ patientPrint.gender }}
  981. <!-- <div class="td_proj_content">{{ patientPrint.gender }}</div> -->
  982. </td>
  983. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  984. 年龄
  985. <!-- <div class="td_proj_title">年龄</div> -->
  986. </td>
  987. <td style="padding: 3px 0px;font-size: 17px;">
  988. {{ patientPrint.age }}岁
  989. <!-- <div class="td_proj_content">{{ patientPrint.age }}岁</div> -->
  990. </td>
  991. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  992. 籍贯
  993. <!-- <div class="td_proj_title">籍贯</div> -->
  994. </td>
  995. <td style="padding: 3px 0px;font-size: 17px;">
  996. {{ patientPrint.native_place }}
  997. <!-- <div class="td_proj_content td_align_left">
  998. {{ patientPrint.native_place }}
  999. </div> -->
  1000. </td>
  1001. </tr>
  1002. <tr>
  1003. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1004. 职业
  1005. <!-- <div class="td_proj_title">职业</div> -->
  1006. </td>
  1007. <td style="padding: 3px 0px;font-size: 17px;">
  1008. {{ patientPrint.profession }}
  1009. <!-- <div class="td_proj_content">
  1010. {{ patientPrint.profession }}
  1011. </div> -->
  1012. </td>
  1013. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1014. 婚姻
  1015. <!-- <div class="td_proj_title">婚姻</div> -->
  1016. </td>
  1017. <td style="padding: 3px 0px;font-size: 17px;">
  1018. {{ patientPrint.marital_status }}
  1019. <!-- <div class="td_proj_content">
  1020. {{ patientPrint.marital_status }}
  1021. </div> -->
  1022. </td>
  1023. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1024. 透析号
  1025. <!-- <div class="td_proj_title">透析号</div> -->
  1026. </td>
  1027. <td style="padding: 3px 0px;font-size: 17px;">
  1028. {{ patientPrint.dialysis_no }}
  1029. <!-- <div class="td_proj_content">
  1030. {{ patientPrint.dialysis_no }}
  1031. </div> -->
  1032. </td>
  1033. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1034. 身份证号
  1035. <!-- <div class="td_proj_title">身份证号</div> -->
  1036. </td>
  1037. <td style="padding: 3px 0px;font-size: 17px;">
  1038. {{ patientPrint.id_card_no }}
  1039. <!-- <div class="td_proj_content td_align_left">
  1040. {{ patientPrint.id_card_no }}
  1041. </div> -->
  1042. </td>
  1043. </tr>
  1044. <tr>
  1045. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1046. 民族
  1047. <!-- <div class="td_proj_title">民族</div> valign="top" -->
  1048. </td>
  1049. <td style="padding: 3px 0px;font-size: 17px;">
  1050. {{ patientPrint.nation }}
  1051. <!-- <div class="td_proj_content">{{ patientPrint.nation }}</div> -->
  1052. </td>
  1053. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1054. 电话
  1055. <!-- <div class="td_proj_title">电话</div> -->
  1056. </td>
  1057. <td colspan="3" style="padding: 3px 0px;font-size: 17px;">
  1058. {{ patientPrint.phone }}
  1059. <!-- <div class="td_proj_content td_align_left">
  1060. {{ patientPrint.phone }}
  1061. </div> -->
  1062. </td>
  1063. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1064. 家属电话
  1065. <!-- <div class="td_proj_title">家属电话</div> -->
  1066. </td>
  1067. <td style="padding: 3px 0px;font-size: 17px;">
  1068. {{ patientPrint.home_telephone }}
  1069. <!-- <div class="td_proj_content td_align_left">
  1070. {{ patientPrint.home_telephone }}
  1071. </div> -->
  1072. </td>
  1073. </tr>
  1074. <tr>
  1075. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">地址</td>
  1076. <td colspan="7" style="text-align: left; padding:0px 5px;font-size: 17px;">
  1077. <!-- class="td_proj_content td_align_left" -->
  1078. <!-- <div > -->
  1079. {{ patientPrint.home_address }}
  1080. <!-- </div> -->
  1081. </td>
  1082. </tr>
  1083. <tr>
  1084. <td style="padding: 3px 0px;font-size: 17px; font-weight: 500;">
  1085. 主诉
  1086. <!-- <div class="td_proj_title">主诉</div> -->
  1087. </td>
  1088. <!-- class="td_proj_content td_align_left" -->
  1089. <td colspan="7" style="text-align: left; padding:0px 5px ;font-size: 17px;">
  1090. {{ patientPrint.patient_complains }}
  1091. <!-- <div style="padding: 0px 0px;"
  1092. v-html="patientPrint.patient_complains"
  1093. ></div> -->
  1094. </td>
  1095. </tr>
  1096. <tr >
  1097. <td>
  1098. <div class="td_proj_title">现<br />病<br />史</div>
  1099. </td>
  1100. <td colspan="7">
  1101. <!-- <div class="td_proj_content td_align_left">{{patientPrint.present_history}}</div> -->
  1102. <div
  1103. class="td_proj_content td_align_left"
  1104. v-html="patientPrint.present_history"
  1105. ></div>
  1106. </td>
  1107. </tr>
  1108. <tr>
  1109. <td>
  1110. <div class="td_proj_title">既<br />往<br />史</div>
  1111. </td>
  1112. <td colspan="7">
  1113. <div class="td_proj_content td_align_left">
  1114. {{ patientPrint.past_history }}
  1115. </div>
  1116. <!-- v-html="patientPrint.past_history" -->
  1117. </td>
  1118. </tr>
  1119. <tr>
  1120. <td>
  1121. <div class="td_proj_title">过敏史</div>
  1122. <!-- <div class="td_proj_title" v-if="org_id !=10278 && org_id!=10138 && org_id!=0">传<br />染<br />病</div>
  1123. <div class="td_proj_title" v-if="org_id==10138 || org_id == 10278 || org_id == 0">过<br />敏<br />史</div> -->
  1124. </td>
  1125. <td colspan="7">
  1126. <div class="td_proj_content td_align_left">
  1127. {{ patientPrint.allergic_history }}
  1128. </div>
  1129. </td>
  1130. </tr>
  1131. <tr>
  1132. <td colspan="8"><div class="td_proj_title">体格检查</div></td>
  1133. </tr>
  1134. <tr>
  1135. <td colspan="8">
  1136. <div class="td_proj_title">
  1137. T
  1138. {{
  1139. patientPrint.temperature
  1140. }}℃&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; P
  1141. {{
  1142. patientPrint.pulse
  1143. }}次/分&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; R
  1144. {{
  1145. patientPrint.respiratory
  1146. }}次/分&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; BP
  1147. {{ patientPrint.sbp }}/{{ patientPrint.dbp }} mmHg
  1148. </div>
  1149. </td>
  1150. </tr>
  1151. <tr>
  1152. <td colspan="8">
  1153. <div
  1154. class="td_proj_content td_align_left"
  1155. v-html="patientPrint.remark"
  1156. ></div>
  1157. </td>
  1158. </tr>
  1159. <tr>
  1160. <td>
  1161. <div class="td_proj_title">诊<br />断</div>
  1162. </td>
  1163. <td colspan="7">
  1164. <div
  1165. class="td_proj_content td_align_left"
  1166. v-html="patientPrint.diagnose"
  1167. ></div>
  1168. </td>
  1169. </tr>
  1170. <tr>
  1171. <td>
  1172. <div class="td_proj_title">诊<br />疗<br />计<br />划</div>
  1173. </td>
  1174. <td colspan="7">
  1175. <div
  1176. class="td_proj_content td_align_left"
  1177. v-html="patientPrint.treatment_plan"
  1178. ></div>
  1179. </td>
  1180. </tr>
  1181. </tbody>
  1182. </table>
  1183. <div class="print_footnote_panel">
  1184. <div class="proj">
  1185. <span class="proj_title">日期:</span>
  1186. <!-- <span v-if="org_id == 3907 || org_id == 9671|| org_id == 9675 || org_id == 10394 || org_id ==10612 || org_id == 0 || org_id ==10617">
  1187. {{getTime(patientPrint.created_time)}}</span>
  1188. <span v-else>{{ printDate }}</span> -->
  1189. <span v-if="patientPrint.print_date>0">{{getTime(patientPrint.print_date)}}</span>
  1190. <span v-if="patientPrint.print_date<=0">{{getTime(patientPrint.created_time)}}</span>
  1191. </div>
  1192. <div class="proj">
  1193. <span class="proj_title">医生签名:
  1194. <span v-if="patientPrint!=undefined&&getDcotorName(patientPrint.doctor) == ''">{{getDcotorNameOne(patientPrint.doctor)}}</span>
  1195. <span v-else>
  1196. <img style="height:30px;margin-top:20px" :src="getDcotorName(patientPrint.doctor)" alt="" srcset="">
  1197. </span>
  1198. </span>
  1199. </div>
  1200. </div>
  1201. </div>
  1202. </div>
  1203. </div>
  1204. <div id="print-info-box" v-else>
  1205. <div class="print_main_content" style="margin-top: 70px;">
  1206. <div class="order_title">{{ orgname }} 血液净化患者首次门诊病历</div>
  1207. <div >
  1208. <table >
  1209. <tbody>
  1210. <tr>
  1211. <td style="width:8%;padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1212. 姓名
  1213. </td>
  1214. <td style="padding: 3px 0px;font-size: 17px;">
  1215. {{ patientPrint.name }}
  1216. </td>
  1217. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1218. 性别
  1219. </td>
  1220. <td style="padding: 3px 0px;font-size: 17px;">
  1221. {{ patientPrint.gender }}
  1222. </td>
  1223. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1224. 年龄
  1225. </td>
  1226. <td style="padding: 3px 0px;font-size: 17px;">
  1227. {{ patientPrint.age }}岁
  1228. </td>
  1229. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1230. 报销方式
  1231. </td>
  1232. <td style="padding: 3px 0px;font-size: 17px;">
  1233. {{patientPrint.reimbursement_way_id}}
  1234. </td>
  1235. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1236. 透析号
  1237. </td>
  1238. <td style="padding: 3px 0px;font-size: 17px;">
  1239. {{patientPrint.dialysis_no}}
  1240. </td>
  1241. <!-- <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1242. 籍贯
  1243. </td>
  1244. <td style="padding: 3px 0px;font-size: 17px;">
  1245. {{ patientPrint.native_place }}
  1246. </td> -->
  1247. </tr>
  1248. <tr>
  1249. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1250. 电话
  1251. </td>
  1252. <td colspan="2" style="padding: 3px 0px;font-size: 17px;">
  1253. {{ patientPrint.phone }}
  1254. </td>
  1255. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1256. 民族
  1257. </td>
  1258. <td colspan="2" style="padding: 3px 0px;font-size: 17px;">
  1259. {{ patientPrint.nation }}
  1260. </td>
  1261. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1262. 身份证号
  1263. </td>
  1264. <td colspan="3" style="padding: 3px 0px;font-size: 17px;">
  1265. {{ patientPrint.id_card_no }}
  1266. </td>
  1267. </tr>
  1268. <tr>
  1269. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1270. 联系人
  1271. </td>
  1272. <td colspan="2" style="padding: 3px 0px;font-size: 17px;">
  1273. {{ patientPrint.contact_name }}
  1274. </td>
  1275. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1276. 电话
  1277. </td>
  1278. <td colspan="2" style="padding: 3px 0px;font-size: 17px;">
  1279. {{ patientPrint.home_telephone }}
  1280. </td>
  1281. <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1282. 联系地址
  1283. </td>
  1284. <td colspan="3" style="padding: 3px 0px;font-size: 17px;">
  1285. {{ patientPrint.home_address }}
  1286. </td>
  1287. </tr>
  1288. <tr>
  1289. <td colspan="2" style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1290. 首次透析时间
  1291. </td>
  1292. <td colspan="3" style="padding: 3px 0px;font-size: 17px;">
  1293. {{ patientPrint.first_dialysis_date }}
  1294. </td>
  1295. <td colspan="2" style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
  1296. 血管通路
  1297. </td>
  1298. <td colspan="3" style="padding: 3px 0px;font-size: 17px;">
  1299. </td>
  1300. </tr>
  1301. <tr>
  1302. <td style="padding: 3px 0px;font-size: 17px; font-weight: 500;">
  1303. 主诉
  1304. </td>
  1305. <td colspan="9" style="text-align: left; padding:0px 5px ;font-size: 17px;">
  1306. {{ patientPrint.patient_complains }}
  1307. </td>
  1308. </tr>
  1309. <tr>
  1310. <td>
  1311. <div class="td_proj_title">现<br />病<br />史</div>
  1312. </td>
  1313. <td colspan="9">
  1314. <div
  1315. class="td_proj_content td_align_left"
  1316. v-html="patientPrint.present_history"
  1317. ></div>
  1318. </td>
  1319. </tr>
  1320. <tr>
  1321. <td>
  1322. <div class="td_proj_title">既<br />往<br />史</div>
  1323. </td>
  1324. <td colspan="9">
  1325. <div class="td_proj_content td_align_left">
  1326. {{ patientPrint.past_history }}
  1327. </div>
  1328. </td>
  1329. </tr>
  1330. <tr>
  1331. <td>
  1332. <div class="td_proj_title">过敏史</div>
  1333. </td>
  1334. <td colspan="5">
  1335. <div class="td_proj_content td_align_left">
  1336. {{ patientPrint.allergic_history }}
  1337. </div>
  1338. </td>
  1339. <td>
  1340. <div class="td_proj_title">家族史</div>
  1341. </td>
  1342. <td colspan="3">
  1343. <div class="td_proj_content td_align_left">
  1344. </div>
  1345. </td>
  1346. </tr>
  1347. <tr>
  1348. <td colspan="10"><div class="td_proj_title">体格检查</div></td>
  1349. </tr>
  1350. <tr>
  1351. <td colspan="10">
  1352. <div class="td_proj_title">
  1353. T
  1354. {{
  1355. patientPrint.temperature
  1356. }}℃&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; P
  1357. {{
  1358. patientPrint.pulse
  1359. }}次/分&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; R
  1360. {{
  1361. patientPrint.respiratory
  1362. }}次/分&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; BP
  1363. {{ patientPrint.sbp }}/{{ patientPrint.dbp }} mmHg
  1364. </div>
  1365. </td>
  1366. </tr>
  1367. <tr>
  1368. <td colspan="10">
  1369. <div
  1370. class="td_proj_content td_align_left"
  1371. v-html="patientPrint.remark"
  1372. ></div>
  1373. </td>
  1374. </tr>
  1375. <tr>
  1376. <td>
  1377. <div class="td_proj_title">辅助检查</div>
  1378. </td>
  1379. <td colspan="9">
  1380. <div
  1381. class="td_proj_content td_align_left"
  1382. ></div>
  1383. </td>
  1384. </tr>
  1385. <tr>
  1386. <td>
  1387. <div class="td_proj_title">诊<br />断</div>
  1388. </td>
  1389. <td colspan="9">
  1390. <div
  1391. class="td_proj_content td_align_left"
  1392. v-html="patientPrint.diagnose"
  1393. ></div>
  1394. </td>
  1395. </tr>
  1396. <tr>
  1397. <td>
  1398. <div class="td_proj_title">诊<br />疗<br />计<br />划</div>
  1399. </td>
  1400. <td colspan="9">
  1401. <div
  1402. class="td_proj_content td_align_left"
  1403. v-html="patientPrint.treatment_plan"
  1404. ></div>
  1405. </td>
  1406. </tr>
  1407. </tbody>
  1408. </table>
  1409. <div class="print_footnote_panel">
  1410. <div class="proj">
  1411. <span class="proj_title">日期:</span>
  1412. <!-- <span v-if="org_id == 3907 || org_id == 9671|| org_id == 9675 || org_id == 10394 || org_id ==10612 || org_id == 0 || org_id ==10617">
  1413. {{getTime(patientPrint.created_time)}}</span>
  1414. <span v-else>{{ printDate }}</span> -->
  1415. <span v-if="patientPrint.print_date>0">{{getTime(patientPrint.print_date)}}</span>
  1416. <span v-if="patientPrint.print_date<=0">{{getTime(patientPrint.created_time)}}</span>
  1417. </div>
  1418. <div class="proj">
  1419. <span class="proj_title">医生签名:
  1420. <span v-if="patientPrint!=undefined&&getDcotorName(patientPrint.doctor) == ''">{{getDcotorNameOne(patientPrint.doctor)}}</span>
  1421. <span v-else>
  1422. <img style="height:30px;margin-top:20px" :src="getDcotorName(patientPrint.doctor)" alt="" srcset="">
  1423. </span>
  1424. </span>
  1425. </div>
  1426. </div>
  1427. </div>
  1428. </div>
  1429. </div>
  1430. </div>
  1431. <div hidden="hidden">
  1432. <div id="print-card-info">
  1433. <div
  1434. class="order_title"
  1435. align="center"
  1436. style="margin-bottom: 20px; font-size: 35px"
  1437. v-if="org_id != 10223"
  1438. >
  1439. 签到卡
  1440. </div>
  1441. <div
  1442. class="order_title"
  1443. align="center"
  1444. style="margin-bottom: 20px; font-size: 25px"
  1445. v-if="org_id == 10223"
  1446. >
  1447. 三优血液透析中心
  1448. </div>
  1449. <div align="center" style="margin-bottom: 4px; font-size: 25px">
  1450. 姓名:<span>&nbsp;&nbsp;{{ patientPrint.name }}</span
  1451. ><br />
  1452. </div>
  1453. <div align="center" style="margin-bottom: 20px; font-size: 25px">
  1454. 透析号:<span>&nbsp;&nbsp;{{ patientPrint.dialysis_no }}</span>
  1455. </div>
  1456. <div>
  1457. <div id="qrcode" align="center"></div>
  1458. </div>
  1459. </div>
  1460. </div>
  1461. </div>
  1462. </template>
  1463. <script>
  1464. import { getDataConfig } from "@/utils/data";
  1465. import { getToken } from "@/api/qiniu";
  1466. // import print from "print-js";
  1467. import {
  1468. getFileExtension,
  1469. isCardNo,
  1470. jsGetAge,
  1471. isPositiveInteger,
  1472. dialysisAge,
  1473. uParseTime,
  1474. } from "@/utils/tools";
  1475. import {
  1476. generateDialysisNo,
  1477. createPatient,
  1478. editPatient,
  1479. fetchPatient,
  1480. } from "@/api/patient";
  1481. import { fetchAllDoctorAndNurse, fetchAllAdminUsers } from "@/api/doctor";
  1482. import { getZones } from "@/api/device/device";
  1483. import print from "print-js";
  1484. import QRCode from "qrcodejs2";
  1485. import { Base64 } from "js-base64";
  1486. import { parse } from "path";
  1487. const defaultForm = {
  1488. avatar: "",
  1489. patientType: "",
  1490. dialysisNo: "",
  1491. admissionNumber: "",
  1492. source: "",
  1493. lapseto: "",
  1494. partition: "",
  1495. bed: "",
  1496. name: "",
  1497. gender: "",
  1498. nation: "",
  1499. native_place: "",
  1500. maritalStatus: "",
  1501. idCardNo: "",
  1502. birth: "",
  1503. age: "",
  1504. reimbursementWayID: "",
  1505. healthCareNo: "",
  1506. healthCareDueDate: "",
  1507. height: "",
  1508. blood: "",
  1509. rh: "",
  1510. healthCareDueAlertDate: "",
  1511. education: "",
  1512. profession: "",
  1513. phone: "",
  1514. homeTelephone: "",
  1515. homeAddress: "",
  1516. work: "",
  1517. receivingDate: "",
  1518. firstDialysisDate: "",
  1519. dialysisAge: "",
  1520. induction: "",
  1521. initial: "",
  1522. dialysisTotal: "",
  1523. contagions: [],
  1524. doctor: "",
  1525. nurse: "",
  1526. assessment: "",
  1527. diseases: [],
  1528. diagnose: "",
  1529. registrars: "",
  1530. patient_complains: "",
  1531. present_history: "",
  1532. past_history: "",
  1533. temperature: "",
  1534. pulse: "",
  1535. respiratory: "",
  1536. sbp: "",
  1537. dbp: "",
  1538. record_date: "",
  1539. response_result: "",
  1540. is_infectious: "",
  1541. formItem: [],
  1542. tell_phone: "",
  1543. first_treatment_date: "",
  1544. dialysis_age: "",
  1545. expense_kind: "",
  1546. contact_name: "",
  1547. sch_remark: "",
  1548. org_id: 0,
  1549. troble_shoot: "",
  1550. zb_patient_id: "",
  1551. treatment_plan: "",
  1552. doctor:"",
  1553. record_number:"",
  1554. patient_source:"",
  1555. patient_start_time:"",
  1556. patient_end_time:"",
  1557. patient_address:"",
  1558. infectious_remark:"",
  1559. allergic_history:"",
  1560. print_date:"",
  1561. };
  1562. export default {
  1563. name: "patientDetail",
  1564. components: {},
  1565. data() {
  1566. return {
  1567. expenseOptions: [
  1568. { id: 1, name: "基本医保" },
  1569. { id: 2, name: "新农合" },
  1570. { id: 3, name: "自费医疗" },
  1571. { id: 4, name: "公费医疗" },
  1572. { id: 5, name: "商业保险" },
  1573. { id: 6, name: "军队医疗" },
  1574. { id: 7, name: "其他" },
  1575. ],
  1576. patientSourceList:[
  1577. {value:1,label:"门诊"},
  1578. {value:2,label:"住院"},
  1579. ],
  1580. generic_info_fold: true,
  1581. treat_info_fold: true,
  1582. dialogFormVisible: false,
  1583. orgname: "",
  1584. adminusername: "",
  1585. form: Object.assign({}, defaultForm),
  1586. formSubmit: true,
  1587. submitMethod: "",
  1588. uploadData: { token: "", key: "" },
  1589. dialogImageUrl: "",
  1590. qiniuDomain: "https://images.shengws.com/",
  1591. dialogVisible: false,
  1592. typeOptions: null,
  1593. styleOptions: null,
  1594. sourceOptions: [
  1595. { value: 1, label: "门诊" },
  1596. { value: 2, label: "住院" },
  1597. { value: 3, label: "门特" },
  1598. ],
  1599. lapsetoOptions: [
  1600. { value: 1, label: "留治" },
  1601. { value: 2, label: "转出" },
  1602. ],
  1603. partitionOptions: [],
  1604. sexOptions: [
  1605. { value: 1, label: "男" },
  1606. { value: 2, label: "女" },
  1607. ],
  1608. isHospitalFirstDialysisOptions: [
  1609. { value: 1, label: "是" },
  1610. { value: 2, label: "否" },
  1611. ],
  1612. predialysisConditionOptions: [
  1613. { value: 1, label: "腹膜透析" },
  1614. { value: 2, label: "肾移植" },
  1615. ],
  1616. maritalOptions: null,
  1617. wayOptions: null,
  1618. educationOptions: null,
  1619. professionOptions: null,
  1620. inductionOptions: null,
  1621. doctorOptions: null,
  1622. nurseOptions: null,
  1623. adminUserOptions: [],
  1624. infections: [],
  1625. rhOptions: null,
  1626. checkDisease: null,
  1627. contagionList: null,
  1628. loading: null,
  1629. patientID: 0,
  1630. patientPrint: {},
  1631. print_time: "",
  1632. printDate: "",
  1633. rules: {
  1634. contagions: [{ type: "array", required: false, trigger: "change" }],
  1635. avatar: [{ required: true, message: "请上传头像", trigger: "blur" }],
  1636. patientType: [
  1637. { required: true, message: "请选择患者类型", trigger: "blur" },
  1638. ],
  1639. dialysisNo: [
  1640. { required: true, message: "请填写透析号", trigger: "blur" },
  1641. ],
  1642. admissionNumber: [
  1643. { required: true, message: "请填写住院(门诊)号", trigger: "blur" },
  1644. ],
  1645. source: [
  1646. { required: true, message: "请选择患者来源", trigger: "blur" },
  1647. ],
  1648. lapseto: [
  1649. { required: true, message: "请选择治疗状态", trigger: "blur" },
  1650. ],
  1651. name: [{ required: true, message: "请填写姓名", trigger: "blur" }],
  1652. gender: [{ required: true, message: "请选择性别", trigger: "blur" }],
  1653. idCardNo: [
  1654. { required: true, message: "请填写身份证号", trigger: "blur" },
  1655. ],
  1656. birth: [{ required: true, message: "请填写生日", trigger: "blur" }],
  1657. },
  1658. shootList: [
  1659. { id: 1, name: "是" },
  1660. { id: 2, name: "否" },
  1661. ],
  1662. operators:[],
  1663. liuAddresslist:[],
  1664. };
  1665. },
  1666. computed: {
  1667. generic_fold_icon: function () {
  1668. return this.generic_info_fold ? "el-icon-arrow-down" : "el-icon-arrow-up";
  1669. },
  1670. treat_fold_icon: function () {
  1671. return this.treat_info_fold ? "el-icon-arrow-down" : "el-icon-arrow-up";
  1672. },
  1673. },
  1674. created() {
  1675. this.liuAddresslist = getDataConfig('hemodialysis', 'liu_address')
  1676. console.log("liuAddresslist",this.liuAddresslist)
  1677. this.org_id = this.$store.getters.xt_user.org.id;
  1678. this.form.doctor = this.$store.getters.xt_user.user.id
  1679. console.log("owowow",this.$store.getters.xt_user.user.id)
  1680. this.styleOptions = this.$store.getters.patient_types;
  1681. // this.partitionOptions = this.$store.getters.partitions;
  1682. this.maritalOptions = getDataConfig("patient", "marital_options");
  1683. this.wayOptions = getDataConfig("patient", "reimbursement_ways");
  1684. this.typeOptions = this.$store.getters.blood_types;
  1685. this.rhOptions = this.$store.getters.rh;
  1686. this.educationOptions = getDataConfig("patient", "education_types");
  1687. this.professionOptions = getDataConfig("patient", "profession_options");
  1688. var obj ={id:11,name:"退休"}
  1689. var objOne = {id:12,name:"灵活就业人员"}
  1690. this.professionOptions.push(obj)
  1691. this.professionOptions.push(objOne)
  1692. this.inductionOptions = this.$store.getters.induction_options;
  1693. this.contagionList = this.$store.getters.contagions;
  1694. this.checkDisease = this.$store.getters.disease;
  1695. var xtuser = this.$store.getters.xt_user;
  1696. this.orgname = xtuser.org.org_name;
  1697. this.adminusername = xtuser.user.user_name;
  1698. this.fetchAllAdminUsers();
  1699. const id = this.$route.params && this.$route.params.id;
  1700. this.patientID = parseInt(id);
  1701. if (isNaN(this.patientID) || this.patientID <= 0) {
  1702. console.log("patient detail not had id");
  1703. this.$notify.error({
  1704. title: "错误",
  1705. message: "无效的id",
  1706. });
  1707. this.$router.push("/patients/patients");
  1708. }
  1709. this.fetchPatient(id);
  1710. this.getZones();
  1711. var ptime = Math.round(new Date().getTime() / 1000);
  1712. // this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}');
  1713. var data = new Date();
  1714. var month =
  1715. data.getMonth() < 9 ? "0" + (data.getMonth() + 1) : data.getMonth() + 1;
  1716. var date = data.getDate() <= 9 ? "0" + data.getDate() : data.getDate();
  1717. this.printDate = data.getFullYear() + "-" + month + "-" + date;
  1718. },
  1719. methods: {
  1720. getTime(val) {
  1721. return uParseTime(val, "{y}年{m}月{d}日");
  1722. },
  1723. printThisInfo() {
  1724. var ptime = Math.round(new Date().getTime() / 1000);
  1725. this.print_time = uParseTime(ptime, "{y}年{m}月{d}日");
  1726. const style =
  1727. "@page {margin-top:10px;}@media print { .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .print_main_content .order_title { text-align: center; font-size: 23px; line-height: 50px; font-weight: 500; } .print_main_content table { width: 100%; border-collapse: collapse; padding: 2px; } .print_main_content table tbody tr{page-break-inside:avoid;} .print_main_content table tbody tr td { border: 1px solid; text-align: center; padding: 10px 8px; } .td_proj_title { font-size: 18px; line-height: 25px; font-weight: 500; } .td_proj_content { font-size: 18px; line-height: 25px; } .td_align_left { text-align: left; } .print_footnote_panel { font-size: 17px; line-height: 40px; } .print_footnote_panel .proj { display: inline-block; width: 49%; } .print_footnote_panel .proj .proj_title { font-weight: 500;} }";
  1728. setTimeout(() => {
  1729. printJS({
  1730. printable: "print-info-box",
  1731. type: "html",
  1732. style: style,
  1733. scanStyles: false,
  1734. });
  1735. }, 1);
  1736. },
  1737. getZones() {
  1738. getZones().then((response) => {
  1739. if (response.data.state === 1) {
  1740. this.partitionOptions = response.data.data.zones;
  1741. }
  1742. });
  1743. },
  1744. fetchPatient(id) {
  1745. fetchPatient(id)
  1746. .then((response) => {
  1747. console.log(response.data.data);
  1748. if (response.data.state === 1) {
  1749. this.$emit("tran-patient-info", response.data.data.patient);
  1750. var patietInfo = response.data.data.patient;
  1751. console.log("触发了吗无222222", patietInfo);
  1752. this.form.avatar = patietInfo.avatar;
  1753. this.form.name = patietInfo.name;
  1754. this.form.alias = patietInfo.alias;
  1755. this.form.lapseto = patietInfo.lapseto;
  1756. this.form.idCardNo = patietInfo.id_card_no;
  1757. this.form.dialysisNo = patietInfo.dialysis_no;
  1758. this.form.gender = patietInfo.gender;
  1759. this.form.is_infectious = patietInfo.is_infectious;
  1760. this.form.troble_shoot = patietInfo.troble_shoot;
  1761. this.form.zb_patient_id = patietInfo.zb_patient_id;
  1762. // this.form.record_date = patietInfo.is_infectious
  1763. this.form.response_result = patietInfo.response_result;
  1764. this.form.remind_cycle = patietInfo.remind_cycle;
  1765. this.form.treatment_plan = patietInfo.treatment_plan;
  1766. this.form.doctor = patietInfo.doctor
  1767. if(this.form.doctor == 0){
  1768. this.form.doctor = ""
  1769. }
  1770. // if (patietInfo.is_infectious == 1) {
  1771. // this.form.remind_cycle = 0;
  1772. // }
  1773. // console.log("222222", this.form.remind_cycle);
  1774. this.form.user_sys_before_count = patietInfo.user_sys_before_count;
  1775. this.infections = response.data.data.infections;
  1776. this.form.formItem = this.infections;
  1777. if (this.infections != null) {
  1778. if (this.infections.length > 0) {
  1779. this.form.record_date = uParseTime(
  1780. this.infections[0].inspect_date,
  1781. "{y}-{m}-{d}"
  1782. );
  1783. const select_options = ["阴性", "阳性", "弱阳性"];
  1784. for (let i = 0; i < this.infections.length; i++) {
  1785. this.infections[i]["select_options"] = select_options;
  1786. this.infections[i]["value"] =
  1787. this.infections[i].inspect_value;
  1788. }
  1789. }
  1790. }
  1791. if (patietInfo.gender === 1 || patietInfo.gender === 2) {
  1792. this.form.gender = patietInfo.gender;
  1793. }
  1794. this.form.nation = patietInfo.nation;
  1795. this.form.native_place = patietInfo.native_place;
  1796. this.form.birth = uParseTime(patietInfo.birthday, "{y}-{m}-{d}");
  1797. this.form.firstDialysisDate = uParseTime(
  1798. patietInfo.first_dialysis_date,
  1799. "{y}-{m}-{d}"
  1800. );
  1801. this.form.height = patietInfo.height + "";
  1802. // this.form.age = jsGetAge(this.form.birth, "-");
  1803. if (patietInfo.marital_status > 0) {
  1804. this.form.maritalStatus = patietInfo.marital_status;
  1805. }
  1806. this.form.children = patietInfo.children;
  1807. this.form.admissionNumber = patietInfo.admission_number;
  1808. if (patietInfo.reimbursement_way_id > 0) {
  1809. this.form.reimbursementWayID = patietInfo.reimbursement_way_id;
  1810. }
  1811. this.form.healthCareNo = patietInfo.health_care_no;
  1812. this.form.phone = patietInfo.phone;
  1813. this.form.homeTelephone = patietInfo.home_telephone;
  1814. this.form.relative_phone = patietInfo.relative_phone;
  1815. this.form.relative_relations = patietInfo.relative_relations;
  1816. this.form.homeAddress = patietInfo.home_address;
  1817. this.form.work = patietInfo.work_unit;
  1818. this.form.unit_address = patietInfo.unit_address;
  1819. if (patietInfo.age == 0) {
  1820. this.form.age = jsGetAge(this.form.birth, "-");
  1821. } else {
  1822. this.form.age = patietInfo.age;
  1823. }
  1824. if (patietInfo.profession > 0) {
  1825. this.form.profession = patietInfo.profession;
  1826. }
  1827. if (patietInfo.education_level > 0) {
  1828. this.form.education = patietInfo.education_level;
  1829. }
  1830. if (patietInfo.source === 1 || patietInfo.source === 2 || patietInfo.source === 3) {
  1831. this.form.source = patietInfo.source;
  1832. }
  1833. if (patietInfo.lapseto === 1 || patietInfo.lapseto === 2) {
  1834. this.form.lapseto = patietInfo.lapseto;
  1835. }
  1836. if (
  1837. patietInfo.is_hospital_first_dialysis === 1 ||
  1838. patietInfo.is_hospital_first_dialysis === 2
  1839. ) {
  1840. this.form.is_hospital_first_dialysis =
  1841. patietInfo.is_hospital_first_dialysis;
  1842. }
  1843. if (patietInfo.first_dialysis_date !== 0) {
  1844. this.form.firstDialysisDate = uParseTime(
  1845. patietInfo.first_dialysis_date,
  1846. "{y}-{m}-{d}"
  1847. );
  1848. }
  1849. this.form.first_dialysis_hospital =
  1850. patietInfo.first_dialysis_hospital;
  1851. if (patietInfo.predialysis_condition.length > 0) {
  1852. this.form.predialysis_condition =
  1853. patietInfo.predialysis_condition.split(",");
  1854. }
  1855. this.form.pre_hospital_dialysis_frequency =
  1856. patietInfo.pre_hospital_dialysis_frequency;
  1857. this.form.pre_hospital_dialysis_times =
  1858. patietInfo.pre_hospital_dialysis_times;
  1859. if (patietInfo.hospital_first_dialysis_date !== 0) {
  1860. this.form.hospital_first_dialysis_date = uParseTime(
  1861. patietInfo.hospital_first_dialysis_date,
  1862. "{y}-{m}-{d}"
  1863. );
  1864. }
  1865. this.form.contagions = response.data.data.contagions;
  1866. this.form.diseases = response.data.data.diseases;
  1867. this.form.remark = patietInfo.remark;
  1868. this.form.sch_remark = patietInfo.sch_remark;
  1869. this.form.diagnose = patietInfo.diagnose;
  1870. this.form.patient_complains = patietInfo.patient_complains;
  1871. this.form.present_history = patietInfo.present_history;
  1872. this.form.past_history = patietInfo.past_history;
  1873. this.form.temperature = patietInfo.temperature;
  1874. this.form.pulse = patietInfo.pulse;
  1875. this.form.respiratory = patietInfo.respiratory;
  1876. this.form.sbp = patietInfo.sbp;
  1877. this.form.dbp = patietInfo.dbp;
  1878. this.form.contact_name = patietInfo.contact_name;
  1879. this.form.tell_phone = patietInfo.tell_phone;
  1880. this.form.dialysis_age = patietInfo.dialysis_age;
  1881. this.form.record_number = patietInfo.record_number
  1882. if (patietInfo.expense_kind == 0) {
  1883. this.form.expense_kind = "";
  1884. } else {
  1885. this.form.expense_kind = patietInfo.expense_kind;
  1886. }
  1887. this.form.first_treatment_date = uParseTime(
  1888. patietInfo.first_treatment_date,
  1889. "{y}-{m}-{d}"
  1890. );
  1891. this.form.print_date = uParseTime(
  1892. patietInfo.print_date,
  1893. "{y}-{m}-{d}"
  1894. );
  1895. this.form.patient_source = patietInfo.patient_source
  1896. if (patietInfo.patient_start_time != 0) {
  1897. this.form.patient_start_time = uParseTime(
  1898. patietInfo.patient_start_time,
  1899. "{y}-{m}-{d}"
  1900. );
  1901. }
  1902. if (patietInfo.patient_end_time != 0) {
  1903. this.form.patient_end_time = uParseTime(
  1904. patietInfo.patient_end_time,
  1905. "{y}-{m}-{d}"
  1906. );
  1907. }
  1908. this.form.patient_address = patietInfo.patient_address
  1909. this.form.allergic_history = patietInfo.allergic_history
  1910. this.form.infectious_remark = patietInfo.infectious_remark
  1911. // this.form.initial = patietInfo.initial_dialysis + "";
  1912. // this.form.dialysisTotal = patietInfo.total_dialysis + "";
  1913. // this.form.assessment = patietInfo.evaluate;
  1914. // if (patietInfo.patient_type > 0) {
  1915. // this.form.patientType = patietInfo.patient_type;
  1916. // }
  1917. // if (patietInfo.partition_id > 0) {
  1918. // this.form.partition = patietInfo.partition_id;
  1919. // }
  1920. // if (patietInfo.bed_id > 0) {
  1921. // this.form.bed = patietInfo.bed_id;
  1922. // }
  1923. // this.form.healthCareDueDate = uParseTime(
  1924. // patietInfo.health_care_due_date,
  1925. // "{y}-{m}-{d}"
  1926. // );
  1927. // if (patietInfo.blood_type > 0) {
  1928. // this.form.blood = patietInfo.blood_type;
  1929. // }
  1930. // if (patietInfo.rh > 0) {
  1931. // this.form.rh = patietInfo.rh;
  1932. // }
  1933. // this.form.healthCareDueAlertDate = uParseTime(
  1934. // patietInfo.health_care_due_alert_date,
  1935. // "{y}-{m}-{d}"
  1936. // );
  1937. // this.form.receivingDate = uParseTime(
  1938. // patietInfo.receiving_date,
  1939. // "{y}-{m}-{d}"
  1940. // );
  1941. // this.form.dialysisAge = dialysisAge(
  1942. // this.form.firstDialysisDate,
  1943. // "-"
  1944. // );
  1945. // if (patietInfo.induction_period > 0) {
  1946. // this.form.induction = patietInfo.induction_period;
  1947. // }
  1948. // if (patietInfo.attending_doctor_id > 0) {
  1949. // this.form.doctor = patietInfo.attending_doctor_id;
  1950. // }
  1951. if (patietInfo.head_nurse_id > 0) {
  1952. this.form.nurse = patietInfo.head_nurse_id;
  1953. }
  1954. // if (patietInfo.registrars_id > 0) {
  1955. // this.form.registrars = patietInfo.registrars_id;
  1956. // }
  1957. var contagionsArr = response.data.data.contagions;
  1958. var diseasesArr = response.data.data.diseases;
  1959. // console.log('123456',response.data.data);
  1960. this.patientPrint = patietInfo;
  1961. console.log('this.patientPrint',this.patientPrint);
  1962. var sourceLen = this.sourceOptions.length;
  1963. for (let index = 0; index < sourceLen; index++) {
  1964. if (this.sourceOptions[index].value === patietInfo.source) {
  1965. this.patientPrint.source = this.sourceOptions[index].label;
  1966. break;
  1967. }
  1968. }
  1969. var styleLen = this.styleOptions.length;
  1970. for (let index = 0; index < styleLen; index++) {
  1971. if (this.styleOptions[index].id === patietInfo.patient_type) {
  1972. this.patientPrint.patient_type = this.styleOptions[index].name;
  1973. break;
  1974. }
  1975. }
  1976. var partitionLen = this.partitionOptions.length;
  1977. for (let index = 0; index < partitionLen; index++) {
  1978. if (this.partitionOptions[index].id === patietInfo.partition_id) {
  1979. this.patientPrint.partition_id =
  1980. this.partitionOptions[index].name;
  1981. break;
  1982. }
  1983. }
  1984. this.patientPrint.bed_id =
  1985. patietInfo.bed_id > 0 ? patietInfo.bed_id : "";
  1986. if (patietInfo.gender === 1) {
  1987. this.patientPrint.gender = "男";
  1988. } else if (patietInfo.gender === 2) {
  1989. this.patientPrint.gender = "女";
  1990. } else {
  1991. this.patientPrint.gender = "";
  1992. }
  1993. var maritalLen = this.maritalOptions.length;
  1994. console.log(maritalLen);
  1995. for (let index = 0; index < maritalLen; index++) {
  1996. if (
  1997. this.maritalOptions[index].id ==
  1998. response.data.data.patient.marital_status
  1999. ) {
  2000. this.patientPrint.marital_status =
  2001. this.maritalOptions[index].name;
  2002. }
  2003. }
  2004. this.patientPrint.birthday = uParseTime(
  2005. patietInfo.birthday,
  2006. "{y}-{m}-{d}"
  2007. );
  2008. this.patientPrint.age = jsGetAge(this.patientPrint.birthday, "-");
  2009. this.patientPrint.patient_complains =
  2010. patietInfo.patient_complains.replace(/\n/g, "<br/>");
  2011. // console.log('qwerewqrt',patietInfo.present_history);
  2012. this.patientPrint.present_history =
  2013. patietInfo.present_history.replace(/\n/g, "<br/>");
  2014. console.log('qwerewqrt',patietInfo.past_history);
  2015. this.patientPrint.past_history = patietInfo.past_history.replace(
  2016. /\n/g,
  2017. "<br/>"
  2018. );
  2019. this.patientPrint.remark = patietInfo.remark.replace(
  2020. /\n/g,
  2021. "<br/>"
  2022. );
  2023. this.patientPrint.sch_remark = patietInfo.sch_remark.replace(
  2024. /\n/g,
  2025. "<br/>"
  2026. );
  2027. this.patientPrint.diagnose = patietInfo.diagnose.replace(
  2028. /\n/g,
  2029. "<br/>"
  2030. );
  2031. if (typeof patietInfo.temperature === "number") {
  2032. this.patientPrint.temperature = patietInfo.temperature.toFixed(1);
  2033. }
  2034. console.log('this.patientPrint.remark',this.patientPrint.remark);
  2035. if (patietInfo.reimbursement_way_id > 0) {
  2036. var wayLen = this.wayOptions.length;
  2037. for (let index = 0; index < wayLen; index++) {
  2038. if (
  2039. this.wayOptions[index].id === patietInfo.reimbursement_way_id
  2040. ) {
  2041. this.patientPrint.reimbursement_way_id =
  2042. this.wayOptions[index].name;
  2043. break;
  2044. }
  2045. }
  2046. } else {
  2047. this.patientPrint.reimbursement_way_id = "";
  2048. }
  2049. if (patietInfo.health_care_due_date !== 0) {
  2050. this.patientPrint.health_care_due_date = uParseTime(
  2051. patietInfo.health_care_due_date,
  2052. "{y}-{m}-{d}"
  2053. );
  2054. } else {
  2055. this.patientPrint.health_care_due_date = "";
  2056. }
  2057. if (patietInfo.blood_type > 0) {
  2058. var typeLen = this.typeOptions.length;
  2059. for (let index = 0; index < typeLen; index++) {
  2060. if (this.typeOptions[index].id === patietInfo.blood_type) {
  2061. this.patientPrint.blood_type = this.typeOptions[index].name;
  2062. break;
  2063. }
  2064. }
  2065. } else {
  2066. this.patientPrint.blood_type = "";
  2067. }
  2068. if (patietInfo.rh > 0) {
  2069. var rhLen = this.rhOptions.length;
  2070. for (let index = 0; index < rhLen; index++) {
  2071. if (this.rhOptions[index].id === patietInfo.rh) {
  2072. this.patientPrint.rh = this.rhOptions[index].name;
  2073. break;
  2074. }
  2075. }
  2076. } else {
  2077. this.patientPrint.rh = "";
  2078. }
  2079. if (patietInfo.health_care_due_alert_date !== 0) {
  2080. this.patientPrint.health_care_due_alert_date = uParseTime(
  2081. patietInfo.health_care_due_alert_date,
  2082. "{y}-{m}-{d}"
  2083. );
  2084. } else {
  2085. this.patientPrint.health_care_due_alert_date = "";
  2086. }
  2087. if (patietInfo.education_level > 0) {
  2088. var eLen = this.educationOptions.length;
  2089. for (let index = 0; index < eLen; index++) {
  2090. if (
  2091. this.educationOptions[index].id === patietInfo.education_level
  2092. ) {
  2093. this.patientPrint.education_level =
  2094. this.educationOptions[index].name;
  2095. break;
  2096. }
  2097. }
  2098. } else {
  2099. this.patientPrint.education_level = "";
  2100. }
  2101. if (patietInfo.profession > 0) {
  2102. var eLen = this.professionOptions.length;
  2103. for (let index = 0; index < eLen; index++) {
  2104. if (
  2105. this.professionOptions[index].id === patietInfo.profession
  2106. ) {
  2107. this.patientPrint.profession =
  2108. this.professionOptions[index].name;
  2109. break;
  2110. }
  2111. }
  2112. } else {
  2113. this.patientPrint.profession = "";
  2114. }
  2115. if (patietInfo.receiving_date !== 0) {
  2116. this.patientPrint.receiving_date = uParseTime(
  2117. patietInfo.receiving_date,
  2118. "{y}-{m}-{d}"
  2119. );
  2120. } else {
  2121. this.patientPrint.receiving_date = "";
  2122. }
  2123. if (patietInfo.first_dialysis_date !== 0) {
  2124. this.patientPrint.first_dialysis_date = uParseTime(
  2125. patietInfo.first_dialysis_date,
  2126. "{y}-{m}-{d}"
  2127. );
  2128. this.patientPrint.dialysis_age = dialysisAge(
  2129. this.patientPrint.first_dialysis_date
  2130. );
  2131. } else {
  2132. this.patientPrint.first_dialysis_date = "";
  2133. this.patientPrint.dialysis_age = "";
  2134. }
  2135. if (patietInfo.induction_period > 0) {
  2136. var eLen = this.inductionOptions.length;
  2137. for (let index = 0; index < eLen; index++) {
  2138. if (
  2139. this.inductionOptions[index].id ===
  2140. patietInfo.induction_period
  2141. ) {
  2142. this.patientPrint.induction_period =
  2143. this.inductionOptions[index].name;
  2144. break;
  2145. }
  2146. }
  2147. } else {
  2148. this.patientPrint.induction_period = "";
  2149. }
  2150. if (patietInfo.attending_doctor_id > 0) {
  2151. var eLen = this.adminUserOptions.length;
  2152. for (let index = 0; index < eLen; index++) {
  2153. if (
  2154. this.adminUserOptions[index].id ===
  2155. patietInfo.attending_doctor_id
  2156. ) {
  2157. this.patientPrint.attending_doctor_id =
  2158. this.adminUserOptions[index].name;
  2159. break;
  2160. }
  2161. }
  2162. } else {
  2163. this.patientPrint.attending_doctor_id = "";
  2164. }
  2165. if (patietInfo.head_nurse_id > 0) {
  2166. var eLen = this.adminUserOptions.length;
  2167. for (let index = 0; index < eLen; index++) {
  2168. if (
  2169. this.adminUserOptions[index].id === patietInfo.head_nurse_id
  2170. ) {
  2171. this.patientPrint.head_nurse_id =
  2172. this.adminUserOptions[index].name;
  2173. break;
  2174. }
  2175. }
  2176. } else {
  2177. this.patientPrint.head_nurse_id = "";
  2178. }
  2179. if (contagionsArr.length > 0) {
  2180. var contagionsIdArr = {};
  2181. var alen = contagionsArr.length;
  2182. for (let index = 0; index < alen; index++) {
  2183. contagionsIdArr[contagionsArr[index]] = 1;
  2184. }
  2185. var printContagions = [];
  2186. var clen = this.contagionList.length;
  2187. for (let index = 0; index < clen; index++) {
  2188. if (this.contagionList[index].id in contagionsIdArr) {
  2189. printContagions.push(this.contagionList[index].name);
  2190. }
  2191. }
  2192. this.patientPrint.contagions = printContagions.join("、");
  2193. } else {
  2194. this.patientPrint.contagions = "阴性";
  2195. }
  2196. if (diseasesArr.length > 0) {
  2197. var diseasesIdArr = {};
  2198. var alen = diseasesArr.length;
  2199. for (let index = 0; index < alen; index++) {
  2200. diseasesIdArr[diseasesArr[index]] = 1;
  2201. }
  2202. var printDisease = [];
  2203. var clen = this.checkDisease.length;
  2204. for (let index = 0; index < clen; index++) {
  2205. if (this.checkDisease[index].id in diseasesIdArr) {
  2206. printDisease.push(this.checkDisease[index].name);
  2207. }
  2208. }
  2209. this.patientPrint.diseases = printDisease.join("、");
  2210. } else {
  2211. this.patientPrint.diseases = "";
  2212. }
  2213. if (patietInfo.registrars_id > 0) {
  2214. var eLen = this.adminUserOptions.length;
  2215. for (let index = 0; index < eLen; index++) {
  2216. if (
  2217. this.adminUserOptions[index].id === patietInfo.registrars_id
  2218. ) {
  2219. this.patientPrint.registrars =
  2220. this.adminUserOptions[index].name;
  2221. this.form.registrars = this.adminUserOptions[index].name;
  2222. break;
  2223. }
  2224. }
  2225. } else {
  2226. this.patientPrint.registrars = "";
  2227. }
  2228. if (patietInfo.hospital_first_dialysis_date !== 0) {
  2229. this.patientPrint.hospital_first_dialysis_date = uParseTime(
  2230. patietInfo.hospital_first_dialysis_date,
  2231. "{y}-{m}-{d}"
  2232. );
  2233. } else {
  2234. this.patientPrint.hospital_first_dialysis_date = "";
  2235. }
  2236. // this.checkIdCardNo();
  2237. } else {
  2238. console.log("patient get err state");
  2239. this.$notify.error({
  2240. title: "错误",
  2241. message: "网络异常",
  2242. });
  2243. this.$router.push("/patients/patients");
  2244. }
  2245. // this.postForm = response.data
  2246. // // Just for test
  2247. // this.postForm.title += ` Article Id:${this.postForm.id}`
  2248. // this.postForm.content_short += ` Article Id:${this.postForm.id}`
  2249. })
  2250. .catch((err) => {
  2251. console.log("patient get err", err);
  2252. this.$notify.error({
  2253. title: "错误",
  2254. message: "网络异常",
  2255. });
  2256. this.$router.push("/patients/patients");
  2257. });
  2258. },
  2259. fetchAllDoctorAndNurse() {
  2260. fetchAllDoctorAndNurse().then((response) => {
  2261. if (response.data.state === 1) {
  2262. this.doctorOptions = response.data.data.doctors;
  2263. this.nurseOptions = response.data.data.nursers;
  2264. }
  2265. });
  2266. },
  2267. fetchAllAdminUsers() {
  2268. fetchAllAdminUsers().then((response) => {
  2269. if (response.data.state === 1) {
  2270. this.adminUserOptions = response.data.data.users;
  2271. this.operators = response.data.data.operators
  2272. console.log("医生签名",this.operators)
  2273. }
  2274. });
  2275. },
  2276. getDcotorName(admin_user_id){
  2277. var url = ""
  2278. if(this.operators!=null && this.operators.length > 0){
  2279. for(let i=0;i<this.operators.length;i++){
  2280. if(admin_user_id == this.operators[i].admin_user_id){
  2281. url = this.operators[i].url
  2282. }
  2283. }
  2284. }
  2285. return url
  2286. },
  2287. getDcotorNameOne(admin_user_id){
  2288. var name = ""
  2289. for(let i=0;i<this.adminUserOptions.length;i++){
  2290. if(admin_user_id == this.adminUserOptions[i].id){
  2291. name = this.adminUserOptions[i].name
  2292. }
  2293. }
  2294. return name
  2295. },
  2296. printCard() {
  2297. var ptime = Math.round(new Date().getTime() / 1000);
  2298. this.print_time = uParseTime(ptime, "{y}年{m}月{d}日");
  2299. const style =
  2300. "@media print { .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .print_main_content .order_title { text-align: center; font-size: 23px; line-height: 50px; font-weight: 500; } .print_main_content table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } .print_main_content table tbody tr td { border: 1px solid; text-align: center; padding: 10px 8px; } .td_proj_title { font-size: 18px; line-height: 25px; font-weight: 500; } .td_proj_content { font-size: 18px; line-height: 25px; } .td_align_left { text-align: left; } .print_footnote_panel { font-size: 17px; line-height: 40px; } .print_footnote_panel .proj { display: inline-block; width: 49%; } .print_footnote_panel .proj .proj_title { font-weight: 500;} }";
  2301. setTimeout(() => {
  2302. printJS({
  2303. printable: "print-card-info",
  2304. type: "html",
  2305. style: style,
  2306. scanStyles: false,
  2307. });
  2308. }, 1);
  2309. var patientID = this.patientPrint.id;
  2310. var name = this.patientPrint.name;
  2311. var gender = this.patientPrint.gender;
  2312. if (gender === 1) {
  2313. gender = "男";
  2314. }
  2315. if (gender === 2) {
  2316. gender = "女";
  2317. }
  2318. var idCardNo = this.patientPrint.id_card_no;
  2319. var dialysisNo = this.patientPrint.dialysis_no;
  2320. var phone = this.patientPrint.phone;
  2321. var healthCareNo = this.patientPrint.health_care_no;
  2322. // Base64加密
  2323. var epatientID = this.Base64.encode(patientID);
  2324. var ename = this.Base64.encode(name);
  2325. var egender = this.Base64.encode(gender);
  2326. var eidCardNo = this.Base64.encode(idCardNo);
  2327. var edialysisNo = this.Base64.encode(dialysisNo);
  2328. var ephone = this.Base64.encode(phone);
  2329. var eheathCareNo = this.Base64.encode(healthCareNo);
  2330. console.log(
  2331. "id号:" + epatientID,
  2332. "姓名:" + ename,
  2333. "性别:" + egender,
  2334. "身份证:" + eidCardNo,
  2335. "透析号:" + edialysisNo,
  2336. "电话:" + ephone,
  2337. "社保号:" + eheathCareNo
  2338. );
  2339. // var params =new Object();
  2340. // params.id = this.patientPrint.id
  2341. // params.name = this.patientPrint.name;
  2342. // this.$options.methods.qrcode(epatientID, ename, egender, eidCardNo, edialysisNo, ephone, eheathCareNo)// 调用生成二维码的方法
  2343. this.$options.methods.qrcode(
  2344. patientID,
  2345. name,
  2346. gender,
  2347. idCardNo,
  2348. dialysisNo,
  2349. phone,
  2350. healthCareNo
  2351. );
  2352. // this.$options.methods.qrcode(params)
  2353. },
  2354. showInspectDialog() {
  2355. this.dialogFormVisible = true;
  2356. },
  2357. qrcode(patientID, name, gender, idCardNo, dialysisNo, phone, healthCareNo) {
  2358. document.getElementById("qrcode").innerHTML = "";
  2359. new QRCode("qrcode", {
  2360. width: 200,
  2361. height: 200,
  2362. text:
  2363. "user_id:" +
  2364. patientID +
  2365. "," +
  2366. "name:" +
  2367. name +
  2368. "," +
  2369. "dialysis_no:" +
  2370. dialysisNo +
  2371. "," +
  2372. "gender:" +
  2373. gender +
  2374. "," +
  2375. "idcard_no:" +
  2376. idCardNo +
  2377. "," +
  2378. "phone:" +
  2379. phone +
  2380. "," +
  2381. "healthcare_no:" +
  2382. healthCareNo,
  2383. });
  2384. },
  2385. checkIdCardNo() {
  2386. if(this.$store.getters.xt_user.org_id != 10278 && this.$store.getters.xt_user.org_id != 10138) {
  2387. if (!isCardNo(this.form.idCardNo)) {
  2388. this.$message.error("身份证号码信息有误!");
  2389. this.form.birth = "";
  2390. return false;
  2391. }
  2392. }
  2393. var thisLen = this.form.idCardNo.length;
  2394. var birth = "";
  2395. if (thisLen == 15) {
  2396. birth = "19" + this.form.idCardNo.substr(6, 6);
  2397. } else {
  2398. birth = this.form.idCardNo.substr(6, 8);
  2399. }
  2400. this.form.birth =
  2401. birth.substr(0, 4) +
  2402. "-" +
  2403. birth.substr(4, 2) +
  2404. "-" +
  2405. birth.substr(6, 2);
  2406. this.form.age = jsGetAge(this.form.birth, "-");
  2407. },
  2408. // qrcode(params){
  2409. // new QRCode('qrcode',{
  2410. // width:200,
  2411. // height:200,
  2412. // text:params,
  2413. // })
  2414. // }
  2415. },
  2416. };
  2417. </script>
  2418. <style rel="stylesheet/scss" lang="scss" scoped>
  2419. .uploadHead {
  2420. margin-top: 25%;
  2421. }
  2422. .uploadHeadBtn {
  2423. width: 148px;
  2424. margin-top: 10px;
  2425. }
  2426. .el-form {
  2427. .el-col-6,
  2428. .el-col-8 {
  2429. width: 360px;
  2430. height: 59px !important;
  2431. }
  2432. .el-form-item {
  2433. // margin-bottom: 17px !important;
  2434. .el-select {
  2435. width: 100%;
  2436. }
  2437. .el-date-editor.el-input {
  2438. width: 100%;
  2439. }
  2440. .textarea {
  2441. width: 100%;
  2442. height: 70px;
  2443. border-color: #dcdfe6;
  2444. padding: 5px;
  2445. }
  2446. }
  2447. }
  2448. /deep/ .now_his{
  2449. .el-row{
  2450. .el-col-24{
  2451. .el-form-item{
  2452. .el-form-item__content{
  2453. height: 100%;
  2454. .el-textarea{
  2455. .el-textarea__inner{
  2456. height: 93%;
  2457. }
  2458. }
  2459. }
  2460. }
  2461. }
  2462. }
  2463. }
  2464. // #print-info-box .info_print {
  2465. // width: 920px;
  2466. // margin: 0 auto !important;
  2467. // position: relative;
  2468. // top: 0;
  2469. // left: 0;
  2470. // padding: 20px 30px;
  2471. // }
  2472. // #print-info-box .box-title {
  2473. // text-align: center;
  2474. // font-weight: 600;
  2475. // font-size: 30px;
  2476. // line-height: 80px;
  2477. // margin-bottom: 20px;
  2478. // }
  2479. // #print-info-box .unit-title {
  2480. // text-align: center;
  2481. // line-height: 40px;
  2482. // font-size: 20px;
  2483. // font-weight: 400;
  2484. // padding-top: 10px;
  2485. // /* border: 1px solid #333; */
  2486. // }
  2487. // #print-info-box .unit-box {
  2488. // padding: 15px;
  2489. // }
  2490. // #print-info-box .unit-box-item {
  2491. // display: flex;
  2492. // align-items: center;
  2493. // justify-content: space-between;
  2494. // padding: 4px 1em;
  2495. // }
  2496. // #print-info-box .unit-box-item-col3 {
  2497. // width: 30%;
  2498. // display: flex;
  2499. // padding: 4px 0;
  2500. // }
  2501. // #print-info-box .unit-box-item-col4 {
  2502. // width: 23%;
  2503. // display: flex;
  2504. // padding: 4px 0;
  2505. // }
  2506. // #print-info-box .item-value {
  2507. // flex: 1;
  2508. // border-bottom: 1px solid #333;
  2509. // }
  2510. </style>
  2511. <style scoped>
  2512. /* 打印表格的样式 */
  2513. .print_main_content {
  2514. background-color: white;
  2515. width: 960px;
  2516. margin: 0 auto;
  2517. padding: 0 0 0 0;
  2518. page-break-after: always;
  2519. }
  2520. .print_main_content .order_title {
  2521. text-align: center;
  2522. font-size: 23px;
  2523. line-height: 50px;
  2524. font-weight: 500;
  2525. }
  2526. .print_main_content table {
  2527. width: 100%;
  2528. border: 1px solid;
  2529. border-collapse: collapse;
  2530. padding: 2px;
  2531. }
  2532. .print_main_content table tbody tr td {
  2533. border: 1px solid;
  2534. text-align: center;
  2535. /* font-size: 17px; */
  2536. /* padding: 10px 8px; */
  2537. }
  2538. .td_proj_title {
  2539. font-size: 17px;
  2540. /* line-height: 20px; */
  2541. font-weight: 500;
  2542. }
  2543. .td_proj_content {
  2544. font-size: 17px;
  2545. /* line-height: 20px; */
  2546. }
  2547. .td_align_left {
  2548. text-align: left;
  2549. }
  2550. .print_footnote_panel {
  2551. font-size: 17px;
  2552. line-height: 40px;
  2553. }
  2554. .print_footnote_panel .proj {
  2555. display: inline-block;
  2556. width: 49%;
  2557. }
  2558. .print_footnote_panel .proj .proj_title {
  2559. font-weight: 500;
  2560. }
  2561. .el-select-dropdown {
  2562. z-index: 998 !important;
  2563. }
  2564. </style>