hushijiandan.component.html 169 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906
  1. <div class="nurse">
  2. <nz-layout class="app-layout display_flex flex_auto">
  3. <nz-sider
  4. class="menu-sidebar slider"
  5. nzWidth="224px"
  6. nzBreakpoint="xs"
  7. [nzTrigger]="null"
  8. >
  9. <div
  10. class="sidebar-logo display_flex align-items_center justify-content_flex-center"
  11. >
  12. <div style="line-height: normal;height: 100%;" class="display_flex align-items_center justify-content_flex-center flex-direction_column">
  13. <!-- <img src="../../assets/images/xiehe_logo.jpg" style="width:100%;" alt="logo" /> -->
  14. <img [src]="tool.logoUrl" />
  15. <span>{{tool.logoTitle}}</span>
  16. </div>
  17. </div>
  18. <div
  19. class="notAvailable display_flex align-items_center justify-content_flex-center"
  20. *ngIf="
  21. !deptTaskTypeRules.openInspection &&
  22. !deptTaskTypeRules.openPatientTransport
  23. "
  24. >
  25. <div>
  26. <img src="../../assets/images/icon_jianchakong.png" alt="" />
  27. <div>暂未开通</div>
  28. </div>
  29. </div>
  30. <div class="mainInfo">
  31. <div class="searchBox">
  32. <input
  33. nz-input
  34. [(ngModel)]="tabSearchCont"
  35. (ngModelChange)="searchTabInp($event)"
  36. placeholder="请输入关键字"
  37. />
  38. </div>
  39. <div class="checkBanner" nz-row>
  40. <button
  41. nz-button
  42. nz-col
  43. nzSpan="12"
  44. class="checkItem checked"
  45. (click)="changeInfo()"
  46. >
  47. {{(currentDept.typeValue == 'surgery' && !this.tabSearchCont) ? '手术安排信息' : '患者信息'}}
  48. </button>
  49. </div>
  50. <!-- 患者信息-复苏室科室类型 -->
  51. <div class="checkedInfo patient" style="padding-bottom: 0" *ngIf="currentDept.typeValue == 'recovery'">
  52. <overlay-scrollbars #osComponentRef4 class="box">
  53. <div
  54. class="loading display_flex align-items_center justify-content_flex-center"
  55. *ngIf="
  56. pLoading &&
  57. (deptTaskTypeRules.openInspection ||
  58. deptTaskTypeRules.openPatientTransport)
  59. "
  60. >
  61. <div>
  62. <img src="../../assets/images/loading.gif" alt="" />
  63. <div>加载中...</div>
  64. </div>
  65. </div>
  66. <div
  67. class="loading display_flex align-items_center justify-content_flex-center"
  68. *ngIf="!patientList.length && !pLoading"
  69. >
  70. <div>
  71. <div>暂无数据</div>
  72. </div>
  73. </div>
  74. <div *ngIf="patientList.length && !pLoading">
  75. <div class="item" *ngFor="let item of patientList">
  76. <div class="itemTit txtC" style="font-weight: bold">
  77. <ng-container *ngIf="item.illnessState">
  78. <i
  79. *ngIf="item.illnessState.value === '2'"
  80. class="colorRed icon_transport transport-wei"
  81. nz-tooltip
  82. nzTooltipTitle="病危"
  83. ></i>
  84. <i
  85. *ngIf="item.illnessState.value === '3'"
  86. class="colorRed icon_transport transport-zhong1"
  87. nz-tooltip
  88. nzTooltipTitle="病重"
  89. ></i>
  90. </ng-container>
  91. <ng-container *ngIf="item.careLevel">
  92. <i
  93. *ngIf="item.careLevel.value === '0'"
  94. class="icon_transport transport-te1"
  95. nz-tooltip
  96. nzTooltipTitle="特级护理"
  97. ></i>
  98. <i
  99. *ngIf="item.careLevel.value === '1'"
  100. class="icon_transport transport-Bduanshuzi1"
  101. nz-tooltip
  102. nzTooltipTitle="一级护理"
  103. ></i>
  104. <i
  105. *ngIf="item.careLevel.value === '2'"
  106. class="icon_transport transport-Bduanshuzi"
  107. nz-tooltip
  108. nzTooltipTitle="二级护理"
  109. ></i>
  110. <i
  111. *ngIf="item.careLevel.value === '3'"
  112. class="icon_transport transport-Bduanshuzi11"
  113. nz-tooltip
  114. nzTooltipTitle="三级护理"
  115. ></i>
  116. </ng-container>
  117. <span
  118. nz-tooltip
  119. [nzTooltipTitle]="recentInfo"
  120. nzTooltipPlacement="right"
  121. [nzMouseEnterDelay]="1"
  122. (mouseenter)="getRecentInfo(item.patientCode)"
  123. >{{ item.patientName }}({{ item.bedNum }})</span
  124. >
  125. </div>
  126. <div
  127. class="checkInfo"
  128. nz-row
  129. *ngIf="
  130. followFlag === '1' &&
  131. currentDept.typeValue != 'checkRoom2' &&
  132. currentDept.typeValue != 'outpatientDept' &&
  133. currentDept.typeValue != 'checkRoom'
  134. "
  135. >
  136. <span
  137. nz-col
  138. nzSpan="2"
  139. class="icon_transport transport-zhongdianguanzhu"
  140. (click)="follow(item)"
  141. [ngStyle]="{
  142. color: item.focusPatient === 0 ? 'white' : 'red'
  143. }"
  144. nz-tooltip
  145. [nzTooltipTitle]="
  146. item.focusPatient === 0
  147. ? '白色心为非特殊关注,需手动建单后配送人员上门送检'
  148. : '红色心为特殊关注,患者所有检查会自动建单,配送人员主动上门送检'
  149. "
  150. ></span>
  151. <span nz-col nzSpan="2"></span>
  152. <span nz-col nzSpan="12">{{ item.residenceNo }}</span>
  153. <span nz-col nzSpan="6" class="txtR"
  154. >待检 {{ item.watingCount }}</span
  155. >
  156. <span nz-col nzSpan="2"></span>
  157. </div>
  158. <div
  159. class="checkInfo"
  160. nz-row
  161. *ngIf="
  162. followFlag === '0' ||
  163. currentDept.typeValue == 'checkRoom2' ||
  164. currentDept.typeValue == 'outpatientDept' ||
  165. currentDept.typeValue == 'checkRoom'
  166. "
  167. >
  168. <span nz-col nzSpan="2"></span>
  169. <span nz-col nzSpan="12">{{ item.residenceNo }}</span>
  170. <span nz-col nzSpan="6" class="txtR"
  171. >待检 {{ item.watingCount }}</span
  172. >
  173. <span nz-col nzSpan="2"></span>
  174. </div>
  175. <div class="btn" (click)="newPatientOrder(item)">一键建单</div>
  176. </div>
  177. </div>
  178. </overlay-scrollbars>
  179. </div>
  180. <!-- 患者信息 -->
  181. <div class="checkedInfo patient" style="padding-bottom: 0" *ngIf="(currentDept.typeValue != 'surgery' || (currentDept.typeValue == 'surgery' && this.tabSearchCont)) && currentDept.typeValue != 'recovery'">
  182. <overlay-scrollbars #osComponentRef4 class="box">
  183. <div
  184. class="loading display_flex align-items_center justify-content_flex-center"
  185. *ngIf="
  186. pLoading &&
  187. (deptTaskTypeRules.openInspection ||
  188. deptTaskTypeRules.openPatientTransport)
  189. "
  190. >
  191. <div>
  192. <img src="../../assets/images/loading.gif" alt="" />
  193. <div>加载中...</div>
  194. </div>
  195. </div>
  196. <div
  197. class="loading display_flex align-items_center justify-content_flex-center"
  198. *ngIf="!patientList.length && !pLoading"
  199. >
  200. <div>
  201. <div>暂无数据</div>
  202. </div>
  203. </div>
  204. <div *ngIf="patientList.length && !pLoading">
  205. <div class="item" *ngFor="let item of patientList">
  206. <div class="itemTit txtC" style="font-weight: bold">
  207. <ng-container *ngIf="item.illnessState">
  208. <i
  209. *ngIf="item.illnessState.value === '2'"
  210. class="colorRed icon_transport transport-wei"
  211. nz-tooltip
  212. nzTooltipTitle="病危"
  213. ></i>
  214. <i
  215. *ngIf="item.illnessState.value === '3'"
  216. class="colorRed icon_transport transport-zhong1"
  217. nz-tooltip
  218. nzTooltipTitle="病重"
  219. ></i>
  220. </ng-container>
  221. <ng-container *ngIf="item.careLevel">
  222. <i
  223. *ngIf="item.careLevel.value === '0'"
  224. class="icon_transport transport-te1"
  225. nz-tooltip
  226. nzTooltipTitle="特级护理"
  227. ></i>
  228. <i
  229. *ngIf="item.careLevel.value === '1'"
  230. class="icon_transport transport-Bduanshuzi1"
  231. nz-tooltip
  232. nzTooltipTitle="一级护理"
  233. ></i>
  234. <i
  235. *ngIf="item.careLevel.value === '2'"
  236. class="icon_transport transport-Bduanshuzi"
  237. nz-tooltip
  238. nzTooltipTitle="二级护理"
  239. ></i>
  240. <i
  241. *ngIf="item.careLevel.value === '3'"
  242. class="icon_transport transport-Bduanshuzi11"
  243. nz-tooltip
  244. nzTooltipTitle="三级护理"
  245. ></i>
  246. </ng-container>
  247. <span
  248. nz-tooltip
  249. [nzTooltipTitle]="recentInfo"
  250. nzTooltipPlacement="right"
  251. [nzMouseEnterDelay]="1"
  252. (mouseenter)="getRecentInfo(item.patientCode)"
  253. >{{ item.patientName }}({{ item.bedNum }})</span
  254. >
  255. </div>
  256. <div
  257. class="checkInfo"
  258. nz-row
  259. *ngIf="
  260. followFlag === '1' &&
  261. currentDept.typeValue != 'checkRoom2' &&
  262. currentDept.typeValue != 'outpatientDept' &&
  263. currentDept.typeValue != 'checkRoom'
  264. "
  265. >
  266. <span
  267. nz-col
  268. nzSpan="2"
  269. class="icon_transport transport-zhongdianguanzhu"
  270. (click)="follow(item)"
  271. [ngStyle]="{
  272. color: item.focusPatient === 0 ? 'white' : 'red'
  273. }"
  274. nz-tooltip
  275. [nzTooltipTitle]="
  276. item.focusPatient === 0
  277. ? '白色心为非特殊关注,需手动建单后配送人员上门送检'
  278. : '红色心为特殊关注,患者所有检查会自动建单,配送人员主动上门送检'
  279. "
  280. ></span>
  281. <span nz-col nzSpan="2"></span>
  282. <span nz-col nzSpan="12">{{ item.residenceNo }}</span>
  283. <span nz-col nzSpan="6" class="txtR"
  284. >待检 {{ item.watingCount }}</span
  285. >
  286. <span nz-col nzSpan="2"></span>
  287. </div>
  288. <div
  289. class="checkInfo"
  290. nz-row
  291. *ngIf="
  292. followFlag === '0' ||
  293. currentDept.typeValue == 'checkRoom2' ||
  294. currentDept.typeValue == 'outpatientDept' ||
  295. currentDept.typeValue == 'checkRoom'
  296. "
  297. >
  298. <span nz-col nzSpan="2"></span>
  299. <span nz-col nzSpan="12">{{ item.residenceNo }}</span>
  300. <span nz-col nzSpan="6" class="txtR"
  301. >待检 {{ item.watingCount }}</span
  302. >
  303. <span nz-col nzSpan="2"></span>
  304. </div>
  305. <div class="btnNews">
  306. <div class="btn" (click)="newPatientOrder(item)">一键建单</div>
  307. <div class="btn" (click)="openOutpatientServiceModal(item)" *ngIf="currentDept.typeValue == 'outpatientService'">打印二维码</div>
  308. </div>
  309. </div>
  310. </div>
  311. </overlay-scrollbars>
  312. </div>
  313. <!-- 手术安排信息-手术室科室类型 -->
  314. <div class="checkedInfo patient" style="padding-bottom: 0" *ngIf="currentDept.typeValue == 'surgery' && !this.tabSearchCont">
  315. <overlay-scrollbars #osComponentRef4 class="box">
  316. <div
  317. class="loading display_flex align-items_center justify-content_flex-center"
  318. *ngIf="
  319. pLoading &&
  320. (deptTaskTypeRules.openInspection ||
  321. deptTaskTypeRules.openPatientTransport)
  322. "
  323. >
  324. <div>
  325. <img src="../../assets/images/loading.gif" alt="" />
  326. <div>加载中...</div>
  327. </div>
  328. </div>
  329. <div
  330. class="loading display_flex align-items_center justify-content_flex-center"
  331. *ngIf="!patientList.length && !pLoading"
  332. >
  333. <div>
  334. <div>暂无数据</div>
  335. </div>
  336. </div>
  337. <div *ngIf="patientList.length && !pLoading">
  338. <div class="item" *ngFor="let item of patientList">
  339. <div class="itemTit txtC" style="font-weight: bold">
  340. <ng-container *ngIf="item.patientDTO && item.patientDTO.illnessState">
  341. <i
  342. *ngIf="item.patientDTO && item.patientDTO.illnessState.value === '2'"
  343. class="colorRed icon_transport transport-wei"
  344. nz-tooltip
  345. nzTooltipTitle="病危"
  346. ></i>
  347. <i
  348. *ngIf="item.patientDTO && item.patientDTO.illnessState.value === '3'"
  349. class="colorRed icon_transport transport-zhong1"
  350. nz-tooltip
  351. nzTooltipTitle="病重"
  352. ></i>
  353. </ng-container>
  354. <ng-container *ngIf="item.patientDTO && item.patientDTO.careLevel">
  355. <i
  356. *ngIf="item.patientDTO && item.patientDTO.careLevel.value === '0'"
  357. class="icon_transport transport-te1"
  358. nz-tooltip
  359. nzTooltipTitle="特级护理"
  360. ></i>
  361. <i
  362. *ngIf="item.patientDTO && item.patientDTO.careLevel.value === '1'"
  363. class="icon_transport transport-Bduanshuzi1"
  364. nz-tooltip
  365. nzTooltipTitle="一级护理"
  366. ></i>
  367. <i
  368. *ngIf="item.patientDTO && item.patientDTO.careLevel.value === '2'"
  369. class="icon_transport transport-Bduanshuzi"
  370. nz-tooltip
  371. nzTooltipTitle="二级护理"
  372. ></i>
  373. <i
  374. *ngIf="item.patientDTO && item.patientDTO.careLevel.value === '3'"
  375. class="icon_transport transport-Bduanshuzi11"
  376. nz-tooltip
  377. nzTooltipTitle="三级护理"
  378. ></i>
  379. </ng-container>
  380. <span>{{ item.patientDTO ? item.patientDTO.patientName : '' }}({{ item.patientDTO ? item.patientDTO.residenceNo : '' }})</span>
  381. </div>
  382. <div class="checkInfo" nz-row>
  383. <span nz-col nzSpan="24">{{ item.applyDate | date:'HH:mm' }}({{ item.orders }})</span>
  384. <span nz-col nzSpan="24" class="wordBreak">{{ item.areaDeptDTO ? (deptDisplay == 2 ? item.areaDeptDTO.deptalias : item.areaDeptDTO.dept) : '' }}</span>
  385. <span nz-col nzSpan="24" class="wordBreak">{{ item.surgeryName }}</span>
  386. </div>
  387. <div class="btnNews">
  388. <div class="btn" (click)="surgeryBegin($event, item)" *ngIf="surgeryConfigs.surgeryBegin == 1">即将开始</div>
  389. <div class="btn" (click)="pickUpPatient($event, item)">一键接患者</div>
  390. </div>
  391. </div>
  392. </div>
  393. </overlay-scrollbars>
  394. </div>
  395. <!-- 翻页 -->
  396. <!-- <div class="paging">
  397. <div>
  398. <nz-pagination [(nzPageIndex)]="infoPageIdx" [(nzTotal)]="infoLength" (nzPageIndexChange)="getPatient()"
  399. [nzPageSize]='5' nzSimple>
  400. </nz-pagination>
  401. </div>
  402. </div> -->
  403. </div>
  404. </nz-sider>
  405. <nz-layout class="layout" style="background: #fff; position: relative">
  406. <nz-header>
  407. <div
  408. class="app-header borderB display_flex justify-content_space-between align-items_center"
  409. >
  410. <div
  411. class="nurseTitle display_flex justify-content_space-between align-items_center"
  412. >
  413. <div class="todayNumWrap">护士端<span class="todayNum">当日建单数:{{ todayNum }}</span></div>
  414. <div class="updateTipsForNurses red">{{ updateTipsForNurses }}</div>
  415. <div class="queuingInformation" *ngIf="!updateTipsForNurses && inspectAndPatientTransportConfig.queuingInformation == 1">等待陪检:<span class="red">{{queuingInformationList[0]}}</span>&emsp;陪检中:<span class="red">{{queuingInformationList[1]}}</span></div>
  416. <div class="nurseCode" (click)="showNurseCode()">
  417. <i class="nurseCodeIcon icon_transport transport-erweima"></i
  418. >二维码
  419. </div>
  420. </div>
  421. <div class="userInfo">
  422. <div class="wel">欢迎您:</div>
  423. <div class="user">
  424. <img src="../../assets/images/icon_keshi.png" alt="" />
  425. <span *ngIf="deptDisplay" [title]="deptDisplay == 2 ? loginUser.dept.deptalias : loginUser.dept.dept">{{deptDisplay == 2 ? loginUser.dept.deptalias : loginUser.dept.dept}}</span>
  426. </div>
  427. <div class="userInfo-wrap">
  428. <div class="logOut" (click)="changeKsNow()">切换科室</div>
  429. <div class="logOut" (click)="logOut()">退出</div>
  430. </div>
  431. </div>
  432. </div>
  433. </nz-header>
  434. <nz-content class="nzContent">
  435. <div class="inner-content">
  436. <div class="mainInfo" nz-row>
  437. <div nz-col nzSpan="17" class="cont">
  438. <div class="top" [ngSwitch]="currentDept.typeValue">
  439. <div class="nums borderB" nz-row *ngSwitchCase="'outpatientService'" hidden></div>
  440. <div class="nums borderB" nz-row *ngSwitchCase="'surgery'">
  441. <!-- 手术未开通 -->
  442. <div
  443. *ngIf="!deptTaskTypeRules.openPatientTransport && !surgeryLoading"
  444. nz-col
  445. nzSpan="24"
  446. nz-row
  447. class="h100p"
  448. >
  449. <div
  450. class="notAvailable display_flex align-items_center justify-content_flex-center"
  451. >
  452. <div>
  453. <img
  454. src="../../assets/images/icon_jianchakong.png"
  455. alt=""
  456. />
  457. <div>暂未开通</div>
  458. </div>
  459. </div>
  460. <div
  461. nz-col
  462. nzSpan="6"
  463. class="borderR alignC display_flex justify-content_flex-center align-items_center h100p"
  464. >
  465. <span>*****</span>
  466. </div>
  467. <div nz-col nzSpan="18" class="h100p">
  468. <div
  469. class="txtC h50p alignC display_flex justify-content_flex-center align-items_center overAuto borderB"
  470. >
  471. <span>*****</span>
  472. </div>
  473. <div
  474. class="txtC h50p alignC display_flex justify-content_flex-center align-items_center overAuto"
  475. >
  476. <span>*****</span>
  477. </div>
  478. </div>
  479. </div>
  480. <!-- 手术已开通 -->
  481. <div
  482. *ngIf="deptTaskTypeRules.openPatientTransport && !surgeryLoading"
  483. nz-col
  484. nzSpan="24"
  485. nz-row
  486. class="h100p"
  487. >
  488. <div nz-col nzSpan="16" class="h100p">
  489. <div class="txtC h50p borderB">
  490. <div class="swiperBox">
  491. <div class="swiper" *ngIf="surgeryWKOMsg.patientDTO">
  492. <div class="item txtC alignC display_flex justify-content_flex-center align-items_center patientStyle">
  493. <ng-container *ngIf="surgeryWKOMsg.patientDTO && surgeryWKOMsg.patientDTO.illnessState">
  494. <i
  495. *ngIf="surgeryWKOMsg.patientDTO && surgeryWKOMsg.patientDTO.illnessState.value === '2'"
  496. class="colorRed icon_transport transport-wei"
  497. nz-tooltip
  498. nzTooltipTitle="病危"
  499. ></i>
  500. <i
  501. *ngIf="surgeryWKOMsg.patientDTO && surgeryWKOMsg.patientDTO.illnessState.value === '3'"
  502. class="colorRed icon_transport transport-zhong1"
  503. nz-tooltip
  504. nzTooltipTitle="病重"
  505. ></i>
  506. </ng-container>
  507. <ng-container *ngIf="surgeryWKOMsg.patientDTO && surgeryWKOMsg.patientDTO.careLevel">
  508. <i
  509. *ngIf="surgeryWKOMsg.patientDTO && surgeryWKOMsg.patientDTO.careLevel.value === '0'"
  510. class="icon_transport transport-te1"
  511. nz-tooltip
  512. nzTooltipTitle="特级护理"
  513. ></i>
  514. <i
  515. *ngIf="surgeryWKOMsg.patientDTO && surgeryWKOMsg.patientDTO.careLevel.value === '1'"
  516. class="icon_transport transport-Bduanshuzi1"
  517. nz-tooltip
  518. nzTooltipTitle="一级护理"
  519. ></i>
  520. <i
  521. *ngIf="surgeryWKOMsg.patientDTO && surgeryWKOMsg.patientDTO.careLevel.value === '2'"
  522. class="icon_transport transport-Bduanshuzi"
  523. nz-tooltip
  524. nzTooltipTitle="二级护理"
  525. ></i>
  526. <i
  527. *ngIf="surgeryWKOMsg.patientDTO && surgeryWKOMsg.patientDTO.careLevel.value === '3'"
  528. class="icon_transport transport-Bduanshuzi11"
  529. nz-tooltip
  530. nzTooltipTitle="三级护理"
  531. ></i>
  532. </ng-container>
  533. <strong>{{ surgeryWKOMsg.patientDTO ? surgeryWKOMsg.patientDTO.patientName : '' }}({{ surgeryWKOMsg.patientDTO ? surgeryWKOMsg.patientDTO.residenceNo : '' }})</strong>
  534. </div>
  535. </div>
  536. <div class="swiper none display_flex justify-content_flex-center align-items_center" *ngIf="!surgeryWKOMsg.patientDTO">
  537. <div class="item alignC display_flex justify-content_flex-center align-items_center">
  538. <span>暂无信息</span>
  539. </div>
  540. </div>
  541. </div>
  542. </div>
  543. <div class="txtC h50p">
  544. <div class="swiperBox">
  545. <div class="swiper" *ngIf="surgeryWKOMsg.surgeryName">
  546. <div class="item txtC alignC display_flex justify-content_flex-center align-items_center">
  547. <span>{{ surgeryWKOMsg.surgeryName }}</span>
  548. </div>
  549. </div>
  550. <div class="swiper none display_flex justify-content_flex-center align-items_center" *ngIf="!surgeryWKOMsg.surgeryName">
  551. <div class="item alignC display_flex justify-content_flex-center align-items_center">
  552. <span>暂无信息</span>
  553. </div>
  554. </div>
  555. </div>
  556. </div>
  557. </div>
  558. <div
  559. nz-col
  560. nzSpan="8"
  561. class="borderL alignC display_flex justify-content_flex-center align-items_center h100p"
  562. >
  563. <button *ngIf="surgeryWKOMsg.patientDTO && surgeryConfigs && surgeryConfigs.remandClinical == 1" nz-button nzType="primary" class="btn txtC mr8" (click)="sendWard($event, surgeryWKOMsg)">送回病房</button>
  564. <button *ngIf="surgeryWKOMsg.patientDTO && surgeryConfigs && surgeryConfigs.remandRecovery == 1" nz-button nzType="primary" class="btn txtC" (click)="sendAwakeningRoom($event, surgeryWKOMsg)">送回苏醒间</button>
  565. </div>
  566. </div>
  567. <div
  568. *ngIf="surgeryLoading"
  569. nz-col
  570. nzSpan="24"
  571. nz-row
  572. class="h100p display_flex justify-content_flex-center align-items_center"
  573. >
  574. <div class="txtC" style="text-align: center">
  575. <img src="../../../assets/images/loading.gif" alt="" />
  576. <div>加载中...</div>
  577. </div>
  578. </div>
  579. </div>
  580. <div class="nums borderB" nz-row *ngSwitchDefault>
  581. <!-- 标本信息未开通 -->
  582. <div
  583. *ngIf="!deptTaskTypeRules.openSpecimen"
  584. nz-col
  585. nzSpan="13"
  586. nz-row
  587. class="h100p"
  588. >
  589. <div
  590. class="notAvailable display_flex align-items_center justify-content_flex-center"
  591. >
  592. <div>
  593. <img
  594. src="../../assets/images/icon_jianchakong.png"
  595. alt=""
  596. />
  597. <div>暂未开通</div>
  598. </div>
  599. </div>
  600. <div nz-col nzSpan="18" nz-row class="borderR h100p">
  601. <div
  602. nz-col
  603. nzSpan="4"
  604. class="borderR alignC display_flex justify-content_flex-center align-items_center h100p"
  605. >
  606. <img
  607. src="../../assets/images/icon_hubiaoben.png"
  608. alt=""
  609. />
  610. </div>
  611. <div nz-col nzSpan="20">
  612. <div class="txtC h33 borderB overAuto">*****</div>
  613. <div nz-row class="h53">
  614. <div nz-col nzSpan="12" class="txtC borderR h100p">
  615. <p>*</p>
  616. <div>急标数量</div>
  617. </div>
  618. <div nz-col nzSpan="12" class="txtC h100p">
  619. <p>*</p>
  620. <div>普标数量</div>
  621. </div>
  622. </div>
  623. </div>
  624. </div>
  625. <div nz-col nzSpan="6" class="borderR h100p">
  626. <div class="quick">
  627. <button class="btn txtC">{{ specimenButton }}</button>
  628. </div>
  629. </div>
  630. </div>
  631. <!-- 标本信息已开通 -->
  632. <div
  633. *ngIf="deptTaskTypeRules.openSpecimen"
  634. nz-col
  635. nzSpan="13"
  636. nz-row
  637. class="h100p"
  638. >
  639. <div nz-col nzSpan="18" nz-row class="borderR h100p">
  640. <div
  641. nz-col
  642. nzSpan="4"
  643. class="borderR alignC display_flex justify-content_flex-center align-items_center h100p"
  644. >
  645. <img
  646. src="../../assets/images/icon_hubiaoben.png"
  647. alt=""
  648. />
  649. </div>
  650. <div nz-col nzSpan="20">
  651. <div class="txtC h33 borderB overAuto">
  652. {{ specimenWorkOrderMsg.specimenInfo || "" }}
  653. </div>
  654. <div nz-row class="h53">
  655. <div
  656. nz-col
  657. nzSpan="12"
  658. class="txtC borderR h100p cur"
  659. (click)="changeSpeDetail(1)"
  660. >
  661. <p>
  662. {{
  663. specimenWorkOrderMsg.specimenCount
  664. ? specimenWorkOrderMsg.specimenCount.urgent
  665. : 0
  666. }}
  667. </p>
  668. <div>急标数量</div>
  669. </div>
  670. <div
  671. nz-col
  672. nzSpan="12"
  673. class="txtC h100p cur"
  674. (click)="changeSpeDetail(0)"
  675. >
  676. <p>
  677. {{
  678. specimenWorkOrderMsg.specimenCount
  679. ? specimenWorkOrderMsg.specimenCount.noUrgent
  680. : 0
  681. }}
  682. </p>
  683. <div>普标数量</div>
  684. </div>
  685. </div>
  686. </div>
  687. </div>
  688. <div nz-col nzSpan="6" class="borderR h100p">
  689. <div class="quick">
  690. <button
  691. [nzLoading]="bLoading"
  692. nz-button
  693. nzType="primary"
  694. class="btn txtC"
  695. (click)="newShortcutOrder1(bbMsg, 'bb')"
  696. >
  697. {{ specimenButton }}
  698. </button>
  699. <!-- <button class="btn txtC" (click)="newShortcutOrder1(bbMsg,'bb',true)">
  700. 收取急查标本
  701. </button> -->
  702. </div>
  703. </div>
  704. </div>
  705. <!-- 药品/静配信息未开通 -->
  706. <div
  707. *ngIf="
  708. !deptTaskTypeRules.openStaticDistribution &&
  709. !deptTaskTypeRules.openDrugsBag &&
  710. !drugJpLoading
  711. "
  712. nz-col
  713. nzSpan="11"
  714. nz-row
  715. class="h100p"
  716. >
  717. <div
  718. class="notAvailable display_flex align-items_center justify-content_flex-center"
  719. >
  720. <div>
  721. <img
  722. src="../../assets/images/icon_jianchakong.png"
  723. alt=""
  724. />
  725. <div>暂未开通</div>
  726. </div>
  727. </div>
  728. <div
  729. nz-col
  730. nzSpan="6"
  731. class="borderR alignC display_flex justify-content_flex-center align-items_center h100p"
  732. >
  733. <img
  734. src="../../assets/images/icon_hujingpei.png"
  735. alt=""
  736. />
  737. </div>
  738. <div nz-col nzSpan="18" class="h100p">
  739. <div
  740. class="txtC h50p alignC display_flex justify-content_flex-center align-items_center overAuto borderB"
  741. >
  742. <span>*****</span>
  743. </div>
  744. <div
  745. class="txtC h50p alignC display_flex justify-content_flex-center align-items_center overAuto"
  746. >
  747. <span>*****</span>
  748. </div>
  749. </div>
  750. </div>
  751. <!-- 药品/静配信息已开通 -->
  752. <div
  753. *ngIf="
  754. (deptTaskTypeRules.openStaticDistribution ||
  755. deptTaskTypeRules.openDrugsBag) &&
  756. !drugJpLoading
  757. "
  758. nz-col
  759. nzSpan="11"
  760. nz-row
  761. class="h100p"
  762. >
  763. <div
  764. nz-col
  765. nzSpan="6"
  766. class="borderR alignC display_flex justify-content_flex-center align-items_center h100p"
  767. >
  768. <img
  769. src="../../assets/images/icon_hujingpei.png"
  770. alt=""
  771. />
  772. </div>
  773. <div nz-col nzSpan="18" class="h100p">
  774. <div class="txtC h50p borderB">
  775. <div class="swiperBox">
  776. <div
  777. class="swiper"
  778. [ngStyle]="{ top: swiperTop + 'px' }"
  779. *ngIf="
  780. jpDrugsWKOMsg.drugsInfoList &&
  781. jpDrugsWKOMsg.drugsInfoList.length > 0
  782. "
  783. >
  784. <div
  785. class="item txtC alignC display_flex justify-content_flex-center align-items_center"
  786. *ngFor="let item of jpDrugsWKOMsg.drugsInfoList"
  787. >
  788. <span>{{ item }}</span>
  789. </div>
  790. </div>
  791. <div
  792. class="swiper none display_flex justify-content_flex-center align-items_center"
  793. *ngIf="
  794. !jpDrugsWKOMsg.drugsInfoList ||
  795. !jpDrugsWKOMsg.drugsInfoList.length
  796. "
  797. >
  798. <div
  799. class="item alignC display_flex justify-content_flex-center align-items_center"
  800. >
  801. <span>暂无药品配送信息</span>
  802. </div>
  803. </div>
  804. </div>
  805. </div>
  806. <div class="txtC h50p">
  807. <div class="swiperBox">
  808. <div
  809. class="swiper"
  810. [ngStyle]="{ top: swiperTop1 + 'px' }"
  811. *ngIf="
  812. jpDrugsWKOMsg.jpInfoList &&
  813. jpDrugsWKOMsg.jpInfoList.length > 0
  814. "
  815. >
  816. <div
  817. class="item txtC alignC display_flex justify-content_flex-center align-items_center"
  818. *ngFor="let item of jpDrugsWKOMsg.jpInfoList"
  819. >
  820. <span>{{ item }}</span>
  821. </div>
  822. </div>
  823. <div
  824. class="swiper none display_flex justify-content_flex-center align-items_center"
  825. *ngIf="
  826. !jpDrugsWKOMsg.jpInfoList ||
  827. !jpDrugsWKOMsg.jpInfoList.length
  828. "
  829. >
  830. <div
  831. class="item alignC display_flex justify-content_flex-center align-items_center"
  832. >
  833. <!-- <span>暂无静配配送信息</span> -->
  834. <span></span>
  835. </div>
  836. </div>
  837. </div>
  838. </div>
  839. </div>
  840. </div>
  841. <div
  842. *ngIf="drugJpLoading"
  843. nz-col
  844. nzSpan="11"
  845. nz-row
  846. class="h100p display_flex justify-content_flex-center align-items_center"
  847. >
  848. <div class="txtC" style="text-align: center">
  849. <img src="../../../assets/images/loading.gif" alt="" />
  850. <div>加载中...</div>
  851. </div>
  852. </div>
  853. </div>
  854. <div class="tab borderB" nz-row style="padding: 4px 0">
  855. <div nz-col nzSpan="21" class="h100p">
  856. <overlay-scrollbars #osComponentRef11 nz-row class="h100p w100">
  857. <div style="height: 100%; display: flex;">
  858. <ng-container *ngFor="let item of tabPermission">
  859. <div *ngIf="(coopBtns.buildOrdersForOtherTasks && item.system) || !item.system" nz-col nzSpan="3" [ngClass]="{txtC: true, cur: true, checked: item.system ? checkedTableType == 'other' : checkedTableType == item.id}" (click)="checkTable(item)">
  860. <div class="text">{{ item.title }}</div>
  861. </div>
  862. </ng-container>
  863. <div *ngIf="coopBtns.suggestionBox" nz-col nzSpan="3" [ngClass]="{txtC: true, cur: true, checked: checkedTableType == 'advice'}" (click)="checkTable('advice')">
  864. <div class="text">意见箱</div>
  865. </div>
  866. <div *ngIf="coopBtns.surgery" nz-col nzSpan="3" [ngClass]="{txtC: true, cur: true, checked: checkedTableType == 'surgery'}" (click)="checkTable('surgery')">
  867. <div class="text">手术排程信息</div>
  868. </div>
  869. <div *ngIf="coopBtns.inquiryOfHistoricalSpecimens && currentDept.typeValue != 'outpatientService'" nz-col nzSpan="3" [ngClass]="{txtC: true, cur: true, checked: checkedTableType == 'historySpecimen'}" (click)="checkTable('historySpecimen')">
  870. <div class="text">历史标本查询</div>
  871. </div>
  872. <div *ngIf="coopBtns.historicalMedicineListInquiry && currentDept.typeValue != 'outpatientService'" nz-col nzSpan="3" [ngClass]="{txtC: true, cur: true, checked: checkedTableType == 'historyDrugsbag'}" (click)="checkTable('historyDrugsbag')">
  873. <div class="text">历史药单查询</div>
  874. </div>
  875. <div *ngIf="coopBtns.quickReportForRepair && isShowBx" nz-col nzSpan="3" [ngClass]="{txtC: true, cur: true, checked: checkedTableType == 'kjbx'}" (click)="checkTable('kjbx')">
  876. <div class="text">快捷报修</div>
  877. </div>
  878. <div *ngIf="coopBtns.repairList && isShowBx" nz-col nzSpan="3" [ngClass]="{txtC: true, cur: true, checked: checkedTableType == 'bxlb'}" (click)="checkTable('bxlb')">
  879. <div class="text">
  880. 报修列表<strong class="red">&nbsp;({{processing}})</strong>
  881. </div>
  882. </div>
  883. </div>
  884. </overlay-scrollbars>
  885. </div>
  886. <div nz-col nzSpan="3" class="txtC h100p alignR display_flex justify-content_flex-end align-items_center">
  887. <div class="btn txtC" *ngIf="mainRole && loginUser.usertype.value != 1" (click)="toMain()">
  888. 回到系统管理
  889. </div>
  890. <div class="btn txtC" *ngIf="mainRole && loginUser.usertype.value == 1" (click)="toOrder()">
  891. 查看工单
  892. </div>
  893. </div>
  894. </div>
  895. </div>
  896. <!-- 其他任务建单 -->
  897. <ng-container *ngIf="othersList[checkedTableType]">
  898. <div style="flex: 1; height: 100%; position: relative">
  899. <div class="otherBox">
  900. <div class="otherBoxInner">
  901. <div class="otherBox-nav">
  902. <div class="otherBox-nav__head">
  903. <input
  904. nz-input
  905. placeholder="请输入关键字"
  906. [(ngModel)]="otherSearch"
  907. (ngModelChange)="otherSearchChange()"
  908. />
  909. </div>
  910. <overlay-scrollbars
  911. #osComponentRef2
  912. class="otherBox-nav__main"
  913. [ngStyle]="{ height: '100%' }"
  914. >
  915. <div
  916. class="otherBox-nav__mainInner"
  917. *ngIf="!oLoading && othersList[checkedTableType]?.length > 0"
  918. >
  919. <div
  920. [sortablejs]="othersList[checkedTableType]"
  921. [sortablejsOptions]="othersListOptions"
  922. class="w100"
  923. >
  924. <div
  925. class="otherBox-nav__mainItem"
  926. *ngFor="let item of othersList[checkedTableType]"
  927. (click)="otherClick(item)"
  928. [ngClass]="{ active: selectOtherId == item.id }"
  929. [title]="item.taskName"
  930. >
  931. {{ item.taskName }}
  932. </div>
  933. </div>
  934. </div>
  935. <div
  936. class="otherBox-nav__mainInner noData"
  937. *ngIf="!oLoading && othersList[checkedTableType].length == 0"
  938. >
  939. 暂无数据
  940. </div>
  941. <div
  942. class="otherBox-nav__mainInner oLoading"
  943. *ngIf="oLoading"
  944. >
  945. <img
  946. src="../../../assets/images/loading.gif"
  947. alt=""
  948. />
  949. <div>加载中...</div>
  950. </div>
  951. </overlay-scrollbars>
  952. </div>
  953. <div class="otherBox-main">
  954. <div class="otherBox-main__main">
  955. <!-- -----------------start------------------ -->
  956. <div class="modalBody_box">
  957. <div class="modalBody">
  958. <div
  959. class="modalBody_left"
  960. *ngIf="!nLoading && selectOtherId"
  961. >
  962. <overlay-scrollbars
  963. class="modalBody_left_box"
  964. #osComponentRef3
  965. style="height: calc(100vh - 263px)"
  966. >
  967. <div class="modalBody_left_box">
  968. <div
  969. style="
  970. flex:1 1 auto;
  971. display: flex;
  972. flex-direction: column;
  973. justify-content: center;
  974. align-items: center;
  975. "
  976. >
  977. <div
  978. class="content txtC"
  979. *ngIf="
  980. buildMsg.status == 100013 ||
  981. buildMsg.status == 100014 ||
  982. buildMsg.status == 100015
  983. "
  984. >
  985. <div
  986. class="defeat"
  987. [innerHTML]="buildMsg.msg"
  988. ></div>
  989. </div>
  990. <!-- 200 该任务类型运送过程暂未配置 -->
  991. <div
  992. class="content txtC"
  993. *ngIf="
  994. buildMsg.status == 200 &&
  995. buildType == 'bb'
  996. "
  997. >
  998. <div
  999. class="defeat"
  1000. [innerHTML]="buildMsg.msg"
  1001. ></div>
  1002. </div>
  1003. <!-- 100009 该任务类型运送过程暂未配置 -->
  1004. <div
  1005. class="content txtC"
  1006. *ngIf="buildMsg.status == 100009"
  1007. >
  1008. <div
  1009. class="defeat"
  1010. [innerHTML]="buildMsg.msg"
  1011. ></div>
  1012. </div>
  1013. <!-- 100010 系统未查询到该任务类型关联信息 -->
  1014. <div
  1015. class="content txtC"
  1016. *ngIf="buildMsg.status == 100010"
  1017. >
  1018. <div
  1019. class="defeat"
  1020. [innerHTML]="buildMsg.msg"
  1021. ></div>
  1022. </div>
  1023. <!-- 100012 (护士端一键建单展示策略)直接取msg -->
  1024. <div
  1025. class="content txtC"
  1026. *ngIf="buildMsg.status == 100012"
  1027. >
  1028. <div
  1029. class="defeat"
  1030. [innerHTML]="buildMsg.msg"
  1031. ></div>
  1032. </div>
  1033. <!-- 100013 (护士端一键建单展示策略)取起点科室,和mgs值展示 -->
  1034. <div
  1035. class="content"
  1036. *ngIf="buildMsg.status == 100013"
  1037. >
  1038. <div>
  1039. <form
  1040. nz-form
  1041. [formGroup]="shortcutForm"
  1042. class="shortcutForm"
  1043. >
  1044. <nz-form-item>
  1045. <nz-form-label
  1046. [nzSm]="6"
  1047. [nzXs]="24"
  1048. nzRequired
  1049. nzFor="originOffice"
  1050. >起点科室
  1051. </nz-form-label>
  1052. <nz-form-control
  1053. nzErrorTip="请选择起点科室!"
  1054. >
  1055. <nz-select
  1056. class="w100"
  1057. formControlName="originOffice"
  1058. [nzDropdownMatchSelectWidth]="
  1059. false
  1060. "
  1061. nzServerSearch
  1062. nzShowSearch
  1063. (nzOnSearch)="
  1064. searchDept(
  1065. 'start',
  1066. buildMsg,
  1067. $event
  1068. )
  1069. "
  1070. nzPlaceHolder="请选择起点科室"
  1071. >
  1072. <ng-container
  1073. *ngFor="
  1074. let option of buildMsg.start
  1075. .start.list
  1076. "
  1077. >
  1078. <nz-option
  1079. *ngIf="true"
  1080. [nzLabel]="
  1081. deptDisplay == 2
  1082. ? option.deptalias
  1083. : option.dept
  1084. "
  1085. [nzValue]="option.id"
  1086. >
  1087. </nz-option>
  1088. </ng-container>
  1089. <nz-option
  1090. *ngIf="false"
  1091. nzDisabled
  1092. nzCustomContent
  1093. >
  1094. <i
  1095. nz-icon
  1096. nzType="loading"
  1097. class="loading-icon"
  1098. ></i>
  1099. 搜索中...
  1100. </nz-option>
  1101. </nz-select>
  1102. </nz-form-control>
  1103. </nz-form-item>
  1104. </form>
  1105. </div>
  1106. </div>
  1107. <!-- 100014 (护士端一键建单展示策略)取终点科室和msg 值展示 -->
  1108. <div
  1109. class="content"
  1110. *ngIf="buildMsg.status == 100014"
  1111. >
  1112. <div>
  1113. <form
  1114. nz-form
  1115. [formGroup]="shortcutForm"
  1116. class="shortcutForm"
  1117. >
  1118. <nz-form-item>
  1119. <nz-form-label
  1120. [nzSm]="6"
  1121. [nzXs]="24"
  1122. nzRequired
  1123. nzFor="targetOffice"
  1124. >目标科室
  1125. </nz-form-label>
  1126. <nz-form-control
  1127. nzErrorTip="请选择目标科室!"
  1128. >
  1129. <nz-select
  1130. class="w100"
  1131. formControlName="targetOffice"
  1132. [nzDropdownMatchSelectWidth]="
  1133. false
  1134. "
  1135. nzServerSearch
  1136. nzShowSearch
  1137. (nzOnSearch)="
  1138. searchDept(
  1139. 'target',
  1140. buildMsg,
  1141. $event
  1142. )
  1143. "
  1144. nzAllowClear
  1145. nzPlaceHolder="请选择目标科室"
  1146. >
  1147. <ng-container
  1148. *ngFor="
  1149. let option of buildMsg.end
  1150. .end.list
  1151. "
  1152. >
  1153. <nz-option
  1154. *ngIf="true"
  1155. [nzLabel]="
  1156. deptDisplay == 2
  1157. ? option.deptalias
  1158. : option.dept
  1159. "
  1160. [nzValue]="option.id"
  1161. >
  1162. </nz-option>
  1163. </ng-container>
  1164. <nz-option
  1165. *ngIf="false"
  1166. nzDisabled
  1167. nzCustomContent
  1168. >
  1169. <i
  1170. nz-icon
  1171. nzType="loading"
  1172. class="loading-icon"
  1173. ></i>
  1174. 搜索中...
  1175. </nz-option>
  1176. </nz-select>
  1177. </nz-form-control>
  1178. </nz-form-item>
  1179. </form>
  1180. </div>
  1181. </div>
  1182. <!-- 100015 (护士端一键建单展策略)起点科室和终点科室下拉展示 -->
  1183. <div
  1184. class="content"
  1185. *ngIf="buildMsg.status == 100015"
  1186. >
  1187. <div>
  1188. <form
  1189. nz-form
  1190. [formGroup]="shortcutForm"
  1191. class="shortcutForm"
  1192. >
  1193. <nz-form-item>
  1194. <nz-form-label
  1195. [nzSm]="6"
  1196. [nzXs]="24"
  1197. nzRequired
  1198. nzFor="originOffice"
  1199. >起点科室
  1200. </nz-form-label>
  1201. <nz-form-control
  1202. nzErrorTip="请选择起点科室!"
  1203. >
  1204. <nz-select
  1205. class="w100"
  1206. formControlName="originOffice"
  1207. [nzDropdownMatchSelectWidth]="
  1208. false
  1209. "
  1210. nzServerSearch
  1211. nzShowSearch
  1212. (nzOnSearch)="
  1213. searchDept(
  1214. 'start',
  1215. buildMsg,
  1216. $event
  1217. )
  1218. "
  1219. nzPlaceHolder="请选择起点科室"
  1220. >
  1221. <ng-container
  1222. *ngFor="
  1223. let option of buildMsg.start
  1224. .start.list
  1225. "
  1226. >
  1227. <nz-option
  1228. *ngIf="true"
  1229. [nzLabel]="
  1230. deptDisplay == 2
  1231. ? option.deptalias
  1232. : option.dept
  1233. "
  1234. [nzValue]="option.id"
  1235. >
  1236. </nz-option>
  1237. </ng-container>
  1238. <nz-option
  1239. *ngIf="false"
  1240. nzDisabled
  1241. nzCustomContent
  1242. >
  1243. <i
  1244. nz-icon
  1245. nzType="loading"
  1246. class="loading-icon"
  1247. ></i>
  1248. 搜索中...
  1249. </nz-option>
  1250. </nz-select>
  1251. </nz-form-control>
  1252. </nz-form-item>
  1253. <nz-form-item>
  1254. <nz-form-label
  1255. [nzSm]="6"
  1256. [nzXs]="24"
  1257. nzRequired
  1258. nzFor="targetOffice"
  1259. >目标科室
  1260. </nz-form-label>
  1261. <nz-form-control
  1262. nzErrorTip="请选择目标科室!"
  1263. >
  1264. <nz-select
  1265. class="w100"
  1266. formControlName="targetOffice"
  1267. [nzDropdownMatchSelectWidth]="
  1268. false
  1269. "
  1270. nzServerSearch
  1271. nzShowSearch
  1272. (nzOnSearch)="
  1273. searchDept(
  1274. 'target',
  1275. buildMsg,
  1276. $event
  1277. )
  1278. "
  1279. nzPlaceHolder="请选择目标科室"
  1280. >
  1281. <ng-container
  1282. *ngFor="
  1283. let option of buildMsg.end
  1284. .end.list
  1285. "
  1286. >
  1287. <nz-option
  1288. *ngIf="true"
  1289. [nzLabel]="
  1290. deptDisplay == 2
  1291. ? option.deptalias
  1292. : option.dept
  1293. "
  1294. [nzValue]="option.id"
  1295. >
  1296. </nz-option>
  1297. </ng-container>
  1298. <nz-option
  1299. *ngIf="false"
  1300. nzDisabled
  1301. nzCustomContent
  1302. >
  1303. <i
  1304. nz-icon
  1305. nzType="loading"
  1306. class="loading-icon"
  1307. ></i>
  1308. 搜索中...
  1309. </nz-option>
  1310. </nz-select>
  1311. </nz-form-control>
  1312. </nz-form-item>
  1313. </form>
  1314. </div>
  1315. </div>
  1316. <!-- 工号 -->
  1317. <div
  1318. style="width: 100%; margin: 10px auto 0"
  1319. *ngIf="buildMsg.reserveUserSwitch == 1"
  1320. >
  1321. <p><span class="red">*</span>工号:</p>
  1322. <nz-select class="w100" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="searchAccount($event)" nzPlaceHolder="请选择工号" [(ngModel)]="account" (ngModelChange)="changeAccount($event)">
  1323. <ng-container *ngFor="let option of accountList">
  1324. <nz-option *ngIf="!isLoading" [nzLabel]="option.account + '-' + option.name" [nzValue]="option.id">
  1325. </nz-option>
  1326. </ng-container>
  1327. <nz-option *ngIf="isLoading" nzDisabled nzCustomContent>
  1328. <i nz-icon nzType="loading" class="loading-icon"></i>
  1329. 搜索中...
  1330. </nz-option>
  1331. </nz-select>
  1332. </div>
  1333. <!-- 工单备注: -->
  1334. <div
  1335. style="width: 100%; margin: 10px auto 0"
  1336. *ngIf="buildMsg.remarksSwitch == 1"
  1337. >
  1338. <p>工单备注:</p>
  1339. <textarea
  1340. nz-input
  1341. [placeholder]="workOrderRemarkTips"
  1342. [nzAutosize]="{
  1343. minRows: 3,
  1344. maxRows: 5
  1345. }"
  1346. maxlength="100"
  1347. [(ngModel)]="workOrderRemark"
  1348. #remarksEle
  1349. ></textarea>
  1350. <p
  1351. class="mt8 mb8"
  1352. *ngIf="customRemarks.length"
  1353. >
  1354. 快捷输入:
  1355. </p>
  1356. <div *ngIf="customRemarks.length">
  1357. <span
  1358. class="addRemarks"
  1359. *ngFor="let item of customRemarks"
  1360. (click)="addRemarks(item)"
  1361. >【{{ item }}】</span
  1362. >
  1363. </div>
  1364. <p
  1365. class="mt8 mb8"
  1366. *ngIf="historyCustomRemarks.length"
  1367. >
  1368. 历史输入:
  1369. </p>
  1370. <div *ngIf="historyCustomRemarks.length">
  1371. <span
  1372. class="addRemarks"
  1373. *ngFor="
  1374. let item of historyCustomRemarks
  1375. "
  1376. (click)="addRemarks(item)"
  1377. >【{{ item }}】</span
  1378. >
  1379. </div>
  1380. </div>
  1381. </div>
  1382. <div
  1383. *ngIf="selectOtherId"
  1384. class="btns display_flex justify-content_flex-center"
  1385. >
  1386. <button
  1387. *ngIf="
  1388. buildMsg.status != 100009 &&
  1389. buildMsg.status != 100010
  1390. "
  1391. nz-button
  1392. nzType="primary"
  1393. [nzLoading]="loading5"
  1394. (click)="confirmShortcut()"
  1395. >
  1396. 确认
  1397. </button>
  1398. </div>
  1399. </div>
  1400. </overlay-scrollbars>
  1401. </div>
  1402. <div
  1403. class="modalBody_left nLoading"
  1404. *ngIf="nLoading"
  1405. >
  1406. <img
  1407. src="../../../assets/images/loading.gif"
  1408. alt=""
  1409. />
  1410. <div>加载中...</div>
  1411. </div>
  1412. <div
  1413. class="modalBody_left noData"
  1414. *ngIf="!nLoading && !selectOtherId"
  1415. >
  1416. 暂无数据
  1417. </div>
  1418. <div class="modalBody_right">
  1419. <div class="modalBody_right_head">
  1420. <div class="smallTab">
  1421. <div
  1422. class="s_tab"
  1423. *ngFor="let stab of smallTabs"
  1424. (click)="changeSmallTab(stab.id)"
  1425. [ngClass]="{
  1426. active: smallTabId == stab.id
  1427. }"
  1428. >
  1429. {{ stab.name }}
  1430. </div>
  1431. </div>
  1432. <span>{{ logTime }}秒后自动刷新</span>
  1433. </div>
  1434. <overlay-scrollbars
  1435. class="modalBody_right_box"
  1436. #osComponentRef9
  1437. style="height: 100%"
  1438. *ngIf="
  1439. (smallTabId == 1 &&
  1440. !rLoading &&
  1441. listDeptOrderRecords.length) ||
  1442. smallTabId == 2
  1443. "
  1444. >
  1445. <div class="modalBody_right_box">
  1446. <ng-container
  1447. *ngIf="smallTabId == 1; else elseSmall"
  1448. >
  1449. <div
  1450. class="modalBody_right_list"
  1451. *ngFor="let item of listDeptOrderRecords"
  1452. [innerHTML]="item.msg | htmlTransform"
  1453. ></div>
  1454. </ng-container>
  1455. <ng-template #elseSmall>
  1456. <nz-table
  1457. class="bxFlex bxTable"
  1458. [nzData]="quickBxlbList"
  1459. nzSize="small"
  1460. [nzShowPagination]="false"
  1461. [nzLoading]="quickBxlbLoading"
  1462. >
  1463. <tbody>
  1464. <tr
  1465. (click)="
  1466. showBxModal(
  1467. data,
  1468. '您的报修为“' +
  1469. data.content +
  1470. '” 是否确认报修?'
  1471. )
  1472. "
  1473. *ngFor="
  1474. let data of quickBxlbList;
  1475. let i = index
  1476. "
  1477. >
  1478. <td>{{ data.content || "无" }}</td>
  1479. </tr>
  1480. <tr (click)="checkTable('kjbx')">
  1481. <td class="moreBx">
  1482. 更多报修&gt;&gt;
  1483. </td>
  1484. </tr>
  1485. </tbody>
  1486. </nz-table>
  1487. </ng-template>
  1488. </div>
  1489. </overlay-scrollbars>
  1490. <div
  1491. class="modalBody_left nLoading w100"
  1492. *ngIf="smallTabId == 1 && rLoading"
  1493. >
  1494. <img
  1495. src="../../../assets/images/loading.gif"
  1496. alt=""
  1497. />
  1498. <div>加载中...</div>
  1499. </div>
  1500. <div
  1501. class="modalBody_left noData w100"
  1502. *ngIf="
  1503. smallTabId == 1 &&
  1504. !rLoading &&
  1505. !listDeptOrderRecords.length
  1506. "
  1507. >
  1508. 暂无数据
  1509. </div>
  1510. </div>
  1511. </div>
  1512. </div>
  1513. <!-- -----------------end------------------ -->
  1514. </div>
  1515. </div>
  1516. </div>
  1517. </div>
  1518. </div>
  1519. </ng-container>
  1520. <!-- 意见箱 -->
  1521. <div
  1522. *ngIf="checkedTableType == 'advice'"
  1523. style="flex: 1; height: 100%"
  1524. >
  1525. <div
  1526. class="searchBox display_flex align-items_center justify-content_space-between"
  1527. >
  1528. <div
  1529. class="left alignC display_flex justify-content_flex-center align-items_center"
  1530. >
  1531. <div>意见内容:</div>
  1532. <div>
  1533. <input
  1534. nz-input
  1535. placeholder="请输入关键字"
  1536. [(ngModel)]="adviceSearchInp"
  1537. />
  1538. </div>
  1539. </div>
  1540. <div class="btns">
  1541. <button
  1542. nz-button
  1543. nzType="primary"
  1544. nzGhost
  1545. (click)="getAdvice()"
  1546. >
  1547. 搜索
  1548. </button>
  1549. <button nz-button nzType="primary" (click)="addAdvice()">
  1550. 新增
  1551. </button>
  1552. </div>
  1553. </div>
  1554. <div class="table">
  1555. <div class="box">
  1556. <nz-table
  1557. class="hospitalTable"
  1558. [nzData]="adviceList"
  1559. nzSize="middle"
  1560. [nzShowPagination]="false"
  1561. [nzLoading]="adviceLoading"
  1562. >
  1563. <thead>
  1564. <tr class="thead">
  1565. <th nzWidth="7%">序号</th>
  1566. <th nzWidth="15%">填写时间</th>
  1567. <th nzWidth="36%">意见内容</th>
  1568. <th nzWidth="12%">状态</th>
  1569. <th nzWidth="30%">操作</th>
  1570. </tr>
  1571. </thead>
  1572. <tbody>
  1573. <tr *ngFor="let data of adviceList; let i = index">
  1574. <td>{{ i + 1 }}</td>
  1575. <td>{{ data.createTime.slice(0, 16) }}</td>
  1576. <td>
  1577. <span
  1578. style="overflow: hidden; text-overflow: ellipsis"
  1579. >
  1580. {{ spliceContent(data.content) }}
  1581. </span>
  1582. </td>
  1583. <td>
  1584. {{ data.replaceFlag == 1 ? "已回复" : "未回复" }}
  1585. </td>
  1586. <td>
  1587. <div class="coop">
  1588. <span (click)="adviceDetail(data.id)">查看</span>
  1589. <span
  1590. *ngIf="data.replaceFlag == 0"
  1591. (click)="addAdvice(data)"
  1592. >编辑</span
  1593. >
  1594. <span
  1595. *ngIf="data.replaceFlag == 0"
  1596. (click)="delAdvice(data.id)"
  1597. >删除</span
  1598. >
  1599. </div>
  1600. </td>
  1601. </tr>
  1602. </tbody>
  1603. </nz-table>
  1604. <div class="pagination">
  1605. <nz-pagination
  1606. [(nzPageIndex)]="advicePageIndex"
  1607. [(nzTotal)]="adviceListLength"
  1608. nzShowSizeChanger
  1609. [(nzPageSize)]="advicePageSize"
  1610. (nzPageIndexChange)="getAdvice()"
  1611. (nzPageSizeChange)="getAdvice()"
  1612. >
  1613. </nz-pagination>
  1614. </div>
  1615. </div>
  1616. </div>
  1617. </div>
  1618. <!-- 手术排程信息 -->
  1619. <div *ngIf="checkedTableType == 'surgery'" style="flex: 1; height: 100%">
  1620. <div class="searchBox display_flex align-items_center justify-content_space-between">
  1621. <div class="left alignC display_flex justify-content_flex-center align-items_center"></div>
  1622. <div class="btns">
  1623. <button
  1624. nz-button
  1625. nzType="primary"
  1626. nzGhost
  1627. (click)="getSurgery(true)"
  1628. >
  1629. 搜索
  1630. </button>
  1631. </div>
  1632. </div>
  1633. <div class="table">
  1634. <div class="box">
  1635. <nz-table
  1636. class="hospitalTable"
  1637. [nzData]="surgeryList"
  1638. nzSize="middle"
  1639. [nzShowPagination]="false"
  1640. [nzLoading]="surgeryInfoLoading"
  1641. >
  1642. <thead>
  1643. <tr class="thead">
  1644. <th nzWidth="6%">序号</th>
  1645. <th nzWidth="12%">患者姓名<br>住院号</th>
  1646. <th nzWidth="12%">手术时间</th>
  1647. <th nzWidth="20%">申请科室</th>
  1648. <th>手术名称</th>
  1649. <th nzWidth="15%">状态</th>
  1650. <th nzWidth="20%" *ngIf="currentDept.typeValue == 'surgery'">操作</th>
  1651. </tr>
  1652. </thead>
  1653. <tbody>
  1654. <tr *ngFor="let item of surgeryList;let i = index">
  1655. <td>{{ i + 1 }}</td>
  1656. <td>{{ item.patientDTO ? item.patientDTO.patientName : '' }}({{ item.patientDTO ? item.patientDTO.bedNum : '' }})<br>{{ item.patientDTO ? item.patientDTO.residenceNo : '' }}</td>
  1657. <td>{{ item.applyDate | date:'MM-dd HH:mm' }}</td>
  1658. <td>{{ item.areaDeptDTO ? (deptDisplay == 2 ? item.areaDeptDTO.deptalias : item.areaDeptDTO.dept) : '' }}</td>
  1659. <td>{{ item.surgeryName }}</td>
  1660. <td>{{ item.state?.name }}</td>
  1661. <td *ngIf="currentDept.typeValue == 'surgery'">
  1662. <!-- 手术状态是【手术安排】和【接患者中】,并且【是否开启手术即将开始通知】开启 -->
  1663. <button class="btn1 mr8 mb8 mt8" (click)="surgeryBegin($event, item)" *ngIf="item.state && (item.state.value == 3 || item.state.value == 7) && surgeryConfigs.surgeryBegin == 1">即将开始</button>
  1664. <!-- 【是否开启手术即将开始通知】开启 -->
  1665. <button class="btn1 mr8 mb8 mt8" (click)="pickUpPatient($event, item)" *ngIf="item.state && item.state.value == 3">一键接患者</button>
  1666. <!-- 手术状态是【手术中】,并且【是否开通送回病房】开启 -->
  1667. <button class="btn1 mr8 mb8 mt8" (click)="sendWard($event, item)" *ngIf="item.patientDTO && surgeryConfigs && surgeryConfigs.remandClinical == 1 && item.state && item.state.value == 8">送回病房</button>
  1668. <!-- 手术状态是【手术中】,并且【是否开通送回苏醒室】开启 -->
  1669. <button class="btn1 mr8 mb8 mt8" (click)="sendAwakeningRoom($event, item)" *ngIf="item.patientDTO && surgeryConfigs && surgeryConfigs.remandRecovery == 1 && item.state && item.state.value == 8">送回苏醒间</button>
  1670. </td>
  1671. </tr>
  1672. </tbody>
  1673. </nz-table>
  1674. <div class="pagination">
  1675. <nz-pagination
  1676. [(nzPageIndex)]="surgeryPageIndex"
  1677. [(nzTotal)]="surgeryListLength"
  1678. [(nzPageSize)]="surgeryPageSize"
  1679. (nzPageIndexChange)="getSurgery()"
  1680. (nzPageSizeChange)="getSurgery()"
  1681. >
  1682. </nz-pagination>
  1683. </div>
  1684. </div>
  1685. </div>
  1686. </div>
  1687. <!-- 历史标本查询 -->
  1688. <div
  1689. *ngIf="checkedTableType == 'historySpecimen'"
  1690. style="flex: 1; height: 100%"
  1691. >
  1692. <div
  1693. class="searchBox display_flex align-items_center justify-content_space-between"
  1694. >
  1695. <div
  1696. class="left alignC display_flex justify-content_flex-center align-items_center"
  1697. >
  1698. <div>标本编码:</div>
  1699. <div>
  1700. <input
  1701. nz-input
  1702. placeholder="请输入标本编码"
  1703. [(ngModel)]="historySpecimenCodeSearchInp"
  1704. />
  1705. </div>
  1706. <div class="ml8">患者信息:</div>
  1707. <div>
  1708. <input
  1709. nz-input
  1710. placeholder="请输入患者信息"
  1711. [(ngModel)]="historySpecimenParentSearchInp"
  1712. />
  1713. </div>
  1714. </div>
  1715. <div class="btns">
  1716. <button
  1717. nz-button
  1718. nzType="primary"
  1719. nzGhost
  1720. (click)="getHistorySpecimen(true)"
  1721. >
  1722. 搜索
  1723. </button>
  1724. </div>
  1725. </div>
  1726. <div class="table">
  1727. <div class="box">
  1728. <nz-table
  1729. class="hospitalTable"
  1730. [nzData]="historySpecimenList"
  1731. nzSize="middle"
  1732. [nzShowPagination]="false"
  1733. [nzLoading]="hsLoading"
  1734. >
  1735. <thead>
  1736. <tr class="thead">
  1737. <th nzWidth="7%">序号</th>
  1738. <th nzWidth="8%">标本类型</th>
  1739. <th nzWidth="8%">状态</th>
  1740. <th nzWidth="10%">标本编码</th>
  1741. <th nzWidth="8%">患者姓名</th>
  1742. <th nzWidth="8%">床号</th>
  1743. <th nzWidth="12%">收取扫描时间</th>
  1744. <th nzWidth="8%">收取人</th>
  1745. <th nzWidth="10%">送达目标科室</th>
  1746. <th nzWidth="12%">送达到达时间</th>
  1747. <th nzWidth="9%"></th>
  1748. </tr>
  1749. </thead>
  1750. <tbody>
  1751. <tr
  1752. *ngFor="
  1753. let data of historySpecimenList;
  1754. let i = index
  1755. "
  1756. >
  1757. <td>{{ i + 1 }}</td>
  1758. <td>{{ data.stype ? data.stype.name : "-" }}</td>
  1759. <td>
  1760. {{ data.speState ? data.speState.name : "-" }}
  1761. </td>
  1762. <td>{{ data.scode || "-" }}</td>
  1763. <td>{{ data.patientName || "-" }}</td>
  1764. <td>{{ data.bedNum || "-" }}</td>
  1765. <td>{{ data.arriveTime || "-" }}</td>
  1766. <td>{{ data.receiverName || "-" }}</td>
  1767. <td>
  1768. {{
  1769. data.checkDept
  1770. ? deptDisplay == 2
  1771. ? data.checkDept.deptalias
  1772. : data.checkDept.dept
  1773. : "-"
  1774. }}
  1775. </td>
  1776. <td>{{ data.sendTime || "-" }}</td>
  1777. <td>
  1778. <button class="btn1 mr8 mb8 mt8" (click)="viewSpecimenHistory(data)">查看</button>
  1779. </td>
  1780. </tr>
  1781. </tbody>
  1782. </nz-table>
  1783. <div class="pagination">
  1784. <nz-pagination
  1785. [(nzPageIndex)]="historySpecimenPageIndex"
  1786. [(nzTotal)]="historySpecimenListLength"
  1787. [(nzPageSize)]="historySpecimenPageSize"
  1788. (nzPageIndexChange)="getHistorySpecimen()"
  1789. (nzPageSizeChange)="getHistorySpecimen()"
  1790. >
  1791. </nz-pagination>
  1792. </div>
  1793. </div>
  1794. </div>
  1795. </div>
  1796. <!-- 历史药单查询 -->
  1797. <div
  1798. *ngIf="checkedTableType == 'historyDrugsbag'"
  1799. style="flex: 1; height: 100%"
  1800. >
  1801. <div
  1802. class="searchBox display_flex align-items_center justify-content_space-between"
  1803. >
  1804. <div
  1805. class="left alignC display_flex justify-content_flex-center align-items_center"
  1806. >
  1807. <div>发药单号:</div>
  1808. <div>
  1809. <input
  1810. nz-input
  1811. placeholder="请输入发药单号"
  1812. [(ngModel)]="historyDrugsbagCodeSearchInp"
  1813. />
  1814. </div>
  1815. <!-- <div class="ml8">患者信息:</div>
  1816. <div>
  1817. <input nz-input placeholder="请输入患者信息" [(ngModel)]="historySpecimenParentSearchInp" />
  1818. </div> -->
  1819. </div>
  1820. <div class="btns">
  1821. <button
  1822. nz-button
  1823. nzType="primary"
  1824. nzGhost
  1825. (click)="getHistoryDrugsbag(true)"
  1826. >
  1827. 搜索
  1828. </button>
  1829. </div>
  1830. </div>
  1831. <div class="table">
  1832. <div class="box">
  1833. <nz-table
  1834. class="hospitalTable"
  1835. [nzData]="historyDrugsbagList"
  1836. nzSize="middle"
  1837. [nzShowPagination]="false"
  1838. [nzLoading]="hsDLoading"
  1839. >
  1840. <thead>
  1841. <tr class="thead">
  1842. <th nzWidth="7%">序号</th>
  1843. <th nzWidth="15%">药单单号</th>
  1844. <th nzWidth="18%">发药科室</th>
  1845. <th nzWidth="15%">申请时间</th>
  1846. <th nzWidth="15%">记账时间</th>
  1847. <th nzWidth="15%">状态</th>
  1848. <th nzWidth="15%">查看过程</th>
  1849. </tr>
  1850. </thead>
  1851. <tbody>
  1852. <tr
  1853. *ngFor="
  1854. let data of historyDrugsbagList;
  1855. let i = index
  1856. "
  1857. >
  1858. <td>{{ i + 1 }}</td>
  1859. <td>{{ data.packid || "-" }}</td>
  1860. <td>
  1861. {{
  1862. data.launch
  1863. ? deptDisplay == 2
  1864. ? data.launch.deptalias
  1865. : data.launch.dept
  1866. : "-"
  1867. }}
  1868. </td>
  1869. <td>{{ data.creatTime || "-" }}</td>
  1870. <td>{{ data.bagTime || "-" }}</td>
  1871. <td>
  1872. {{ data.drugsState ? data.drugsState.name : "-" }}
  1873. </td>
  1874. <td>
  1875. <button class="btn1 mr8 mb8 mt8" (click)="viewDrugsbagHistory(data)">查看过程</button>
  1876. </td>
  1877. </tr>
  1878. </tbody>
  1879. </nz-table>
  1880. <div class="pagination">
  1881. <nz-pagination
  1882. [(nzPageIndex)]="historyDrugsbagPageIndex"
  1883. [(nzTotal)]="historyDrugsbagListLength"
  1884. [(nzPageSize)]="historyDrugsbagPageSize"
  1885. (nzPageIndexChange)="getHistoryDrugsbag()"
  1886. (nzPageSizeChange)="getHistoryDrugsbag()"
  1887. >
  1888. </nz-pagination>
  1889. </div>
  1890. </div>
  1891. </div>
  1892. </div>
  1893. <!-- 快捷报修 -->
  1894. <div
  1895. *ngIf="checkedTableType == 'kjbx' && isShowBx && coopBtns.quickReportForRepair"
  1896. style="flex: 1; height: 100%; display: flex"
  1897. >
  1898. <div class="otherBox">
  1899. <div class="otherBoxInner">
  1900. <!-- 故障现象查询 -->
  1901. <div class="otherBox-nav" style="width: 30%">
  1902. <div class="otherBox-nav__head">
  1903. <input
  1904. nz-input
  1905. placeholder="请输入关键字"
  1906. [(ngModel)]="incidentSearch"
  1907. (ngModelChange)="incidentSearchChange()"
  1908. />
  1909. </div>
  1910. <overlay-scrollbars
  1911. #osComponentRef10
  1912. class="otherBox-nav__main"
  1913. [ngStyle]="{ height: '100%' }"
  1914. >
  1915. <div
  1916. class="otherBox-nav__mainInner"
  1917. *ngIf="!iLoading && incidentList.length > 0"
  1918. >
  1919. <div class="w100">
  1920. <div
  1921. class="otherBox-nav__mainItem"
  1922. *ngFor="let item of incidentList"
  1923. (click)="incidentClick(item)"
  1924. [ngClass]="{
  1925. active: selectIncidentId == item.id
  1926. }"
  1927. [title]="item.mutiCategory"
  1928. >
  1929. {{ item.mutiCategory }}
  1930. </div>
  1931. </div>
  1932. </div>
  1933. <div
  1934. class="otherBox-nav__mainInner noData"
  1935. *ngIf="!iLoading && incidentList.length == 0"
  1936. >
  1937. 暂无数据
  1938. </div>
  1939. <div
  1940. class="otherBox-nav__mainInner oLoading"
  1941. *ngIf="iLoading"
  1942. >
  1943. <img
  1944. src="../../../assets/images/loading.gif"
  1945. alt=""
  1946. />
  1947. <div>加载中...</div>
  1948. </div>
  1949. </overlay-scrollbars>
  1950. </div>
  1951. <form
  1952. nz-form
  1953. [formGroup]="bxForm"
  1954. (ngSubmit)="submitBxForm()"
  1955. class="bxForm bxFlex"
  1956. >
  1957. <!-- <nz-form-item>
  1958. <nz-form-label [nzSpan]="8" nzRequired nzFor="name"
  1959. >联系人</nz-form-label
  1960. >
  1961. <nz-form-control [nzSpan]="12" nzErrorTip="请填写联系人">
  1962. <input
  1963. type="text"
  1964. nz-input
  1965. formControlName="name"
  1966. placeholder="请填写联系人"
  1967. />
  1968. </nz-form-control>
  1969. </nz-form-item>
  1970. <nz-form-item>
  1971. <nz-form-label [nzSpan]="8" nzRequired nzFor="phone"
  1972. >联系人电话</nz-form-label
  1973. >
  1974. <nz-form-control
  1975. [nzSpan]="12"
  1976. nzErrorTip="请填写联系人电话"
  1977. >
  1978. <input
  1979. type="text"
  1980. nz-input
  1981. formControlName="phone"
  1982. placeholder="请填写联系人电话"
  1983. />
  1984. </nz-form-control>
  1985. </nz-form-item>
  1986. <nz-form-item>
  1987. <nz-form-label [nzSpan]="8" nzFor="hospital" nzRequired
  1988. >所属院区</nz-form-label
  1989. >
  1990. <nz-form-control [nzSpan]="12" nzErrorTip="请选择所属院区!">
  1991. <nz-select
  1992. formControlName="hospital"
  1993. nzPlaceHolder="请选择所属院区"
  1994. (ngModelChange)="getPlace($event)"
  1995. >
  1996. <nz-option
  1997. [nzValue]="area.id"
  1998. [nzLabel]="area.area"
  1999. *ngFor="let area of areas"
  2000. ></nz-option>
  2001. </nz-select>
  2002. </nz-form-control>
  2003. </nz-form-item>
  2004. <nz-form-item>
  2005. <nz-form-label [nzSpan]="8" nzFor="building" nzRequired
  2006. >楼栋</nz-form-label
  2007. >
  2008. <nz-form-control [nzSpan]="12" nzErrorTip="请选择楼栋!">
  2009. <nz-select
  2010. formControlName="building"
  2011. nzPlaceHolder="请选择楼栋"
  2012. >
  2013. <nz-option
  2014. [nzValue]="place.id"
  2015. [nzLabel]="place.place"
  2016. *ngFor="let place of places"
  2017. >
  2018. </nz-option>
  2019. </nz-select>
  2020. </nz-form-control>
  2021. </nz-form-item>
  2022. <nz-form-item>
  2023. <nz-form-label [nzSpan]="8" nzRequired
  2024. >详细地址</nz-form-label
  2025. >
  2026. <nz-form-control [nzSpan]="12" nzErrorTip="请填写详细地址">
  2027. <textarea
  2028. formControlName="address"
  2029. nz-input
  2030. rows="2"
  2031. placeholder="请填写详细地址"
  2032. ></textarea>
  2033. </nz-form-control>
  2034. </nz-form-item> -->
  2035. <nz-form-item>
  2036. <nz-form-label [nzSpan]="8" nzRequired
  2037. >报修内容</nz-form-label
  2038. >
  2039. <nz-form-control
  2040. [nzSpan]="12"
  2041. nzErrorTip="请填写报修内容"
  2042. >
  2043. <textarea
  2044. formControlName="content"
  2045. nz-input
  2046. rows="2"
  2047. placeholder="请填写报修内容"
  2048. ></textarea>
  2049. </nz-form-control>
  2050. </nz-form-item>
  2051. <nz-form-item>
  2052. <nz-form-label
  2053. [nzSpan]="8"
  2054. style="visibility: hidden"
  2055. ></nz-form-label>
  2056. <nz-form-control [nzSpan]="12">
  2057. <button
  2058. nz-button
  2059. nzType="primary"
  2060. [nzLoading]="bxLoading"
  2061. >
  2062. 提交
  2063. </button>
  2064. </nz-form-control>
  2065. </nz-form-item>
  2066. </form>
  2067. </div>
  2068. </div>
  2069. <!-- <nz-table class="bxFlex bxTable" [nzData]="quickBxlbList" nzSize="small" [nzShowPagination]="false"
  2070. [nzLoading]="quickBxlbLoading">
  2071. <tbody>
  2072. <tr (click)="showBxModal(data,'您的报修为“'+data.content+'” 是否确认报修?')" *ngFor="
  2073. let data of quickBxlbList;
  2074. let i = index
  2075. ">
  2076. <td>{{ data.content||'无' }}</td>
  2077. </tr>
  2078. </tbody>
  2079. </nz-table> -->
  2080. </div>
  2081. <!-- 报修列表 -->
  2082. <div
  2083. *ngIf="checkedTableType == 'bxlb' && isShowBx && coopBtns.repairList"
  2084. style="flex: 1; height: 100%"
  2085. >
  2086. <div
  2087. class="searchBox display_flex align-items_center justify-content_space-between"
  2088. >
  2089. <div
  2090. class="left alignC display_flex justify-content_flex-center align-items_center"
  2091. >
  2092. <div>状态:</div>
  2093. <div>
  2094. <nz-select
  2095. style="width: 160px;"
  2096. class="formItem"
  2097. [nzDropdownMatchSelectWidth]="false"
  2098. [nzShowSearch]="false"
  2099. nzPlaceHolder="请选择状态"
  2100. [(ngModel)]="incidentStateId"
  2101. >
  2102. <nz-option
  2103. [nzLabel]="data.name"
  2104. [nzValue]="data.id"
  2105. *ngFor="let data of incidentStateList"
  2106. ></nz-option>
  2107. </nz-select>
  2108. </div>
  2109. </div>
  2110. <div class="btns">
  2111. <button
  2112. nz-button
  2113. nzType="primary"
  2114. nzGhost
  2115. (click)="getBxlb(true)"
  2116. >
  2117. 搜索
  2118. </button>
  2119. </div>
  2120. </div>
  2121. <div class="table">
  2122. <div class="box">
  2123. <nz-table
  2124. class="hospitalTable"
  2125. [nzData]="bxlbList"
  2126. nzSize="middle"
  2127. [nzShowPagination]="false"
  2128. [nzLoading]="bxlbLoading"
  2129. >
  2130. <thead>
  2131. <tr class="thead">
  2132. <th nzWidth="5%">序号</th>
  2133. <th nzWidth="19%">报修内容</th>
  2134. <th nzWidth="19%">报修时间</th>
  2135. <th nzWidth="19%">状态</th>
  2136. <th nzWidth="19%">维修人</th>
  2137. <th nzWidth="19%"></th>
  2138. </tr>
  2139. </thead>
  2140. <tbody>
  2141. <tr *ngFor="let data of bxlbList; let i = index">
  2142. <td>{{ i + 1 }}</td>
  2143. <td>{{ data.description || "无" }}</td>
  2144. <td>
  2145. {{ data.startDate | date: "yyyy-MM-dd HH:mm" }}
  2146. </td>
  2147. <td>{{ data.state?data.state.name:'无' }}</td>
  2148. <td>
  2149. {{
  2150. data.incident
  2151. ? data.incident.handlingPersonnelUser
  2152. ? data.incident.handlingPersonnelUser.name + (data.incident.handlingPersonnelUser.phone?'('+ data.incident.handlingPersonnelUser.phone +')':'')
  2153. : "无"
  2154. : "无"
  2155. }}
  2156. </td>
  2157. <td>
  2158. <!-- <button (click)="viewBx(data)">查看</button> -->
  2159. <button class="btn1 mr8 mb8 mt8" (click)="detailBx(data)">查看</button>
  2160. <button class="btn1 mr8 mb8 mt8" (click)="showAppraiseBx(data.id)" *ngIf="data.state.value == 'close' && !data.wxdegree">评价</button>
  2161. </td>
  2162. </tr>
  2163. </tbody>
  2164. </nz-table>
  2165. <div class="pagination">
  2166. <nz-pagination
  2167. [(nzPageIndex)]="bxlbPageIndex"
  2168. [(nzTotal)]="bxlbListLength"
  2169. [(nzPageSize)]="bxlbPageSize"
  2170. (nzPageIndexChange)="getBxlb(bxlbPageIndex)"
  2171. (nzPageSizeChange)="getBxlb(bxlbPageIndex)"
  2172. >
  2173. </nz-pagination>
  2174. </div>
  2175. </div>
  2176. </div>
  2177. </div>
  2178. </div>
  2179. <div nz-col nzSpan="7" class="orders">
  2180. <div
  2181. class="orderTit display_flex justify-content_space-between align-items_center"
  2182. >
  2183. <span>工单列表<b style="font-size: 12px">({{ orderListTime }}秒)</b></span>
  2184. <div>
  2185. <nz-select
  2186. style="width: 100px"
  2187. [(ngModel)]="orderStateSelected"
  2188. (ngModelChange)="changeOrderState($event)"
  2189. nzPlaceHolder="请选择工单状态"
  2190. >
  2191. <nz-option nzValue="-1" nzLabel="全部"></nz-option>
  2192. <nz-option nzValue="1" nzLabel="执行中"></nz-option>
  2193. <nz-option nzValue="2" nzLabel="待评价"></nz-option>
  2194. </nz-select>
  2195. <nz-select
  2196. class="ml8"
  2197. style="width: 100px"
  2198. [(ngModel)]="orderSelected"
  2199. (ngModelChange)="changeOrderSel(orderSelected)"
  2200. nzPlaceHolder="请选择任务类型"
  2201. >
  2202. <nz-option nzValue="-1" nzLabel="全部"></nz-option>
  2203. <nz-option
  2204. *ngFor="let item of orderSelectList"
  2205. [nzValue]="item.id"
  2206. [nzLabel]="item.name"
  2207. >
  2208. </nz-option>
  2209. </nz-select>
  2210. </div>
  2211. </div>
  2212. <div
  2213. class="loading display_flex align-items_center justify-content_flex-center"
  2214. *ngIf="OLoading"
  2215. >
  2216. <div>
  2217. <img src="../../assets/images/loading.gif" alt="" />
  2218. <div>加载中...</div>
  2219. </div>
  2220. </div>
  2221. <div
  2222. class="loading none display_flex align-items_center justify-content_flex-center"
  2223. *ngIf="orderLength == 0 && !OLoading"
  2224. >
  2225. <div>
  2226. <div>暂无数据</div>
  2227. </div>
  2228. </div>
  2229. <div class="orderList" *ngIf="orderLength != 0 && !OLoading">
  2230. <overlay-scrollbars #osComponentRef1 class="box">
  2231. <div class="orderLisBox">
  2232. <div class="orderLis">
  2233. <div
  2234. class="loading display_flex align-items_center justify-content_flex-center"
  2235. *ngIf="OLoading"
  2236. >
  2237. <div>
  2238. <img src="../../assets/images/loading.gif" alt="" />
  2239. <div>加载中...</div>
  2240. </div>
  2241. </div>
  2242. <div
  2243. class="orderItem borderB"
  2244. *ngFor="let item of orderList"
  2245. >
  2246. <div class="info">
  2247. <div class="row" nz-row>
  2248. <div nz-col nzSpan="12" class="col txtL">
  2249. {{
  2250. item.isHalfInspect === 1
  2251. ? "半程陪检"
  2252. : item.taskType.taskName
  2253. }}
  2254. <ng-container
  2255. *ngIf="
  2256. item.taskType.associationType.value ==
  2257. 'drugsBag' && item.drugs
  2258. "
  2259. >
  2260. ({{ item.drugs.packid }})
  2261. </ng-container>
  2262. <ng-container *ngIf="item.goodsRemark"
  2263. >-{{ item.goodsRemark }}</ng-container
  2264. >
  2265. <span
  2266. *ngIf="
  2267. item.patient &&
  2268. (item.taskType.associationType.value ==
  2269. 'patientTransport' ||
  2270. item.taskType.associationType.value ==
  2271. 'inspect')
  2272. "
  2273. >
  2274. ({{ item.patient.patientName }})
  2275. </span>
  2276. </div>
  2277. <div nz-col nzSpan="12" class="col txtR">
  2278. {{ item.gdState.name }}
  2279. </div>
  2280. </div>
  2281. <div class="row" nz-row>
  2282. <div nz-col nzSpan="24" class="col txtL">
  2283. {{item.workOrderRemark}}
  2284. </div>
  2285. </div>
  2286. <div class="row" nz-row>
  2287. <!-- <div nz-col nzSpan="12" class="col txtL"></div> -->
  2288. <div nz-col nzSpan="12" class="col txtL">
  2289. <ng-container
  2290. *ngIf="
  2291. item.taskType.associationType.value ==
  2292. 'drugsBag' && item.startDept
  2293. "
  2294. >
  2295. {{
  2296. deptDisplay == 2
  2297. ? item.startDept.deptalias
  2298. : item.startDept.dept
  2299. }}
  2300. </ng-container>
  2301. </div>
  2302. <div
  2303. *ngIf="item.showCreateTime"
  2304. nz-col
  2305. nzSpan="12"
  2306. class="col txtR"
  2307. >
  2308. {{ item.showCreateTime }}
  2309. </div>
  2310. <div
  2311. *ngIf="item.yyjdTime && item.gdState.value == 11"
  2312. nz-col
  2313. nzSpan="12"
  2314. class="col txtR"
  2315. >
  2316. {{ item.yyjdTime | date: "MM-dd HH:mm" }}
  2317. </div>
  2318. </div>
  2319. <div class="row" nz-row>
  2320. <div nz-col nzSpan="12" class="col txtL">
  2321. <span *ngIf="item.worker"
  2322. >{{ item.worker.name }}
  2323. {{
  2324. item.worker.phone
  2325. ? "(" + item.worker.phone + ")"
  2326. : ""
  2327. }}</span
  2328. >
  2329. </div>
  2330. <div
  2331. nz-col
  2332. nzSpan="12"
  2333. class="col txtR toDetail"
  2334. (click)="openDetails(item)"
  2335. >
  2336. <span>查看详情>></span>
  2337. </div>
  2338. </div>
  2339. </div>
  2340. <div class="process">
  2341. <div class="box display_flex">
  2342. <div class="steps" *ngFor="let step of item.record">
  2343. <div class="step">
  2344. <div class="txt">
  2345. <i
  2346. [ngClass]="{
  2347. icon_transport: true,
  2348. 'transport-icon_liucheng': true,
  2349. green:
  2350. step.record &&
  2351. step.record[0] &&
  2352. step.record[0].operationTime
  2353. }"
  2354. ></i>
  2355. <p>{{ step.operationName }}</p>
  2356. <p
  2357. class="time"
  2358. *ngIf="
  2359. step.record &&
  2360. step.record[0] &&
  2361. step.record[0].operationTime
  2362. "
  2363. >
  2364. {{
  2365. step.record[0].operationTime
  2366. | date: "MM-dd HH:mm"
  2367. }}
  2368. </p>
  2369. </div>
  2370. <div class="line"></div>
  2371. </div>
  2372. </div>
  2373. </div>
  2374. </div>
  2375. <div class="btns display_flex">
  2376. <div
  2377. class="btn flex_1 appraise"
  2378. *ngIf="item.gdState.id == 73"
  2379. (click)="showAppraise(item.id)"
  2380. >
  2381. 评价
  2382. </div>
  2383. <div
  2384. *ngIf="isAssign && item.gdState.value == 2"
  2385. class="btn flex_1 revocation borderR primary"
  2386. (click)="allotWorker(item.id, item.gdState.id)"
  2387. >
  2388. 指派
  2389. </div>
  2390. <div
  2391. *ngIf="isAssign && item.gdState.value == 4"
  2392. class="btn flex_1 revocation borderR primary"
  2393. (click)="allotWorker(item.id, item.gdState.id, 1)"
  2394. >
  2395. 指派
  2396. </div>
  2397. <div
  2398. *ngIf="
  2399. item.gdState.id == 69 ||
  2400. item.gdState.id == 70 ||
  2401. item.gdState.id == 71 ||
  2402. item.gdState.id == 433
  2403. "
  2404. class="btn flex_1 revocation borderR"
  2405. (click)="openRecallModal(item.id)"
  2406. >
  2407. 撤销
  2408. </div>
  2409. <div
  2410. *ngIf="item.gdState.id == 433"
  2411. class="btn flex_1 revocation borderR"
  2412. (click)="openExecModal(item)"
  2413. >
  2414. 立即执行
  2415. </div>
  2416. <div
  2417. *ngIf="
  2418. (item.gdState.id == 69 ||
  2419. item.gdState.id == 71) &&
  2420. item.taskType.allowUrgent == 1 &&
  2421. !item.urgentDetails
  2422. "
  2423. class="btn flex_1 urgent"
  2424. (click)="showJiaji(item.id)"
  2425. >
  2426. 加急
  2427. </div>
  2428. </div>
  2429. <img
  2430. src="../../assets/images/icon_ji.png"
  2431. class="icon_ji"
  2432. *ngIf="
  2433. item.emergencyType && item.emergencyType.id == 300
  2434. "
  2435. />
  2436. <img
  2437. src="../../assets/images/icon_jiaji.png"
  2438. class="icon_ji"
  2439. *ngIf="
  2440. item.emergencyType && item.emergencyType.id == 301
  2441. "
  2442. />
  2443. </div>
  2444. </div>
  2445. </div>
  2446. </overlay-scrollbars>
  2447. <!-- 翻页 -->
  2448. <div class="pageing">
  2449. <div>
  2450. <nz-pagination
  2451. [(nzPageIndex)]="orderIdx"
  2452. [(nzTotal)]="orderLength"
  2453. (nzPageIndexChange)="getOrderList()"
  2454. [nzPageSize]="10"
  2455. nzSimple
  2456. >
  2457. </nz-pagination>
  2458. </div>
  2459. </div>
  2460. </div>
  2461. </div>
  2462. </div>
  2463. </div>
  2464. </nz-content>
  2465. </nz-layout>
  2466. </nz-layout>
  2467. </div>
  2468. <!-- 返回系统按钮 -->
  2469. <!-- 右侧悬浮框 -->
  2470. <!-- <div id="fixedMenu" class="fixed" *ngIf="mainRole">
  2471. <div class="right">
  2472. <div class="fixedMenu hujiaozhongxin">
  2473. <div class="menuItems">
  2474. <div class="item">快捷菜单</div>
  2475. </div>
  2476. </div>
  2477. <div class="fixedMenu">
  2478. <div class="menuItems">
  2479. <div class="others" [ngStyle]="{'height':showLastItems?(mainRole?(35*2)+'px':(35*1)+'px'):0}">
  2480. <div [ngClass]="{'item':true,'checked':fixedTab=='back'}" *ngIf="mainRole"
  2481. (click)="checkFixedTab('toSystem')">
  2482. 返回系统
  2483. </div>
  2484. </div>
  2485. </div>
  2486. <div class="arrow" *ngIf="!showLastItems" (click)="fixedMenuXiala()">
  2487. <i class="icon_transport transport-xiala2-01"></i>
  2488. </div>
  2489. <div class="arrow" *ngIf="showLastItems" (click)="fixedMenuShangla()">
  2490. <i class="icon_transport transport-shangla-"></i>
  2491. </div>
  2492. </div>
  2493. </div>
  2494. <div *ngIf="showLastItems&&fixedTab!=''" (click)="fixedMenuShangla()" class="fixedMark">
  2495. </div>
  2496. </div> -->
  2497. <!-- 患者信息一键建单模态框 -->
  2498. <div
  2499. class="save display_flex align-items_center justify-content_flex-center patient"
  2500. *ngIf="patientModal"
  2501. >
  2502. <div class="modalBody" style="width: 500px">
  2503. <div class="title">
  2504. 患者送检<i
  2505. class="icon_transport transport-guanbi"
  2506. (click)="hidePatientOrder()"
  2507. ></i>
  2508. </div>
  2509. <overlay-scrollbars
  2510. #osComponentRef7
  2511. class="content"
  2512. style="max-height: 80vh"
  2513. >
  2514. <div class="jiTit borderB" *ngIf="checkedShowMsg.msg">
  2515. 提示:您即将创建<b style="color: red">{{ patientMsg.patientName }}</b
  2516. >患者检查,{{ checkedShowMsg.msg }}
  2517. </div>
  2518. <div class="jiTit borderB" *ngIf="!checkedShowMsg.msg">
  2519. 提示:您即将创建<b style="color: red">{{ patientMsg.patientName }}</b
  2520. >患者检查
  2521. </div>
  2522. <div class="jiTit borderB jiTitB">
  2523. 如患者无预约检查无法进行“当天预约检查时”,可使用“特殊情况送检”进行建单。
  2524. </div>
  2525. <div>
  2526. <form nz-form [formGroup]="patientForm" class="patientForm">
  2527. <nz-form-item class="datesControl">
  2528. <nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="checkedType"
  2529. >任务类型</nz-form-label
  2530. >
  2531. <nz-form-control nzErrorTip="请选择任务类型!" class="checkedType">
  2532. <nz-radio-group
  2533. class="radioGroup"
  2534. formControlName="checkedType"
  2535. (ngModelChange)="changeCheckedType()"
  2536. >
  2537. <label
  2538. *ngFor="let item of checkTypeLis"
  2539. nz-radio
  2540. [nzValue]="item.id"
  2541. >{{ item.taskName }}</label
  2542. >
  2543. </nz-radio-group>
  2544. </nz-form-control>
  2545. </nz-form-item>
  2546. <ng-container *ngIf="cLoading">
  2547. <div style="text-align: center">
  2548. <img src="../../../assets/images/loading.gif" alt="" />
  2549. <div>加载中...</div>
  2550. </div>
  2551. </ng-container>
  2552. <ng-container *ngIf="!cLoading">
  2553. <!-- 检查 -->
  2554. <nz-form-item *ngIf="checkedShowMsg.status == 200">
  2555. <nz-form-label [nzSm]="24" [nzXs]="24" nzFor="linkCheck"
  2556. >关联的检查</nz-form-label
  2557. >
  2558. <nz-form-control class="datesGroup" *ngIf="linkCheckLis.length">
  2559. <nz-checkbox-wrapper
  2560. class="linkCheckCheck"
  2561. ngDefaultControl
  2562. formControlName="linkCheck"
  2563. (nzOnChange)="linkCheckLisChange($event)"
  2564. >
  2565. <div nz-row *ngFor="let item of linkCheckLis">
  2566. <div nz-col nzSpan="24">
  2567. <label nz-checkbox [nzValue]="item">{{
  2568. item.label
  2569. }}</label>
  2570. <i
  2571. class="icon_transport transport-zu1468 priority"
  2572. *ngIf="item.priority === 1 || item.priority === '1'"
  2573. ></i>
  2574. </div>
  2575. </div>
  2576. </nz-checkbox-wrapper>
  2577. <div
  2578. class="red"
  2579. style="line-height: normal; font-weight: bold"
  2580. *ngIf="currentTasktype.isMoreDept === 0 && isInspects"
  2581. >
  2582. 您选择的检查包含了多个科室,请您只包含一个科室。
  2583. </div>
  2584. </nz-form-control>
  2585. <div *ngIf="!linkCheckLis.length">暂无关联的检查</div>
  2586. </nz-form-item>
  2587. <div
  2588. class="pos"
  2589. *ngIf="
  2590. (currentTasktype.associationType.value === 'patientTransport' &&
  2591. appointmentZyBuildFlag == 1) ||
  2592. (currentTasktype.associationType.value === 'inspect' &&
  2593. appointmentBuildFlag == 1)
  2594. "
  2595. >
  2596. <!-- 需要预约检查 -->
  2597. <nz-form-item class="pos-item">
  2598. <nz-form-control>
  2599. <label
  2600. nz-checkbox
  2601. [nzDisabled]="
  2602. (!linkCheckLisTrue &&
  2603. currentTasktype.associationType.value === 'inspect') ||
  2604. (linkCheckLisTrue &&
  2605. allowUrgent == 1 &&
  2606. currentTasktype.associationType.value === 'inspect') ||
  2607. (allowUrgent == 1 &&
  2608. currentTasktype.associationType.value ===
  2609. 'patientTransport')
  2610. "
  2611. [(ngModel)]="isYyInspect"
  2612. (ngModelChange)="yyInspectChange($event)"
  2613. [ngModelOptions]="{ standalone: true }"
  2614. style="font-weight: bold"
  2615. >需要预约检查</label
  2616. >
  2617. </nz-form-control>
  2618. </nz-form-item>
  2619. <!-- 预约建单时间-患者其他服务 -->
  2620. <nz-form-item
  2621. class="yyTime"
  2622. [ngClass]="{
  2623. yyTimeError: (!yyTimeZy || !yyDateZy) && clickYYZyFlag
  2624. }"
  2625. *ngIf="
  2626. currentTasktype.associationType.value === 'patientTransport'
  2627. "
  2628. >
  2629. <nz-form-label [nzSm]="24" [nzXs]="24"
  2630. >预约建单时间</nz-form-label
  2631. >
  2632. <nz-form-control [nzSm]="24" [nzXs]="24">
  2633. <nz-date-picker
  2634. [nzDisabled]="!isYyInspect"
  2635. [(ngModel)]="yyDateZy"
  2636. (ngModelChange)="yyDateChange($event)"
  2637. [ngModelOptions]="{ standalone: true }"
  2638. [nzAllowClear]="false"
  2639. [nzDisabledDate]="disabledyyDateZy"
  2640. [nzShowToday]="false"
  2641. ></nz-date-picker>
  2642. <nz-time-picker
  2643. [nzDisabled]="!isYyInspect || !yyDateZy"
  2644. class="ml8"
  2645. nzFormat="HH:mm"
  2646. [nzMinuteStep]="inspectAndPatientTransportConfig.timeMod"
  2647. [nzSecondStep]="60"
  2648. [(ngModel)]="yyTimeZy"
  2649. (ngModelChange)="yyTimeZyChange($event)"
  2650. [ngModelOptions]="{ standalone: true }"
  2651. [nzDisabledHours]="disabledHours"
  2652. [nzDisabledMinutes]="disabledMinutes"
  2653. [nzAllowEmpty]="false"
  2654. >
  2655. </nz-time-picker>
  2656. <button
  2657. [disabled]="!isYyInspect || (isYyInspect && !yyDateZy)"
  2658. nz-button
  2659. nzType="primary"
  2660. class="ml8"
  2661. (click)="nextDayZy()"
  2662. >
  2663. 下一日
  2664. </button>
  2665. </nz-form-control>
  2666. <div
  2667. class="red w100"
  2668. *ngIf="(!yyTimeZy || !yyDateZy) && clickYYZyFlag"
  2669. >
  2670. 请填写预约建单时间!
  2671. </div>
  2672. <div class="red">
  2673. 请您填写实际预约检查时间,系统会根据时间安排人员进行陪检!
  2674. </div>
  2675. </nz-form-item>
  2676. <!-- 预约建单时间 -->
  2677. <nz-form-item
  2678. class="yyTime"
  2679. [ngClass]="{ yyTimeError: (!yyTime || !yyDate) && clickYYFlag }"
  2680. *ngIf="currentTasktype.associationType.value === 'inspect'"
  2681. >
  2682. <nz-form-label [nzSm]="24" [nzXs]="24"
  2683. >预约建单时间</nz-form-label
  2684. >
  2685. <nz-form-control [nzSm]="24" [nzXs]="24">
  2686. <nz-date-picker
  2687. [nzDisabled]="!isYyInspect"
  2688. [(ngModel)]="yyDate"
  2689. (ngModelChange)="yyDateChange($event)"
  2690. [ngModelOptions]="{ standalone: true }"
  2691. [nzAllowClear]="false"
  2692. [nzDisabledDate]="disabledyyDate"
  2693. [nzShowToday]="false"
  2694. >
  2695. </nz-date-picker>
  2696. <nz-time-picker
  2697. [nzDisabled]="!isYyInspect || !yyDate"
  2698. class="ml8"
  2699. nzFormat="HH:mm"
  2700. [nzMinuteStep]="inspectAndPatientTransportConfig.timeMod"
  2701. [nzSecondStep]="60"
  2702. [(ngModel)]="yyTime"
  2703. (ngModelChange)="yyTimeChange($event)"
  2704. [ngModelOptions]="{ standalone: true }"
  2705. [nzDisabledHours]="disabledHours"
  2706. [nzDisabledMinutes]="disabledMinutes"
  2707. [nzAllowEmpty]="false"
  2708. >
  2709. </nz-time-picker>
  2710. <button
  2711. [disabled]="!isYyInspect || (isYyInspect && !yyDate)"
  2712. nz-button
  2713. nzType="primary"
  2714. class="ml8"
  2715. (click)="nextDay()"
  2716. >
  2717. 下一日
  2718. </button>
  2719. </nz-form-control>
  2720. <div
  2721. class="red w100"
  2722. *ngIf="(!yyTime || !yyDate) && clickYYFlag"
  2723. >
  2724. 请填写预约建单时间!
  2725. </div>
  2726. <div class="red">
  2727. 请您填写实际预约检查时间,系统会根据时间安排人员进行陪检!
  2728. </div>
  2729. </nz-form-item>
  2730. </div>
  2731. <!-- 100009 科室任务类型状态码未配置 -->
  2732. <nz-form-item
  2733. *ngIf="
  2734. checkedShowMsg.status != 200 && checkedShowMsg.status == 100009
  2735. "
  2736. >
  2737. <div class="txtC">{{ checkedShowMsg.msg }}</div>
  2738. </nz-form-item>
  2739. <!-- 100015 (护士端一键建单展策略)起点科室和终点科室下拉展示 -->
  2740. <nz-form-item
  2741. *ngIf="
  2742. checkedShowMsg.status != 200 &&
  2743. (checkedShowMsg.status == 100015 ||
  2744. checkedShowMsg.status == 100013)
  2745. "
  2746. >
  2747. <nz-form-label
  2748. [nzSm]="6"
  2749. [nzXs]="24"
  2750. nzRequired
  2751. nzFor="originOffice"
  2752. >起点科室</nz-form-label
  2753. >
  2754. <nz-form-control nzErrorTip="请选择起点科室!">
  2755. <nz-select
  2756. class="w100"
  2757. formControlName="originOffice"
  2758. [nzDropdownMatchSelectWidth]="false"
  2759. nzServerSearch
  2760. nzShowSearch
  2761. (nzOnSearch)="searchDept('start', checkedShowMsg, $event)"
  2762. nzPlaceHolder="请选择起点科室"
  2763. >
  2764. <ng-container
  2765. *ngFor="let option of checkedShowMsg.start.start.list"
  2766. >
  2767. <nz-option
  2768. *ngIf="true"
  2769. [nzLabel]="
  2770. deptDisplay == 2 ? option.deptalias : option.dept
  2771. "
  2772. [nzValue]="option.id"
  2773. ></nz-option>
  2774. </ng-container>
  2775. <nz-option *ngIf="false" nzDisabled nzCustomContent>
  2776. <i nz-icon nzType="loading" class="loading-icon"></i>
  2777. 搜索中...
  2778. </nz-option>
  2779. </nz-select>
  2780. </nz-form-control>
  2781. </nz-form-item>
  2782. <!-- 100014 (护士端一键建单展示策略)取终点科室和msg 值展示 -->
  2783. <nz-form-item
  2784. *ngIf="
  2785. checkedShowMsg.status != 200 &&
  2786. (checkedShowMsg.status == 100014 ||
  2787. checkedShowMsg.status == 100015)
  2788. "
  2789. >
  2790. <nz-form-label
  2791. [nzSm]="6"
  2792. [nzXs]="24"
  2793. nzRequired
  2794. nzFor="targetOffice"
  2795. >目标科室</nz-form-label
  2796. >
  2797. <nz-form-control nzErrorTip="请选择目标科室!">
  2798. <nz-select
  2799. class="w100"
  2800. formControlName="targetOffice"
  2801. [nzDropdownMatchSelectWidth]="false"
  2802. nzServerSearch
  2803. nzShowSearch
  2804. (nzOnSearch)="searchDept('target', checkedShowMsg, $event)"
  2805. nzPlaceHolder="请选择目标科室"
  2806. >
  2807. <ng-container
  2808. *ngFor="let option of checkedShowMsg.end.end.list"
  2809. >
  2810. <nz-option
  2811. *ngIf="true"
  2812. [nzLabel]="
  2813. deptDisplay == 2 ? option.deptalias : option.dept
  2814. "
  2815. [nzValue]="option.id"
  2816. ></nz-option>
  2817. </ng-container>
  2818. <nz-option *ngIf="false" nzDisabled nzCustomContent>
  2819. <i nz-icon nzType="loading" class="loading-icon"></i>
  2820. 搜索中...
  2821. </nz-option>
  2822. </nz-select>
  2823. </nz-form-control>
  2824. </nz-form-item>
  2825. <!-- 自动送回 -->
  2826. <nz-form-item
  2827. *ngIf="
  2828. checkedShowMsg.status != 200 && checkedShowMsg.isRemand == 1
  2829. "
  2830. >
  2831. <nz-form-control>
  2832. <label
  2833. nz-checkbox
  2834. [(ngModel)]="isRemand"
  2835. [ngModelOptions]="{ standalone: true }"
  2836. >自动送回</label
  2837. >
  2838. </nz-form-control>
  2839. </nz-form-item>
  2840. <!-- 工单备注 -->
  2841. <!-- <div *ngIf="isRemarks">
  2842. <p class="mt8 mb8">工单备注:</p>
  2843. <textarea
  2844. nz-input
  2845. [placeholder]="workOrderRemarkTips1"
  2846. [nzAutosize]="{ minRows: 3, maxRows: 5 }"
  2847. maxlength="100"
  2848. [(ngModel)]="workOrderRemark1"
  2849. #remarksEle1
  2850. ></textarea>
  2851. <p class="mt8 mb8" *ngIf="customRemarks1.length">快捷输入:</p>
  2852. <div *ngIf="customRemarks1.length">
  2853. <span
  2854. class="addRemarks"
  2855. *ngFor="let item of customRemarks1"
  2856. (click)="addRemarks1(item)"
  2857. >【{{ item }}】</span
  2858. >
  2859. </div>
  2860. <p class="mt8 mb8" *ngIf="historyCustomRemarks1.length">历史输入:</p>
  2861. <div *ngIf="historyCustomRemarks1.length">
  2862. <span
  2863. class="addRemarks"
  2864. *ngFor="let item of historyCustomRemarks1"
  2865. (click)="addRemarks1(item)"
  2866. >【{{ item }}】</span
  2867. >
  2868. </div>
  2869. </div> -->
  2870. <!-- 工单备注 -->
  2871. <ng-container *ngIf="isRemarks">
  2872. <nz-form-item>
  2873. <!-- <p class="mt8 mb8" *ngIf="customRemarks2.length">快捷输入:</p>
  2874. <div *ngIf="customRemarks2.length">
  2875. <span
  2876. class="addRemarks"
  2877. *ngFor="let item of customRemarks2"
  2878. (click)="addRemarks2(item)"
  2879. >【{{ item }}】</span
  2880. >
  2881. </div> -->
  2882. <!-- <p class="mt8 mb8" *ngIf="historyCustomRemarks2.length">历史输入:</p>
  2883. <div *ngIf="historyCustomRemarks2.length">
  2884. <span
  2885. class="addRemarks"
  2886. *ngFor="let item of historyCustomRemarks2"
  2887. (click)="addRemarks2(item)"
  2888. >【{{ item }}】</span
  2889. >
  2890. </div> -->
  2891. <div class="display_flex align-items_center">
  2892. <nz-form-label [nzSm]="6" [nzXs]="24" nzFor="workOrderRemark2" class="mt8 mb8">工单备注</nz-form-label>
  2893. <div *ngIf="customRemarks2.length" style="word-break: break-all;">
  2894. <span class="addRemarks" *ngFor="let item of customRemarks2" (click)="addRemarks2(item)">【{{ item }}】</span>
  2895. </div>
  2896. </div>
  2897. <nz-form-control>
  2898. <textarea
  2899. nz-input
  2900. [placeholder]="workOrderRemarkTips2"
  2901. [nzAutosize]="{ minRows: 3, maxRows: 5 }"
  2902. maxlength="100"
  2903. formControlName="workOrderRemark2"
  2904. [(ngModel)]="workOrderRemark2"
  2905. #remarksEle2
  2906. ></textarea>
  2907. </nz-form-control>
  2908. </nz-form-item>
  2909. </ng-container>
  2910. <!-- 携带设备 -->
  2911. <nz-form-item *ngIf="!isRemarks && goodsLis.length">
  2912. <nz-form-label [nzSm]="6" [nzXs]="24" nzFor="goods" class="goods"
  2913. >携带设备</nz-form-label
  2914. >
  2915. <nz-form-control>
  2916. <nz-checkbox-group
  2917. formControlName="goods"
  2918. [(ngModel)]="goodsLis"
  2919. >
  2920. </nz-checkbox-group>
  2921. </nz-form-control>
  2922. </nz-form-item>
  2923. <!-- 是否加急 -->
  2924. <nz-form-item *ngIf="current_allowUrgent">
  2925. <nz-form-label
  2926. [nzSm]="6"
  2927. [nzXs]="24"
  2928. nzFor="allowUrgent"
  2929. class="goods"
  2930. >是否加急</nz-form-label
  2931. >
  2932. <nz-form-control>
  2933. <nz-radio-group
  2934. [(ngModel)]="allowUrgent"
  2935. (ngModelChange)="allowUrgentChange($event)"
  2936. formControlName="allowUrgent"
  2937. >
  2938. <label nz-radio nzValue="1">是</label>
  2939. <label nz-radio nzValue="0">否</label>
  2940. </nz-radio-group>
  2941. </nz-form-control>
  2942. </nz-form-item>
  2943. <!-- 加急原因 -->
  2944. <nz-form-item *ngIf="current_allowUrgent && allowUrgent == 1">
  2945. <nz-form-label
  2946. [nzSm]="6"
  2947. [nzXs]="24"
  2948. nzRequired
  2949. nzFor="urgentReason"
  2950. class="goods"
  2951. >加急原因</nz-form-label
  2952. >
  2953. <nz-form-control>
  2954. <textarea
  2955. rows="4"
  2956. placeholder="请输入加急原因"
  2957. nz-input
  2958. [(ngModel)]="urgentReason"
  2959. formControlName="urgentReason"
  2960. ></textarea>
  2961. </nz-form-control>
  2962. </nz-form-item>
  2963. </ng-container>
  2964. </form>
  2965. </div>
  2966. </overlay-scrollbars>
  2967. <div class="btns display_flex justify-content_flex-center">
  2968. <button
  2969. nz-button
  2970. nzType="primary"
  2971. [nzLoading]="btnLoading1"
  2972. (click)="confirmPatient1('patient-yuyue')"
  2973. *ngIf="
  2974. currentTasktype.associationType.value === 'inspect' &&
  2975. isYyInspect &&
  2976. !(currentTasktype.isMoreDept === 0 && isInspects) && checkedShowMsg.status != 100009
  2977. "
  2978. >
  2979. 预约建单
  2980. </button>
  2981. <button
  2982. nz-button
  2983. nzType="primary"
  2984. [nzLoading]="btnLoading1"
  2985. (click)="confirmPatient1('patient-zy-yuyue')"
  2986. *ngIf="
  2987. currentTasktype.associationType.value === 'patientTransport' &&
  2988. isYyInspect && checkedShowMsg.status != 100009
  2989. "
  2990. >
  2991. 预约建单
  2992. </button>
  2993. <button
  2994. nz-button
  2995. nzType="default"
  2996. [nzLoading]="btnLoading"
  2997. (click)="confirmPatient()"
  2998. class="orderThis"
  2999. *ngIf="
  3000. ((!isYyInspect &&
  3001. currentTasktype.associationType.value === 'inspect' &&
  3002. linkCheckLisTrue) ||
  3003. (!isYyInspect &&
  3004. currentTasktype.associationType.value === 'patientTransport')) &&
  3005. !(currentTasktype.isMoreDept === 0 && isInspects) && checkedShowMsg.status != 100009
  3006. "
  3007. >
  3008. 直接建单
  3009. </button>
  3010. <button
  3011. class="btn cancel"
  3012. nz-button
  3013. nzType="default"
  3014. (click)="hidePatientOrder()"
  3015. >
  3016. 取消
  3017. </button>
  3018. </div>
  3019. </div>
  3020. </div>
  3021. <!-- 标本一键建单模态框 其他-->
  3022. <div
  3023. class="save display_flex align-items_center justify-content_flex-center shortcut"
  3024. *ngIf="shortcutModal"
  3025. >
  3026. <div class="modalBody">
  3027. <div class="title">
  3028. 快捷建单<i
  3029. class="icon_transport transport-guanbi"
  3030. (click)="hideShortcutOrder()"
  3031. ></i>
  3032. </div>
  3033. <!-- 200 该任务类型运送过程暂未配置 -->
  3034. <div
  3035. class="content txtC bb"
  3036. *ngIf="buildMsg1.status == 200 && buildType == 'bb'"
  3037. >
  3038. <div class="defeat">{{ buildMsg1.msg }}</div>
  3039. </div>
  3040. <!-- 100009 该任务类型运送过程暂未配置 -->
  3041. <div class="content txtC" *ngIf="buildMsg1.status == 100009">
  3042. <div class="defeat">{{ buildMsg1.msg }}</div>
  3043. </div>
  3044. <!-- 100010 系统未查询到该任务类型关联信息 -->
  3045. <div class="content txtC" *ngIf="buildMsg1.status == 100010">
  3046. <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
  3047. <div class="defeat">{{ buildMsg1.msg }}</div>
  3048. </div>
  3049. <!-- 100012 (护士端一键建单展示策略)直接取msg -->
  3050. <div class="content txtC" *ngIf="buildMsg1.status == 100012">
  3051. <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
  3052. <div class="defeat">{{ buildMsg1.msg }}</div>
  3053. </div>
  3054. <!-- 100013 (护士端一键建单展示策略)取起点科室,和mgs值展示 -->
  3055. <div class="content" *ngIf="buildMsg1.status == 100013">
  3056. <div class="jiTit borderB">
  3057. <span>{{ buildMsg1.msg }}</span>
  3058. </div>
  3059. <div>
  3060. <form nz-form [formGroup]="shortcutForm1" class="shortcutForm">
  3061. <nz-form-item>
  3062. <nz-form-label
  3063. [nzSm]="6"
  3064. [nzXs]="24"
  3065. nzRequired
  3066. nzFor="originOffice"
  3067. >起点科室</nz-form-label
  3068. >
  3069. <nz-form-control nzErrorTip="请选择起点科室!">
  3070. <nz-select
  3071. class="w100"
  3072. formControlName="originOffice"
  3073. [nzDropdownMatchSelectWidth]="false"
  3074. nzServerSearch
  3075. nzShowSearch
  3076. (nzOnSearch)="searchDept('start', buildMsg1, $event)"
  3077. nzPlaceHolder="请选择起点科室"
  3078. >
  3079. <ng-container *ngFor="let option of buildMsg1.start.start.list">
  3080. <nz-option
  3081. *ngIf="true"
  3082. [nzLabel]="
  3083. deptDisplay == 2 ? option.deptalias : option.dept
  3084. "
  3085. [nzValue]="option.id"
  3086. >
  3087. </nz-option>
  3088. </ng-container>
  3089. <nz-option *ngIf="false" nzDisabled nzCustomContent>
  3090. <i nz-icon nzType="loading" class="loading-icon"></i>
  3091. 搜索中...
  3092. </nz-option>
  3093. </nz-select>
  3094. </nz-form-control>
  3095. </nz-form-item>
  3096. </form>
  3097. </div>
  3098. </div>
  3099. <!-- 100014 (护士端一键建单展示策略)取终点科室和msg 值展示 -->
  3100. <div class="content" *ngIf="buildMsg1.status == 100014">
  3101. <div class="jiTit borderB">
  3102. <span>{{ buildMsg1.msg }}</span>
  3103. </div>
  3104. <div>
  3105. <form nz-form [formGroup]="shortcutForm1" class="shortcutForm">
  3106. <nz-form-item>
  3107. <nz-form-label
  3108. [nzSm]="6"
  3109. [nzXs]="24"
  3110. nzRequired
  3111. nzFor="targetOffice"
  3112. >目标科室</nz-form-label
  3113. >
  3114. <nz-form-control nzErrorTip="请选择目标科室!">
  3115. <nz-select
  3116. class="w100"
  3117. formControlName="targetOffice"
  3118. [nzDropdownMatchSelectWidth]="false"
  3119. nzServerSearch
  3120. nzShowSearch
  3121. (nzOnSearch)="searchDept('target', buildMsg1, $event)"
  3122. nzAllowClear
  3123. nzPlaceHolder="请选择目标科室"
  3124. >
  3125. <ng-container *ngFor="let option of buildMsg1.end.end.list">
  3126. <nz-option
  3127. *ngIf="true"
  3128. [nzLabel]="
  3129. deptDisplay == 2 ? option.deptalias : option.dept
  3130. "
  3131. [nzValue]="option.id"
  3132. >
  3133. </nz-option>
  3134. </ng-container>
  3135. <nz-option *ngIf="false" nzDisabled nzCustomContent>
  3136. <i nz-icon nzType="loading" class="loading-icon"></i>
  3137. 搜索中...
  3138. </nz-option>
  3139. </nz-select>
  3140. </nz-form-control>
  3141. </nz-form-item>
  3142. </form>
  3143. </div>
  3144. </div>
  3145. <!-- 100015 (护士端一键建单展策略)起点科室和终点科室下拉展示 -->
  3146. <div class="content" *ngIf="buildMsg1.status == 100015">
  3147. <div class="jiTit borderB">
  3148. <span>{{ buildMsg1.msg }}</span>
  3149. </div>
  3150. <div>
  3151. <form nz-form [formGroup]="shortcutForm1" class="shortcutForm">
  3152. <nz-form-item>
  3153. <nz-form-label
  3154. [nzSm]="6"
  3155. [nzXs]="24"
  3156. nzRequired
  3157. nzFor="originOffice"
  3158. >起点科室</nz-form-label
  3159. >
  3160. <nz-form-control nzErrorTip="请选择起点科室!">
  3161. <nz-select
  3162. class="w100"
  3163. formControlName="originOffice"
  3164. [nzDropdownMatchSelectWidth]="false"
  3165. nzServerSearch
  3166. nzShowSearch
  3167. (nzOnSearch)="searchDept('start', buildMsg1, $event)"
  3168. nzPlaceHolder="请选择起点科室"
  3169. >
  3170. <ng-container *ngFor="let option of buildMsg1.start.start.list">
  3171. <nz-option
  3172. *ngIf="true"
  3173. [nzLabel]="
  3174. deptDisplay == 2 ? option.deptalias : option.dept
  3175. "
  3176. [nzValue]="option.id"
  3177. >
  3178. </nz-option>
  3179. </ng-container>
  3180. <nz-option *ngIf="false" nzDisabled nzCustomContent>
  3181. <i nz-icon nzType="loading" class="loading-icon"></i>
  3182. 搜索中...
  3183. </nz-option>
  3184. </nz-select>
  3185. </nz-form-control>
  3186. </nz-form-item>
  3187. <nz-form-item>
  3188. <nz-form-label
  3189. [nzSm]="6"
  3190. [nzXs]="24"
  3191. nzRequired
  3192. nzFor="targetOffice"
  3193. >目标科室</nz-form-label
  3194. >
  3195. <nz-form-control nzErrorTip="请选择目标科室!">
  3196. <nz-select
  3197. class="w100"
  3198. formControlName="targetOffice"
  3199. [nzDropdownMatchSelectWidth]="false"
  3200. nzServerSearch
  3201. nzShowSearch
  3202. (nzOnSearch)="searchDept('target', buildMsg1, $event)"
  3203. nzPlaceHolder="请选择目标科室"
  3204. >
  3205. <ng-container *ngFor="let option of buildMsg1.end.end.list">
  3206. <nz-option
  3207. *ngIf="true"
  3208. [nzLabel]="
  3209. deptDisplay == 2 ? option.deptalias : option.dept
  3210. "
  3211. [nzValue]="option.id"
  3212. >
  3213. </nz-option>
  3214. </ng-container>
  3215. <nz-option *ngIf="false" nzDisabled nzCustomContent>
  3216. <i nz-icon nzType="loading" class="loading-icon"></i>
  3217. 搜索中...
  3218. </nz-option>
  3219. </nz-select>
  3220. </nz-form-control>
  3221. </nz-form-item>
  3222. </form>
  3223. </div>
  3224. </div>
  3225. <!-- 标本配送备注 -->
  3226. <div *ngIf="buildMsg1.remarksSwitch == 1">
  3227. <p class="mt8 mb8">工单备注:</p>
  3228. <textarea
  3229. nz-input
  3230. [placeholder]="workOrderRemarkTips1"
  3231. [nzAutosize]="{ minRows: 3, maxRows: 5 }"
  3232. maxlength="100"
  3233. [(ngModel)]="workOrderRemark1"
  3234. #remarksEle1
  3235. ></textarea>
  3236. <p class="mt8 mb8" *ngIf="customRemarks1.length">快捷输入:</p>
  3237. <div *ngIf="customRemarks1.length">
  3238. <span
  3239. class="addRemarks"
  3240. *ngFor="let item of customRemarks1"
  3241. (click)="addRemarks1(item)"
  3242. >【{{ item }}】</span
  3243. >
  3244. </div>
  3245. <p class="mt8 mb8" *ngIf="historyCustomRemarks1.length">历史输入:</p>
  3246. <div *ngIf="historyCustomRemarks1.length">
  3247. <span
  3248. class="addRemarks"
  3249. *ngFor="let item of historyCustomRemarks1"
  3250. (click)="addRemarks1(item)"
  3251. >【{{ item }}】</span
  3252. >
  3253. </div>
  3254. </div>
  3255. <div class="btns display_flex justify-content_flex-center">
  3256. <button
  3257. *ngIf="buildMsg1.status != 100009 && buildMsg1.status != 100010"
  3258. nz-button
  3259. nzType="primary"
  3260. [nzLoading]="btnLoading"
  3261. (click)="confirmShortcut1()"
  3262. >
  3263. 确认
  3264. </button>
  3265. <button
  3266. class="btn cancel"
  3267. nz-button
  3268. nzType="default"
  3269. (click)="hideShortcutOrder()"
  3270. >
  3271. 取消
  3272. </button>
  3273. </div>
  3274. </div>
  3275. </div>
  3276. <!-- 一键建单确认模态框 -->
  3277. <div
  3278. class="save display_flex align-items_center justify-content_flex-center shortcut"
  3279. *ngIf="confirmSub"
  3280. >
  3281. <div class="modalBody sm">
  3282. <div class="title">
  3283. 快捷建单<i class="icon_transport transport-guanbi" (click)="cancel()"></i>
  3284. </div>
  3285. <div class="content txtC">
  3286. <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
  3287. <div class="defeat">{{ confirmInfo }}</div>
  3288. <div class="otherInfo">请谨慎操作,如撤销请点击取消。</div>
  3289. </div>
  3290. <div class="btns display_flex justify-content_flex-center">
  3291. <button
  3292. nz-button
  3293. nzType="primary"
  3294. [nzLoading]="btnLoading3"
  3295. (click)="confirm()"
  3296. >
  3297. 确认
  3298. </button>
  3299. <button class="btn cancel" nz-button nzType="default" (click)="cancel()">
  3300. 取消
  3301. </button>
  3302. </div>
  3303. </div>
  3304. </div>
  3305. <!-- 撤销工单 -->
  3306. <app-dialog-delete
  3307. [delModal]="recallOrderModal"
  3308. (hideDelModalEvent)="closeRecallOrderModal()"
  3309. [btnLoading]="btnLoading"
  3310. (confirmDelEvent)="confirmRec()"
  3311. content="您确认要撤销工单吗?撤销工单我们会通知服务台、配送人员不再执行此工单,请谨慎操作,如确认撤销请点击确认。"
  3312. ></app-dialog-delete>
  3313. <!-- 打印二维码-门诊服务点 -->
  3314. <app-dialog-delete
  3315. [delModal]="outpatientServiceModal"
  3316. (hideDelModalEvent)="closeOutpatientServiceModal()"
  3317. [btnLoading]="btnLoading"
  3318. (confirmDelEvent)="confirmOutpatientService()"
  3319. [content]="outpatientServiceMsg"
  3320. ></app-dialog-delete>
  3321. <!-- 立即执行定时预约工单 -->
  3322. <app-dialog-delete
  3323. [delModal]="execModal"
  3324. (hideDelModalEvent)="closeExecModal()"
  3325. [btnLoading]="btnLoading"
  3326. (confirmDelEvent)="confirmExec()"
  3327. content="您确认要立即执行该工单吗?"
  3328. ></app-dialog-delete>
  3329. <!-- 评价模态框 -->
  3330. <div
  3331. class="save display_flex align-items_center justify-content_flex-center appraise"
  3332. *ngIf="appraiseModal"
  3333. >
  3334. <div class="modalBody">
  3335. <div class="title">
  3336. 评价<i
  3337. class="icon_transport transport-guanbi"
  3338. (click)="hideAppraise()"
  3339. ></i>
  3340. </div>
  3341. <div class="content">
  3342. <div class="jiTit borderB">您的评价对我们至关重要,感谢您!</div>
  3343. <br />
  3344. <div class="star">
  3345. <div
  3346. nz-row
  3347. class="alignC display_flex justify-content_flex-center align-items_center"
  3348. >
  3349. <div nz-col nzSpan="4">星级:</div>
  3350. <div nz-col nzSpan="20">
  3351. <nz-rate [(ngModel)]="starNum"></nz-rate>
  3352. </div>
  3353. </div>
  3354. <div nz-row>
  3355. <div nz-col nzSpan="4">评级:</div>
  3356. <div nz-col nzSpan="20">
  3357. <textarea
  3358. rows="4"
  3359. nz-input
  3360. [(ngModel)]="appraiseContent"
  3361. ></textarea>
  3362. </div>
  3363. </div>
  3364. </div>
  3365. <br />
  3366. </div>
  3367. <div class="btns display_flex justify-content_flex-center">
  3368. <button
  3369. nz-button
  3370. nzType="primary"
  3371. [nzLoading]="btnLoading"
  3372. (click)="confirmAppraise()"
  3373. >
  3374. 确认
  3375. </button>
  3376. <button
  3377. class="btn cancel"
  3378. nz-button
  3379. nzType="default"
  3380. (click)="hideAppraise()"
  3381. >
  3382. 关闭
  3383. </button>
  3384. </div>
  3385. </div>
  3386. </div>
  3387. <!-- 报修评价模态框 -->
  3388. <div
  3389. class="save display_flex align-items_center justify-content_flex-center appraise"
  3390. *ngIf="appraiseModalBx"
  3391. >
  3392. <div class="modalBody">
  3393. <div class="title">
  3394. 评价<i
  3395. class="icon_transport transport-guanbi"
  3396. (click)="hideAppraiseBx()"
  3397. ></i>
  3398. </div>
  3399. <div class="content">
  3400. <div class="jiTit borderB">您的评价对我们至关重要,感谢您!</div>
  3401. <br />
  3402. <div class="star">
  3403. <div
  3404. nz-row
  3405. class="alignC display_flex justify-content_flex-center align-items_center"
  3406. >
  3407. <div nz-col nzSpan="4">星级:</div>
  3408. <div nz-col nzSpan="20">
  3409. <nz-rate [(ngModel)]="starNumBx"></nz-rate>
  3410. </div>
  3411. </div>
  3412. <div nz-row>
  3413. <div nz-col nzSpan="4">评级:</div>
  3414. <div nz-col nzSpan="20">
  3415. <textarea
  3416. rows="4"
  3417. nz-input
  3418. [(ngModel)]="appraiseContentBx"
  3419. ></textarea>
  3420. </div>
  3421. </div>
  3422. </div>
  3423. <br />
  3424. </div>
  3425. <div class="btns display_flex justify-content_flex-center">
  3426. <button
  3427. nz-button
  3428. nzType="primary"
  3429. [nzLoading]="btnLoading"
  3430. (click)="confirmAppraiseBx()"
  3431. >
  3432. 确认
  3433. </button>
  3434. <button
  3435. class="btn cancel"
  3436. nz-button
  3437. nzType="default"
  3438. (click)="hideAppraiseBx()"
  3439. >
  3440. 关闭
  3441. </button>
  3442. </div>
  3443. </div>
  3444. </div>
  3445. <!-- 意见箱查看 -->
  3446. <div
  3447. class="save display_flex align-items_center justify-content_flex-center advice"
  3448. *ngIf="adviceModal"
  3449. >
  3450. <div class="modalBody">
  3451. <div class="title">
  3452. 意见箱-查看<i
  3453. class="icon_transport transport-guanbi"
  3454. (click)="hideAdvice()"
  3455. ></i>
  3456. </div>
  3457. <div class="content">
  3458. <div class="conItem">
  3459. <div class="jiTit borderB color3" nz-row>
  3460. <div nz-col nzSpan="11" class="txtL">
  3461. 发起人:{{
  3462. adviceDetailInfo.createUser
  3463. ? adviceDetailInfo.createUser.name
  3464. : ""
  3465. }}
  3466. </div>
  3467. <div nz-col nzSpan="13" class="txtR">
  3468. 填写时间:{{ adviceDetailInfo.createTime }}
  3469. </div>
  3470. </div>
  3471. <div class="defeat">意见内容:{{ adviceDetailInfo.content }}</div>
  3472. </div>
  3473. <div class="conItem" *ngIf="adviceDetailInfo.replaceFlag == 1">
  3474. <div class="jiTit borderB color3" nz-row>
  3475. <div nz-col nzSpan="11" class="txtL">
  3476. 回复人:{{
  3477. adviceDetailInfo.replyUser ? adviceDetailInfo.replyUser.name : ""
  3478. }}
  3479. </div>
  3480. <div nz-col nzSpan="13" class="txtR">
  3481. 填写时间:{{ adviceDetailInfo.replyTime }}
  3482. </div>
  3483. </div>
  3484. <div class="defeat">意见内容:{{ adviceDetailInfo.replyContent }}</div>
  3485. </div>
  3486. <div class="conItem noCon" *ngIf="adviceDetailInfo.replaceFlag == 0">
  3487. <div class="jiTit color3" nz-row>暂未回复</div>
  3488. </div>
  3489. </div>
  3490. <div class="btns display_flex justify-content_flex-center">
  3491. <button
  3492. class="btn know"
  3493. nz-button
  3494. nzType="primary"
  3495. nzGhost
  3496. (click)="hideAdvice()"
  3497. >
  3498. 知道了
  3499. </button>
  3500. </div>
  3501. </div>
  3502. </div>
  3503. <!-- 意见收集 -->
  3504. <div
  3505. class="save display_flex align-items_center justify-content_flex-center advice"
  3506. *ngIf="adviceSubModal"
  3507. >
  3508. <div class="modalBody">
  3509. <div class="title">
  3510. 意见收集<i
  3511. class="icon_transport transport-guanbi"
  3512. (click)="hideSubAdvice()"
  3513. ></i>
  3514. </div>
  3515. <div class="content">
  3516. <div class="title">意见内容:</div>
  3517. <textarea
  3518. rows="4"
  3519. maxlength="255"
  3520. nz-input
  3521. [(ngModel)]="adviceSubContent"
  3522. placeholder="请填写意见内容"
  3523. ></textarea>
  3524. <br /><br />
  3525. </div>
  3526. <div class="btns display_flex justify-content_flex-center">
  3527. <button
  3528. nz-button
  3529. nzType="primary"
  3530. [nzLoading]="btnLoading"
  3531. (click)="confirmSubAdvice()"
  3532. >
  3533. 确认
  3534. </button>
  3535. <button
  3536. class="btn cancel"
  3537. nz-button
  3538. nzType="default"
  3539. (click)="hideSubAdvice()"
  3540. >
  3541. 取消
  3542. </button>
  3543. </div>
  3544. </div>
  3545. </div>
  3546. <!-- 加急模态框 -->
  3547. <div
  3548. class="save display_flex align-items_center justify-content_flex-center jiaji"
  3549. *ngIf="jiajiModal"
  3550. >
  3551. <div class="modalBody">
  3552. <div class="title">
  3553. 加急<i class="icon_transport transport-guanbi" (click)="hideJiaji()"></i>
  3554. </div>
  3555. <div class="content">
  3556. <div class="jiTit borderB">
  3557. 请填写加急原因,填写后我们会根据您的诉求优先处理
  3558. </div>
  3559. <div class="title">加急原因:</div>
  3560. <textarea
  3561. rows="4"
  3562. nz-input
  3563. [(ngModel)]="jiajiContent"
  3564. placeholder="请填写加急原因"
  3565. ></textarea>
  3566. <br /><br />
  3567. </div>
  3568. <div class="btns display_flex justify-content_flex-center">
  3569. <button
  3570. nz-button
  3571. nzType="primary"
  3572. [nzLoading]="btnLoading"
  3573. (click)="confirmJiaji()"
  3574. >
  3575. 确认
  3576. </button>
  3577. <button
  3578. class="btn cancel"
  3579. nz-button
  3580. nzType="default"
  3581. (click)="hideJiaji()"
  3582. >
  3583. 取消
  3584. </button>
  3585. </div>
  3586. </div>
  3587. </div>
  3588. <!-- 查看标本详情模态框 -->
  3589. <div *ngIf="detailModel" [class.detailModel]="detailModel">
  3590. <div class="box">
  3591. <h2 class="title">未取标本详情</h2>
  3592. <div class="table">
  3593. <div class="table-content">
  3594. <table>
  3595. <thead>
  3596. <tr>
  3597. <th>序号</th>
  3598. <th>标本类型</th>
  3599. <th>标本编码</th>
  3600. <th>患者姓名</th>
  3601. <th>床号</th>
  3602. <th>采集时间</th>
  3603. <th>目标科室</th>
  3604. </tr>
  3605. </thead>
  3606. <tbody>
  3607. <overlay-scrollbars
  3608. #osComponentRef6
  3609. style="height: 100%"
  3610. *ngIf="detailList.length && !loading33"
  3611. >
  3612. <tr
  3613. *ngFor="let detail of detailList; let i = index"
  3614. [style]="{ background: i % 2 === 1 ? '#fff' : '#f9fafb' }"
  3615. >
  3616. <td>{{ i + 1 }}</td>
  3617. <td>{{ detail.stype ? detail.stype.name : "-" }}</td>
  3618. <td>{{ detail.scode || "-" }}</td>
  3619. <td>{{ detail.patientName || "-" }}</td>
  3620. <td>{{ detail.bedNum || "-" }}</td>
  3621. <td>
  3622. {{ detail.printDate || "-" }}
  3623. </td>
  3624. <td>
  3625. {{
  3626. detail.checkDept
  3627. ? deptDisplay == 2
  3628. ? detail.checkDept.deptalias
  3629. : detail.checkDept.dept
  3630. : "-"
  3631. }}
  3632. <div
  3633. *ngIf="detail.urgent != 0"
  3634. [class.ji]="detail.urgent == 1"
  3635. ></div>
  3636. </td>
  3637. </tr>
  3638. </overlay-scrollbars>
  3639. <div
  3640. style="font-size: 18px"
  3641. *ngIf="!detailList.length && !loading33"
  3642. class="noData33"
  3643. >
  3644. 暂无数据
  3645. </div>
  3646. <div class="loading33" *ngIf="loading33">
  3647. <img src="./../../assets/images/loading.gif" alt="" />
  3648. <p>正在加载中</p>
  3649. </div>
  3650. </tbody>
  3651. </table>
  3652. </div>
  3653. </div>
  3654. <div class="btns">
  3655. <div class="btn" (click)="hideSpeDetailModel()">知道了</div>
  3656. </div>
  3657. <i
  3658. class="icon_transport transport-guanbi"
  3659. (click)="hideSpeDetailModel()"
  3660. ></i>
  3661. </div>
  3662. </div>
  3663. <!-- 删除意见模态框 -->
  3664. <app-dialog-delete
  3665. [delModal]="delAdviceModal"
  3666. (hideDelModalEvent)="hideDelAdviceModal()"
  3667. [btnLoading]="btnLoading"
  3668. (confirmDelEvent)="confirmDelAdvice()"
  3669. content="您确认要删除此条意见吗?"
  3670. ></app-dialog-delete>
  3671. <!-- 关注模态框 -->
  3672. <div
  3673. class="commonModal display_flex justify-content_flex-center align-items_center"
  3674. *ngIf="commonModal"
  3675. >
  3676. <div class="modalBody">
  3677. <div class="title">
  3678. 提示<i
  3679. class="icon_transport transport-guanbi"
  3680. (click)="hideCommonModal()"
  3681. ></i>
  3682. </div>
  3683. <div class="content">
  3684. <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
  3685. <div class="defeat">{{ tipsMsg1 }}</div>
  3686. </div>
  3687. <div class="display_flex justify-content_flex-center">
  3688. <button
  3689. nz-button
  3690. nzType="primary"
  3691. (click)="confirmCommon()"
  3692. [nzLoading]="loading4"
  3693. >
  3694. 确认
  3695. </button>
  3696. <button
  3697. class="btn cancel"
  3698. nz-button
  3699. nzType="default"
  3700. (click)="hideCommonModal()"
  3701. >
  3702. 取消
  3703. </button>
  3704. </div>
  3705. </div>
  3706. </div>
  3707. <!-- 是否确认报修模态框 -->
  3708. <div
  3709. class="commonModal display_flex justify-content_flex-center align-items_center"
  3710. *ngIf="bxModal"
  3711. >
  3712. <div class="modalBody">
  3713. <div class="title">
  3714. 提示<i
  3715. class="icon_transport transport-guanbi"
  3716. (click)="hideBxModal()"
  3717. ></i>
  3718. </div>
  3719. <div class="content">
  3720. <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
  3721. <div class="defeat">{{ tipsMsg2 }}</div>
  3722. </div>
  3723. <div class="display_flex justify-content_flex-center">
  3724. <button
  3725. nz-button
  3726. nzType="primary"
  3727. (click)="confirmBx()"
  3728. [nzLoading]="loading6"
  3729. >
  3730. 确认
  3731. </button>
  3732. <button
  3733. class="btn cancel"
  3734. nz-button
  3735. nzType="default"
  3736. (click)="hideBxModal()"
  3737. >
  3738. 取消
  3739. </button>
  3740. </div>
  3741. </div>
  3742. </div>
  3743. <!-- 消息弹框模板 -->
  3744. <ng-template #msgTemplate let-msg="data">
  3745. <div class="msgTemBox ant-notification-notice-content">
  3746. <div class="borderLeft"></div>
  3747. <div class="ant-notification-notice-with-icon">
  3748. <span class="ant-notification-notice-icon">
  3749. <i class="icon icon_transport transport-shouye9"></i>
  3750. </span>
  3751. <div class="ant-notification-notice-message">
  3752. {{ msg.type == 1 ? "通知" : "消息" }}
  3753. </div>
  3754. <div class="ant-notification-notice-description">{{ msg.content }}</div>
  3755. </div>
  3756. </div>
  3757. </ng-template>
  3758. <!-- 操作成功/失败提示框 -->
  3759. <app-prompt-modal
  3760. *ngIf="promptModalShow"
  3761. [content]="promptContent"
  3762. [success]="ifSuccess"
  3763. [show]="promptModalShow"
  3764. [info]="promptInfo"
  3765. [back]="back"
  3766. (closeModel)="closeModel($event)"
  3767. ></app-prompt-modal>
  3768. <!-- 护士端科室切换提示框 -->
  3769. <app-hs-prompt-modal
  3770. [changeShow]="changeShow"
  3771. [closeTime]="closeTime"
  3772. [closeTimeFlag]="closeTimeFlag"
  3773. [show]="hsPromptModalShow"
  3774. (closeModelHs)="closeModelHs($event)"
  3775. (clearModelHs)="clearModelHs($event)"
  3776. deptType="nurse"
  3777. >
  3778. </app-hs-prompt-modal>
  3779. <!-- 标本历史记录查看 -->
  3780. <app-history-prompt-modal
  3781. *ngIf="historyPromptModalShow"
  3782. [show]="historyPromptModalShow"
  3783. [scode]="scode"
  3784. (closeModelHs)="closeModelHistory($event)"
  3785. ></app-history-prompt-modal>
  3786. <!-- 药包流程信息查看 -->
  3787. <app-log-prompt-modal
  3788. *ngIf="historyDPromptModalShow"
  3789. [show]="historyDPromptModalShow"
  3790. [drugsBagId]="drugsBagId"
  3791. (closeModelHs)="closeModelHistoryDrugsbag($event)"
  3792. ></app-log-prompt-modal>
  3793. <!-- 报修详情查看 -->
  3794. <app-bx-prompt-modal
  3795. *ngIf="bxPromptModalShow"
  3796. [show]="bxPromptModalShow"
  3797. [bData]="bData"
  3798. (closeModelHs)="closeModelBx($event)"
  3799. ></app-bx-prompt-modal>
  3800. <!-- 科室二维码模态框 -->
  3801. <!-- 在模态框所在的 div 添加属性 [appDrag] -->
  3802. <div appDrag class="modal" *ngIf="isShowNurseCode">
  3803. <div class="header drag-title">
  3804. <h2>签到二维码</h2>
  3805. <i
  3806. class="icon-close icon_transport transport-guanbi1"
  3807. (click)="closeNurseCode()"
  3808. ></i>
  3809. </div>
  3810. <div class="dialog-center">
  3811. <div class="dialog-code">
  3812. <img [src]="nurseCodeImg" alt="" />
  3813. </div>
  3814. </div>
  3815. <div class="dialog-operate">
  3816. <strong class="dialog-refresh" (click)="showNurseCode()">刷新</strong>
  3817. <span>{{ refreshQRCodeTime }}s</span>
  3818. </div>
  3819. </div>
  3820. <router-outlet (deactivate)="refreshList($event)"></router-outlet>
  3821. <!-- 遮罩 -->
  3822. <app-mask *ngIf="maskFlag"></app-mask>
  3823. <!-- 是否需要医护陪同检查模态框 -->
  3824. <app-dialog-delete
  3825. [delModal]="accompanyModal"
  3826. (hideDelModalEvent)="hideAccompanyModal($event)"
  3827. (cancelDelEvent)="hideAccompanyModal($event)"
  3828. [btnLoading]="accompanyLoading"
  3829. [cancenlLoading]="cancenlLoading"
  3830. (confirmDelEvent)="confirmAccompany()"
  3831. confirmTxt="是"
  3832. cancelTxt="否"
  3833. content="您选择的患者是危重或特级护理或一级护理患者,请问是否需要医护陪同检查?"
  3834. >
  3835. </app-dialog-delete>
  3836. <!-- 重复建单策略 -->
  3837. <app-dialog-delete
  3838. [delModal]="repeatModal"
  3839. (hideDelModalEvent)="hideRepeatModal()"
  3840. [btnLoading]="loadingRepeat"
  3841. (confirmDelEvent)="confirmRepeat()"
  3842. [content]="repeatMsg"
  3843. confirmTxt="是"
  3844. cancelTxt="否"
  3845. (cancelDelEvent)="hideRepeatModal()"
  3846. ></app-dialog-delete>
  3847. <!-- 是否一键接患者模态框 -->
  3848. <app-dialog-delete [delModal]="pickUpModal" (hideDelModalEvent)="hidePickUpModal()" [btnLoading]="btnLoading"
  3849. (confirmDelEvent)="confirmPickUp()" [content]="pickUpInfo"></app-dialog-delete>
  3850. <!-- 其他临床服务-关联数据-模态框 -->
  3851. <app-dialog-delete [delModal]="otherDataModal" (hideDelModalEvent)="hideOtherDataModal()" (confirmDelEvent)="confirmOtherData()" [content]="otherDataInfo"></app-dialog-delete>
  3852. <!-- 手术即将开始通知 -->
  3853. <app-dialog-surgery [delModal]="surgeryModal" (hideDelModalEvent)="hideSurgeryModal()" [btnLoading]="btnLoading"
  3854. (confirmDelEvent)="confirmSurgery($event)" [content]="surgeryInfo" [dataObj]="surgeryItem"></app-dialog-surgery>
  3855. <!-- 手术中患者-送回病房 -->
  3856. <app-dialog-delete [delModal]="sendWardModal" (hideDelModalEvent)="hideSendWardModal()" [btnLoading]="sLoading1"
  3857. (confirmDelEvent)="confirmSendWard($event)" [content]="sendWardInfo" [isChecked]="surgeryConfigs && surgeryConfigs.remandClean == 1"></app-dialog-delete>
  3858. <!-- 手术中患者-送回苏醒区 -->
  3859. <app-dialog-delete [delModal]="sendAwakeningRoomModal" (hideDelModalEvent)="hideSendAwakeningRoomModal()" [btnLoading]="sLoading2"
  3860. (confirmDelEvent)="confirmSendAwakeningRoom($event)" [content]="sendAwakeningRoomInfo" [isChecked]="surgeryConfigs && surgeryConfigs.remandClean == 1" [isSelected]="surgeryCarryingCourse && (surgeryCarryingCourse.departmentStrategy.value == 2 || surgeryCarryingCourse.departmentStrategy.value == 3)" [isSelectedArr]="surgeryCarryingCourseDepts" [deptDisplay]="deptDisplay"></app-dialog-delete>
  3861. <!-- 是否限制业务发起时间模态框 -->
  3862. <app-dialog-delete [delModal]="limitTimeModal" (hideDelModalEvent)="hideLimitTimeModal()" [btnLoading]="limitTimeLoading"
  3863. (confirmDelEvent)="confirmLimitTime()" [content]="limitTimeInfo" confirmTxt="继续建单" [isShowConfirm]="isShowConfirm" [isShowConfirmInfo]="isShowConfirmInfo"></app-dialog-delete>
  3864. <!-- 关联业务查看 -->
  3865. <app-relationTrans-detail-modal *ngIf="relationTransModalShow" [show]="relationTransModalShow" [otherBindConfigDto]="otherBindConfigDto" (closeModelHs)="closeModelRelationTrans($event)" (confirmModelHs)="confirmModelRelationTrans($event)" [deptDisplay]="deptDisplay"></app-relationTrans-detail-modal>
  3866. <!-- 打印门诊二维码的内容 -->
  3867. <div id="print-section" hidden>
  3868. <div style="width: 105mm;height: 148mm;overflow: hidden;display:flex;flex-direction: column;align-items: center; box-sizing: border-box;">
  3869. <div style="display:flex;justify-content: center;align-items: center;padding: 5mm;border-bottom: 1px solid #88c785;margin-bottom: 5mm;">
  3870. <img [src]="cardNoDto.logo" style="width: 90%;height: auto;">
  3871. </div>
  3872. <div style="padding: 5mm 10mm;flex: 1;margin:0 5mm 5mm;background-color: #007138;-webkit-print-color-adjust: exact;display:flex;flex-direction: column;align-items: center;overflow: hidden;">
  3873. <img [src]="cardNoDto.base64" style="width: 100%;">
  3874. <p style="font-size: 7mm;margin: 0.3mm auto 0;color:#fff;">{{cardNoDto.name}}</p>
  3875. <p style="font-size: 6mm;margin: 0.3mm auto 0;color:#fff;">{{cardNoDto.cardNo}}</p>
  3876. <p style="font-size: 5mm;margin: 0.3mm auto 0;color:#fff;">{{cardNoDto.sysName}}患者帮扶服务</p>
  3877. </div>
  3878. </div>
  3879. </div>
  3880. <button ngxPrint printSectionId="print-section" #printBtn hidden [printStyle]="{ '@page': { margin: '0 !important' }, 'body': { margin: '0 !important' } }">打印</button>