hushijiandan.component.html 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093
  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>
  13. <img src="../../assets/images/login_logo.png" alt="logo" />
  14. <span>大势医院输送保障管理平台</span>
  15. </div>
  16. </div>
  17. <div
  18. class="notAvailable display_flex align-items_center justify-content_flex-center"
  19. *ngIf="
  20. !deptTaskTypeRules.openInspection &&
  21. !deptTaskTypeRules.openPatientTransport
  22. "
  23. >
  24. <div>
  25. <img src="../../assets/images/icon_jianchakong.png" alt="" />
  26. <div>暂未开通</div>
  27. </div>
  28. </div>
  29. <div class="mainInfo">
  30. <div class="searchBox">
  31. <input
  32. nz-input
  33. [(ngModel)]="tabSearchCont"
  34. (ngModelChange)="searchTabInp($event)"
  35. placeholder="请输入关键字"
  36. />
  37. </div>
  38. <div class="checkBanner" nz-row>
  39. <button
  40. nz-button
  41. nz-col
  42. nzSpan="12"
  43. class="checkItem checked"
  44. (click)="changeInfo()"
  45. >
  46. 患者信息
  47. </button>
  48. </div>
  49. <!-- 患者信息 -->
  50. <div class="checkedInfo patient" style="padding-bottom: 0">
  51. <overlay-scrollbars #osComponentRef4 class="box">
  52. <div
  53. class="loading display_flex align-items_center justify-content_flex-center"
  54. *ngIf="
  55. pLoading &&
  56. (deptTaskTypeRules.openInspection ||
  57. deptTaskTypeRules.openPatientTransport)
  58. "
  59. >
  60. <div>
  61. <img src="../../assets/images/loading.gif" alt="" />
  62. <div>加载中...</div>
  63. </div>
  64. </div>
  65. <div
  66. class="loading display_flex align-items_center justify-content_flex-center"
  67. *ngIf="!patientList.length && !pLoading"
  68. >
  69. <div>
  70. <div>暂无数据</div>
  71. </div>
  72. </div>
  73. <div *ngIf="patientList.length && !pLoading">
  74. <div class="item" *ngFor="let item of patientList">
  75. <div class="itemTit txtC" style="font-weight: bold">
  76. <ng-container *ngIf="item.illnessState">
  77. <i
  78. *ngIf="item.illnessState.value === '2'"
  79. class="colorRed icon_transport transport-wei"
  80. nz-tooltip
  81. nzTooltipTitle="病危"
  82. ></i>
  83. <i
  84. *ngIf="item.illnessState.value === '3'"
  85. class="colorRed icon_transport transport-zhong1"
  86. nz-tooltip
  87. nzTooltipTitle="病重"
  88. ></i>
  89. </ng-container>
  90. <ng-container *ngIf="item.careLevel">
  91. <i
  92. *ngIf="item.careLevel.value === '0'"
  93. class="icon_transport transport-te1"
  94. nz-tooltip
  95. nzTooltipTitle="特级护理"
  96. ></i>
  97. <i
  98. *ngIf="item.careLevel.value === '1'"
  99. class="icon_transport transport-Bduanshuzi1"
  100. nz-tooltip
  101. nzTooltipTitle="一级护理"
  102. ></i>
  103. <i
  104. *ngIf="item.careLevel.value === '2'"
  105. class="icon_transport transport-Bduanshuzi"
  106. nz-tooltip
  107. nzTooltipTitle="二级护理"
  108. ></i>
  109. <i
  110. *ngIf="item.careLevel.value === '3'"
  111. class="icon_transport transport-Bduanshuzi11"
  112. nz-tooltip
  113. nzTooltipTitle="三级护理"
  114. ></i>
  115. </ng-container>
  116. <span
  117. nz-tooltip
  118. [nzTooltipTitle]="recentInfo"
  119. nzTooltipPlacement="right"
  120. [nzMouseEnterDelay]="1"
  121. (mouseenter)="getRecentInfo(item.patientCode)"
  122. >{{ item.patientName }}({{ item.bedNum }})</span
  123. >
  124. </div>
  125. <div
  126. class="checkInfo"
  127. nz-row
  128. *ngIf="
  129. followFlag === '1' &&
  130. currentUser.typeValue != 'checkRoom2' &&
  131. currentUser.typeValue != 'outpatientDept' &&
  132. currentUser.typeValue != 'checkRoom'
  133. "
  134. >
  135. <span
  136. nz-col
  137. nzSpan="2"
  138. class="icon_transport transport-zhongdianguanzhu"
  139. (click)="follow(item)"
  140. [ngStyle]="{
  141. color: item.focusPatient === 0 ? 'white' : 'red'
  142. }"
  143. nz-tooltip
  144. [nzTooltipTitle]="
  145. item.focusPatient === 0
  146. ? '白色心为非特殊关注,需手动建单后支助人员上门送检'
  147. : '红色心为特殊关注,患者所有检查会自动建单,支助人员主动上门送检'
  148. "
  149. ></span>
  150. <span nz-col nzSpan="2"></span>
  151. <span nz-col nzSpan="12">{{ item.residenceNo }}</span>
  152. <span nz-col nzSpan="6" class="txtR"
  153. >待检 {{ item.watingCount }}</span
  154. >
  155. <span nz-col nzSpan="2"></span>
  156. </div>
  157. <div
  158. class="checkInfo"
  159. nz-row
  160. *ngIf="
  161. followFlag === '0' ||
  162. currentUser.typeValue == 'checkRoom2' ||
  163. currentUser.typeValue == 'outpatientDept' ||
  164. currentUser.typeValue == 'checkRoom'
  165. "
  166. >
  167. <span nz-col nzSpan="2"></span>
  168. <span nz-col nzSpan="12">{{ item.residenceNo }}</span>
  169. <span nz-col nzSpan="6" class="txtR"
  170. >待检 {{ item.watingCount }}</span
  171. >
  172. <span nz-col nzSpan="2"></span>
  173. </div>
  174. <div class="btn" (click)="newPatientOrder(item)">一键建单</div>
  175. </div>
  176. </div>
  177. </overlay-scrollbars>
  178. </div>
  179. <!-- 翻页 -->
  180. <!-- <div class="paging">
  181. <div>
  182. <nz-pagination [(nzPageIndex)]="infoPageIdx" [(nzTotal)]="infoLength" (nzPageIndexChange)="getPatient()"
  183. [nzPageSize]='5' nzSimple>
  184. </nz-pagination>
  185. </div>
  186. </div> -->
  187. </div>
  188. </nz-sider>
  189. <nz-layout class="layout" style="background: #fff; position: relative">
  190. <nz-header>
  191. <div
  192. class="app-header borderB display_flex justify-content_space-between align-items_center"
  193. >
  194. <div
  195. class="nurseTitle display_flex justify-content_space-between align-items_center"
  196. >
  197. <span>护士端<span class="todayNum">当日建单数:{{todayNum}}</span></span>
  198. <p class="updateTipsForNurses red">{{ updateTipsForNurses }}</p>
  199. <div class="nurseCode" (click)="showNurseCode()">
  200. <i class="nurseCodeIcon icon_transport transport-erweima"></i
  201. >二维码
  202. </div>
  203. </div>
  204. <div class="userInfo">
  205. <div class="wel">欢迎您:</div>
  206. <div class="user">
  207. <img src="../../assets/images/icon_keshi.png" alt="" />
  208. <span *ngIf="deptDisplay">{{
  209. deptDisplay == 2
  210. ? loginUser.dept.deptalias
  211. : loginUser.dept.dept
  212. }}</span>
  213. </div>
  214. <div class="userInfo-wrap">
  215. <div class="logOut" (click)="changeKsNow()">切换科室</div>
  216. <div class="logOut" (click)="logOut()">退出</div>
  217. </div>
  218. </div>
  219. </div>
  220. </nz-header>
  221. <nz-content class="nzContent">
  222. <div class="inner-content">
  223. <div class="mainInfo" nz-row>
  224. <div nz-col nzSpan="17" class="cont">
  225. <div class="top">
  226. <div class="nums borderB" nz-row>
  227. <!-- 标本信息未开通 -->
  228. <div
  229. *ngIf="!deptTaskTypeRules.openSpecimen"
  230. nz-col
  231. nzSpan="13"
  232. nz-row
  233. class="h100p"
  234. >
  235. <div
  236. class="notAvailable display_flex align-items_center justify-content_flex-center"
  237. >
  238. <div>
  239. <img
  240. src="../../assets/images/icon_jianchakong.png"
  241. alt=""
  242. />
  243. <div>暂未开通</div>
  244. </div>
  245. </div>
  246. <div nz-col nzSpan="18" nz-row class="borderR h100p">
  247. <div
  248. nz-col
  249. nzSpan="4"
  250. class="borderR alignC display_flex justify-content_flex-center align-items_center h100p"
  251. >
  252. <img
  253. src="../../assets/images/icon_hubiaoben.png"
  254. alt=""
  255. />
  256. </div>
  257. <div nz-col nzSpan="20">
  258. <div class="txtC h33 borderB overAuto">*****</div>
  259. <div nz-row class="h53">
  260. <div nz-col nzSpan="12" class="txtC borderR h100p">
  261. <p>*</p>
  262. <div>急标数量</div>
  263. </div>
  264. <div nz-col nzSpan="12" class="txtC h100p">
  265. <p>*</p>
  266. <div>普标数量</div>
  267. </div>
  268. </div>
  269. </div>
  270. </div>
  271. <div nz-col nzSpan="6" class="borderR h100p">
  272. <div class="quick">
  273. <button class="btn txtC">{{ specimenButton }}</button>
  274. </div>
  275. </div>
  276. </div>
  277. <!-- 标本信息已开通 -->
  278. <div
  279. *ngIf="deptTaskTypeRules.openSpecimen"
  280. nz-col
  281. nzSpan="13"
  282. nz-row
  283. class="h100p"
  284. >
  285. <div nz-col nzSpan="18" nz-row class="borderR h100p">
  286. <div
  287. nz-col
  288. nzSpan="4"
  289. class="borderR alignC display_flex justify-content_flex-center align-items_center h100p"
  290. >
  291. <img
  292. src="../../assets/images/icon_hubiaoben.png"
  293. alt=""
  294. />
  295. </div>
  296. <div nz-col nzSpan="20">
  297. <div class="txtC h33 borderB overAuto">
  298. {{ specimenWorkOrderMsg.specimenInfo || "" }}
  299. </div>
  300. <div nz-row class="h53">
  301. <div
  302. nz-col
  303. nzSpan="12"
  304. class="txtC borderR h100p cur"
  305. (click)="changeSpeDetail(1)"
  306. >
  307. <p>
  308. {{
  309. specimenWorkOrderMsg.specimenCount
  310. ? specimenWorkOrderMsg.specimenCount.urgent
  311. : 0
  312. }}
  313. </p>
  314. <div>急标数量</div>
  315. </div>
  316. <div
  317. nz-col
  318. nzSpan="12"
  319. class="txtC h100p cur"
  320. (click)="changeSpeDetail(0)"
  321. >
  322. <p>
  323. {{
  324. specimenWorkOrderMsg.specimenCount
  325. ? specimenWorkOrderMsg.specimenCount.noUrgent
  326. : 0
  327. }}
  328. </p>
  329. <div>普标数量</div>
  330. </div>
  331. </div>
  332. </div>
  333. </div>
  334. <div nz-col nzSpan="6" class="borderR h100p">
  335. <div class="quick">
  336. <button
  337. [nzLoading]="bLoading"
  338. nz-button
  339. nzType="primary"
  340. class="btn txtC"
  341. (click)="newShortcutOrder1(bbMsg, 'bb')"
  342. >
  343. {{ specimenButton }}
  344. </button>
  345. <!-- <button class="btn txtC" (click)="newShortcutOrder1(bbMsg,'bb',true)">
  346. 收取急查标本
  347. </button> -->
  348. </div>
  349. </div>
  350. </div>
  351. <!-- 药品/静配信息未开通 -->
  352. <div
  353. *ngIf="
  354. !deptTaskTypeRules.openStaticDistribution &&
  355. !deptTaskTypeRules.openDrugsBag &&
  356. !drugJpLoading
  357. "
  358. nz-col
  359. nzSpan="11"
  360. nz-row
  361. class="h100p"
  362. >
  363. <div
  364. class="notAvailable display_flex align-items_center justify-content_flex-center"
  365. >
  366. <div>
  367. <img
  368. src="../../assets/images/icon_jianchakong.png"
  369. alt=""
  370. />
  371. <div>暂未开通</div>
  372. </div>
  373. </div>
  374. <div
  375. nz-col
  376. nzSpan="6"
  377. class="borderR alignC display_flex justify-content_flex-center align-items_center h100p"
  378. >
  379. <img
  380. src="../../assets/images/icon_hujingpei.png"
  381. alt=""
  382. />
  383. </div>
  384. <div nz-col nzSpan="18" class="h100p">
  385. <div
  386. class="txtC h50p alignC display_flex justify-content_flex-center align-items_center overAuto borderB"
  387. >
  388. <span>*****</span>
  389. </div>
  390. <div
  391. class="txtC h50p alignC display_flex justify-content_flex-center align-items_center overAuto"
  392. >
  393. <span>*****</span>
  394. </div>
  395. </div>
  396. </div>
  397. <!-- 药品/静配信息已开通 -->
  398. <div
  399. *ngIf="
  400. (deptTaskTypeRules.openStaticDistribution ||
  401. deptTaskTypeRules.openDrugsBag) &&
  402. !drugJpLoading
  403. "
  404. nz-col
  405. nzSpan="11"
  406. nz-row
  407. class="h100p"
  408. >
  409. <div
  410. nz-col
  411. nzSpan="6"
  412. class="borderR alignC display_flex justify-content_flex-center align-items_center h100p"
  413. >
  414. <img
  415. src="../../assets/images/icon_hujingpei.png"
  416. alt=""
  417. />
  418. </div>
  419. <div nz-col nzSpan="18" class="h100p">
  420. <div class="txtC h50p borderB">
  421. <div class="swiperBox">
  422. <div
  423. class="swiper"
  424. [ngStyle]="{ top: swiperTop + 'px' }"
  425. *ngIf="
  426. jpDrugsWKOMsg.drugsInfoList &&
  427. jpDrugsWKOMsg.drugsInfoList.length > 0
  428. "
  429. >
  430. <div
  431. class="item txtC alignC display_flex justify-content_flex-center align-items_center"
  432. *ngFor="let item of jpDrugsWKOMsg.drugsInfoList"
  433. >
  434. <span>{{ item }}</span>
  435. </div>
  436. </div>
  437. <div
  438. class="swiper none display_flex justify-content_flex-center align-items_center"
  439. *ngIf="
  440. !jpDrugsWKOMsg.drugsInfoList ||
  441. !jpDrugsWKOMsg.drugsInfoList.length
  442. "
  443. >
  444. <div
  445. class="item alignC display_flex justify-content_flex-center align-items_center"
  446. >
  447. <span>暂无药品配送信息</span>
  448. </div>
  449. </div>
  450. </div>
  451. </div>
  452. <div class="txtC h50p">
  453. <div class="swiperBox">
  454. <div
  455. class="swiper"
  456. [ngStyle]="{ top: swiperTop1 + 'px' }"
  457. *ngIf="
  458. jpDrugsWKOMsg.jpInfoList &&
  459. jpDrugsWKOMsg.jpInfoList.length > 0
  460. "
  461. >
  462. <div
  463. class="item txtC alignC display_flex justify-content_flex-center align-items_center"
  464. *ngFor="let item of jpDrugsWKOMsg.jpInfoList"
  465. >
  466. <span>{{ item }}</span>
  467. </div>
  468. </div>
  469. <div
  470. class="swiper none display_flex justify-content_flex-center align-items_center"
  471. *ngIf="
  472. !jpDrugsWKOMsg.jpInfoList ||
  473. !jpDrugsWKOMsg.jpInfoList.length
  474. "
  475. >
  476. <div
  477. class="item alignC display_flex justify-content_flex-center align-items_center"
  478. >
  479. <!-- <span>暂无静配配送信息</span> -->
  480. <span></span>
  481. </div>
  482. </div>
  483. </div>
  484. </div>
  485. </div>
  486. </div>
  487. <div
  488. *ngIf="drugJpLoading"
  489. nz-col
  490. nzSpan="11"
  491. nz-row
  492. class="h100p display_flex justify-content_flex-center align-items_center"
  493. >
  494. <div class="txtC" style="text-align: center">
  495. <img src="../../../assets/images/loading.gif" alt="" />
  496. <div>加载中...</div>
  497. </div>
  498. </div>
  499. </div>
  500. <div class="tab borderB" nz-row style="padding: 4px 0">
  501. <div
  502. nz-col
  503. nzSpan="3"
  504. [ngClass]="{
  505. txtC: true,
  506. cur: true,
  507. checked: checkedTableType == 'other'
  508. }"
  509. (click)="checkTable('other')"
  510. >
  511. <div class="text">其他任务建单</div>
  512. </div>
  513. <div
  514. nz-col
  515. nzSpan="3"
  516. [ngClass]="{
  517. txtC: true,
  518. cur: true,
  519. checked: checkedTableType == 'advice'
  520. }"
  521. (click)="checkTable('advice')"
  522. >
  523. <div class="text">意见箱</div>
  524. </div>
  525. <div
  526. nz-col
  527. nzSpan="3"
  528. [ngClass]="{
  529. txtC: true,
  530. cur: true,
  531. checked: checkedTableType == 'historySpecimen'
  532. }"
  533. (click)="checkTable('historySpecimen')"
  534. >
  535. <div class="text">历史标本查询</div>
  536. </div>
  537. <div
  538. nz-col
  539. nzSpan="3"
  540. [ngClass]="{
  541. txtC: true,
  542. cur: true,
  543. checked: checkedTableType == 'historyDrugsbag'
  544. }"
  545. (click)="checkTable('historyDrugsbag')"
  546. >
  547. <div class="text">历史药单查询</div>
  548. </div>
  549. <div *ngIf="isShowBx" nz-col nzSpan="3" [ngClass]="{
  550. txtC: true,
  551. cur: true,
  552. checked: checkedTableType == 'kjbx'
  553. }" (click)="checkTable('kjbx')">
  554. <div class="text">快捷报修</div>
  555. </div>
  556. <div *ngIf="isShowBx" nz-col nzSpan="3" [ngClass]="{
  557. txtC: true,
  558. cur: true,
  559. checked: checkedTableType == 'bxlb'
  560. }" (click)="checkTable('bxlb')">
  561. <div class="text">报修列表</div>
  562. </div>
  563. <div
  564. nz-col
  565. nzSpan="{{isShowBx?6:12}}"
  566. class="txtC h100p alignR display_flex justify-content_flex-end align-items_center"
  567. >
  568. <div class="btn txtC" *ngIf="mainRole&&loginUser.usertype.value != 1" (click)="toMain()">
  569. 回到系统管理
  570. </div>
  571. <div class="btn txtC" *ngIf="mainRole&&loginUser.usertype.value == 1" (click)="toOrder()">
  572. 查看工单
  573. </div>
  574. </div>
  575. </div>
  576. </div>
  577. <!-- 其他任务建单 -->
  578. <div
  579. *ngIf="checkedTableType == 'other'"
  580. style="flex: 1; height: 100%; position: relative"
  581. >
  582. <div class="otherBox">
  583. <div class="otherBoxInner">
  584. <div class="otherBox-nav">
  585. <div class="otherBox-nav__head">
  586. <input
  587. nz-input
  588. placeholder="请输入关键字"
  589. [(ngModel)]="otherSearch"
  590. (ngModelChange)="otherSearchChange()"
  591. />
  592. </div>
  593. <overlay-scrollbars
  594. #osComponentRef2
  595. class="otherBox-nav__main"
  596. [ngStyle]="{ height: '100%' }"
  597. >
  598. <div
  599. class="otherBox-nav__mainInner"
  600. *ngIf="!oLoading && othersList.length > 0"
  601. >
  602. <div
  603. [sortablejs]="othersList"
  604. [sortablejsOptions]="othersListOptions"
  605. class="w100"
  606. >
  607. <div
  608. class="otherBox-nav__mainItem"
  609. *ngFor="let item of othersList"
  610. (click)="otherClick(item)"
  611. [ngClass]="{ active: selectOtherId == item.id }"
  612. [title]="item.taskName"
  613. >
  614. {{ item.taskName }}
  615. </div>
  616. </div>
  617. </div>
  618. <div
  619. class="otherBox-nav__mainInner noData"
  620. *ngIf="!oLoading && othersList.length == 0"
  621. >
  622. 暂无数据
  623. </div>
  624. <div
  625. class="otherBox-nav__mainInner oLoading"
  626. *ngIf="oLoading"
  627. >
  628. <img
  629. src="../../../assets/images/loading.gif"
  630. alt=""
  631. />
  632. <div>加载中...</div>
  633. </div>
  634. </overlay-scrollbars>
  635. </div>
  636. <div class="otherBox-main">
  637. <div class="otherBox-main__main">
  638. <!-- -----------------start------------------ -->
  639. <div class="modalBody_box">
  640. <div class="modalBody">
  641. <div
  642. class="modalBody_left"
  643. *ngIf="!nLoading && selectOtherId"
  644. >
  645. <overlay-scrollbars
  646. class="modalBody_left_box"
  647. #osComponentRef3
  648. style="height: calc(100vh - 263px)"
  649. >
  650. <div class="modalBody_left_box">
  651. <div
  652. style="
  653. flex: 1;
  654. display: flex;
  655. flex-direction: column;
  656. justify-content: center;
  657. align-items: center;
  658. "
  659. >
  660. <div
  661. class="content txtC"
  662. *ngIf="
  663. buildMsg.status == 100013 ||
  664. buildMsg.status == 100014 ||
  665. buildMsg.status == 100015
  666. "
  667. >
  668. <div
  669. class="defeat"
  670. [innerHTML]="buildMsg.msg"
  671. ></div>
  672. </div>
  673. <!-- 200 该任务类型运送过程暂未配置 -->
  674. <div
  675. class="content txtC"
  676. *ngIf="
  677. buildMsg.status == 200 &&
  678. buildType == 'bb'
  679. "
  680. >
  681. <div
  682. class="defeat"
  683. [innerHTML]="buildMsg.msg"
  684. ></div>
  685. </div>
  686. <!-- 100009 该任务类型运送过程暂未配置 -->
  687. <div
  688. class="content txtC"
  689. *ngIf="buildMsg.status == 100009"
  690. >
  691. <div
  692. class="defeat"
  693. [innerHTML]="buildMsg.msg"
  694. ></div>
  695. </div>
  696. <!-- 100010 系统未查询到该任务类型关联信息 -->
  697. <div
  698. class="content txtC"
  699. *ngIf="buildMsg.status == 100010"
  700. >
  701. <div
  702. class="defeat"
  703. [innerHTML]="buildMsg.msg"
  704. ></div>
  705. </div>
  706. <!-- 100012 (护士端一键建单展示策略)直接取msg -->
  707. <div
  708. class="content txtC"
  709. *ngIf="buildMsg.status == 100012"
  710. >
  711. <div
  712. class="defeat"
  713. [innerHTML]="buildMsg.msg"
  714. ></div>
  715. </div>
  716. <!-- 100013 (护士端一键建单展示策略)取起点科室,和mgs值展示 -->
  717. <div
  718. class="content"
  719. *ngIf="buildMsg.status == 100013"
  720. >
  721. <div>
  722. <form
  723. nz-form
  724. [formGroup]="shortcutForm"
  725. class="shortcutForm"
  726. >
  727. <nz-form-item>
  728. <nz-form-label
  729. [nzSm]="6"
  730. [nzXs]="24"
  731. nzRequired
  732. nzFor="originOffice"
  733. >起点科室
  734. </nz-form-label>
  735. <nz-form-control
  736. nzErrorTip="请选择起点科室!"
  737. >
  738. <nz-select
  739. class="w100"
  740. formControlName="originOffice"
  741. [nzDropdownMatchSelectWidth]="
  742. false
  743. "
  744. nzServerSearch
  745. nzShowSearch
  746. (nzOnSearch)="
  747. searchDept(
  748. 'start',
  749. buildMsg,
  750. $event
  751. )
  752. "
  753. nzPlaceHolder="请选择起点科室"
  754. >
  755. <ng-container
  756. *ngFor="
  757. let option of buildMsg.start
  758. .start.list
  759. "
  760. >
  761. <nz-option
  762. *ngIf="true"
  763. [nzLabel]="
  764. deptDisplay == 2
  765. ? option.deptalias
  766. : option.dept
  767. "
  768. [nzValue]="option.id"
  769. >
  770. </nz-option>
  771. </ng-container>
  772. <nz-option
  773. *ngIf="false"
  774. nzDisabled
  775. nzCustomContent
  776. >
  777. <i
  778. nz-icon
  779. nzType="loading"
  780. class="loading-icon"
  781. ></i>
  782. 搜索中...
  783. </nz-option>
  784. </nz-select>
  785. </nz-form-control>
  786. </nz-form-item>
  787. </form>
  788. </div>
  789. </div>
  790. <!-- 100014 (护士端一键建单展示策略)取终点科室和msg 值展示 -->
  791. <div
  792. class="content"
  793. *ngIf="buildMsg.status == 100014"
  794. >
  795. <div>
  796. <form
  797. nz-form
  798. [formGroup]="shortcutForm"
  799. class="shortcutForm"
  800. >
  801. <nz-form-item>
  802. <nz-form-label
  803. [nzSm]="6"
  804. [nzXs]="24"
  805. nzRequired
  806. nzFor="targetOffice"
  807. >目标科室
  808. </nz-form-label>
  809. <nz-form-control
  810. nzErrorTip="请选择目标科室!"
  811. >
  812. <nz-select
  813. class="w100"
  814. formControlName="targetOffice"
  815. [nzDropdownMatchSelectWidth]="
  816. false
  817. "
  818. nzServerSearch
  819. nzShowSearch
  820. (nzOnSearch)="
  821. searchDept(
  822. 'target',
  823. buildMsg,
  824. $event
  825. )
  826. "
  827. nzAllowClear
  828. nzPlaceHolder="请选择目标科室"
  829. >
  830. <ng-container
  831. *ngFor="
  832. let option of buildMsg.end
  833. .end.list
  834. "
  835. >
  836. <nz-option
  837. *ngIf="true"
  838. [nzLabel]="
  839. deptDisplay == 2
  840. ? option.deptalias
  841. : option.dept
  842. "
  843. [nzValue]="option.id"
  844. >
  845. </nz-option>
  846. </ng-container>
  847. <nz-option
  848. *ngIf="false"
  849. nzDisabled
  850. nzCustomContent
  851. >
  852. <i
  853. nz-icon
  854. nzType="loading"
  855. class="loading-icon"
  856. ></i>
  857. 搜索中...
  858. </nz-option>
  859. </nz-select>
  860. </nz-form-control>
  861. </nz-form-item>
  862. </form>
  863. </div>
  864. </div>
  865. <!-- 100015 (护士端一键建单展策略)起点科室和终点科室下拉展示 -->
  866. <div
  867. class="content"
  868. *ngIf="buildMsg.status == 100015"
  869. >
  870. <div>
  871. <form
  872. nz-form
  873. [formGroup]="shortcutForm"
  874. class="shortcutForm"
  875. >
  876. <nz-form-item>
  877. <nz-form-label
  878. [nzSm]="6"
  879. [nzXs]="24"
  880. nzRequired
  881. nzFor="originOffice"
  882. >起点科室
  883. </nz-form-label>
  884. <nz-form-control
  885. nzErrorTip="请选择起点科室!"
  886. >
  887. <nz-select
  888. class="w100"
  889. formControlName="originOffice"
  890. [nzDropdownMatchSelectWidth]="
  891. false
  892. "
  893. nzServerSearch
  894. nzShowSearch
  895. (nzOnSearch)="
  896. searchDept(
  897. 'start',
  898. buildMsg,
  899. $event
  900. )
  901. "
  902. nzPlaceHolder="请选择起点科室"
  903. >
  904. <ng-container
  905. *ngFor="
  906. let option of buildMsg.start
  907. .start.list
  908. "
  909. >
  910. <nz-option
  911. *ngIf="true"
  912. [nzLabel]="
  913. deptDisplay == 2
  914. ? option.deptalias
  915. : option.dept
  916. "
  917. [nzValue]="option.id"
  918. >
  919. </nz-option>
  920. </ng-container>
  921. <nz-option
  922. *ngIf="false"
  923. nzDisabled
  924. nzCustomContent
  925. >
  926. <i
  927. nz-icon
  928. nzType="loading"
  929. class="loading-icon"
  930. ></i>
  931. 搜索中...
  932. </nz-option>
  933. </nz-select>
  934. </nz-form-control>
  935. </nz-form-item>
  936. <nz-form-item>
  937. <nz-form-label
  938. [nzSm]="6"
  939. [nzXs]="24"
  940. nzRequired
  941. nzFor="targetOffice"
  942. >目标科室
  943. </nz-form-label>
  944. <nz-form-control
  945. nzErrorTip="请选择目标科室!"
  946. >
  947. <nz-select
  948. class="w100"
  949. formControlName="targetOffice"
  950. [nzDropdownMatchSelectWidth]="
  951. false
  952. "
  953. nzServerSearch
  954. nzShowSearch
  955. (nzOnSearch)="
  956. searchDept(
  957. 'target',
  958. buildMsg,
  959. $event
  960. )
  961. "
  962. nzPlaceHolder="请选择目标科室"
  963. >
  964. <ng-container
  965. *ngFor="
  966. let option of buildMsg.end
  967. .end.list
  968. "
  969. >
  970. <nz-option
  971. *ngIf="true"
  972. [nzLabel]="
  973. deptDisplay == 2
  974. ? option.deptalias
  975. : option.dept
  976. "
  977. [nzValue]="option.id"
  978. >
  979. </nz-option>
  980. </ng-container>
  981. <nz-option
  982. *ngIf="false"
  983. nzDisabled
  984. nzCustomContent
  985. >
  986. <i
  987. nz-icon
  988. nzType="loading"
  989. class="loading-icon"
  990. ></i>
  991. 搜索中...
  992. </nz-option>
  993. </nz-select>
  994. </nz-form-control>
  995. </nz-form-item>
  996. </form>
  997. </div>
  998. </div>
  999. <!-- 工单备注: -->
  1000. <div
  1001. style="width: 100%; margin: 10px auto 0"
  1002. *ngIf="buildMsg.remarksSwitch == 1"
  1003. >
  1004. <p>工单备注:</p>
  1005. <textarea
  1006. nz-input
  1007. [placeholder]="workOrderRemarkTips"
  1008. [nzAutosize]="{
  1009. minRows: 3,
  1010. maxRows: 5
  1011. }"
  1012. maxlength="100"
  1013. [(ngModel)]="workOrderRemark"
  1014. #remarksEle
  1015. ></textarea>
  1016. <p
  1017. class="mt8 mb8"
  1018. *ngIf="customRemarks.length"
  1019. >
  1020. 快捷输入:
  1021. </p>
  1022. <div *ngIf="customRemarks.length">
  1023. <span
  1024. class="addRemarks"
  1025. *ngFor="let item of customRemarks"
  1026. (click)="addRemarks(item)"
  1027. >【{{ item }}】</span
  1028. >
  1029. </div>
  1030. <p
  1031. class="mt8 mb8"
  1032. *ngIf="historyCustomRemarks.length"
  1033. >
  1034. 历史输入:
  1035. </p>
  1036. <div *ngIf="historyCustomRemarks.length">
  1037. <span
  1038. class="addRemarks"
  1039. *ngFor="
  1040. let item of historyCustomRemarks
  1041. "
  1042. (click)="addRemarks(item)"
  1043. >【{{ item }}】</span
  1044. >
  1045. </div>
  1046. </div>
  1047. </div>
  1048. <div
  1049. *ngIf="selectOtherId"
  1050. class="btns display_flex justify-content_flex-center"
  1051. >
  1052. <button
  1053. *ngIf="
  1054. buildMsg.status != 100009 &&
  1055. buildMsg.status != 100010
  1056. "
  1057. nz-button
  1058. nzType="primary"
  1059. [nzLoading]="loading5"
  1060. (click)="confirmShortcut()"
  1061. >
  1062. 确认
  1063. </button>
  1064. </div>
  1065. </div>
  1066. </overlay-scrollbars>
  1067. </div>
  1068. <div
  1069. class="modalBody_left nLoading"
  1070. *ngIf="nLoading"
  1071. >
  1072. <img
  1073. src="../../../assets/images/loading.gif"
  1074. alt=""
  1075. />
  1076. <div>加载中...</div>
  1077. </div>
  1078. <div
  1079. class="modalBody_left noData"
  1080. *ngIf="!nLoading && !selectOtherId"
  1081. >
  1082. 暂无数据
  1083. </div>
  1084. <div class="modalBody_right">
  1085. <div class="modalBody_right_head">
  1086. 综合日志<span>{{ logTime }}秒后自动刷新</span>
  1087. </div>
  1088. <overlay-scrollbars
  1089. class="modalBody_right_box"
  1090. #osComponentRef9
  1091. style="height: 100%"
  1092. *ngIf="!rLoading && listDeptOrderRecords.length"
  1093. >
  1094. <div class="modalBody_right_box">
  1095. <div
  1096. class="modalBody_right_list"
  1097. *ngFor="let item of listDeptOrderRecords"
  1098. [innerHTML]="item.msg | htmlTransform"
  1099. ></div>
  1100. </div>
  1101. </overlay-scrollbars>
  1102. <div
  1103. class="modalBody_left nLoading w100"
  1104. *ngIf="rLoading"
  1105. >
  1106. <img
  1107. src="../../../assets/images/loading.gif"
  1108. alt=""
  1109. />
  1110. <div>加载中...</div>
  1111. </div>
  1112. <div
  1113. class="modalBody_left noData w100"
  1114. *ngIf="
  1115. !rLoading && !listDeptOrderRecords.length
  1116. "
  1117. >
  1118. 暂无数据
  1119. </div>
  1120. </div>
  1121. </div>
  1122. </div>
  1123. <!-- -----------------end------------------ -->
  1124. </div>
  1125. </div>
  1126. </div>
  1127. </div>
  1128. </div>
  1129. <!-- 意见箱 -->
  1130. <div
  1131. *ngIf="checkedTableType == 'advice'"
  1132. style="flex: 1; height: 100%"
  1133. >
  1134. <div
  1135. class="searchBox display_flex align-items_center justify-content_space-between"
  1136. >
  1137. <div
  1138. class="left alignC display_flex justify-content_flex-center align-items_center"
  1139. >
  1140. <div>意见内容:</div>
  1141. <div>
  1142. <input
  1143. nz-input
  1144. placeholder="请输入关键字"
  1145. [(ngModel)]="adviceSearchInp"
  1146. />
  1147. </div>
  1148. </div>
  1149. <div class="btns">
  1150. <button
  1151. nz-button
  1152. nzType="primary"
  1153. nzGhost
  1154. (click)="getAdvice()"
  1155. >
  1156. 搜索
  1157. </button>
  1158. <button nz-button nzType="primary" (click)="addAdvice()">
  1159. 新增
  1160. </button>
  1161. </div>
  1162. </div>
  1163. <div class="table">
  1164. <div class="box">
  1165. <nz-table
  1166. class="hospitalTable"
  1167. [nzData]="adviceList"
  1168. nzSize="middle"
  1169. [nzShowPagination]="false"
  1170. [nzLoading]="adviceLoading"
  1171. >
  1172. <thead>
  1173. <tr class="thead">
  1174. <th nzWidth="7%">序号</th>
  1175. <th nzWidth="15%">填写时间</th>
  1176. <th nzWidth="36%">意见内容</th>
  1177. <th nzWidth="12%">状态</th>
  1178. <th nzWidth="30%">操作</th>
  1179. </tr>
  1180. </thead>
  1181. <tbody>
  1182. <tr *ngFor="let data of adviceList; let i = index">
  1183. <td>{{ i + 1 }}</td>
  1184. <td>{{ data.createTime.slice(0, 16) }}</td>
  1185. <td>
  1186. <span
  1187. style="overflow: hidden; text-overflow: ellipsis"
  1188. >
  1189. {{ spliceContent(data.content) }}
  1190. </span>
  1191. </td>
  1192. <td>
  1193. {{ data.replaceFlag == 1 ? "已回复" : "未回复" }}
  1194. </td>
  1195. <td>
  1196. <div class="coop">
  1197. <span (click)="adviceDetail(data.id)">查看</span>
  1198. <span
  1199. *ngIf="data.replaceFlag == 0"
  1200. (click)="addAdvice(data)"
  1201. >编辑</span
  1202. >
  1203. <span
  1204. *ngIf="data.replaceFlag == 0"
  1205. (click)="delAdvice(data.id)"
  1206. >删除</span
  1207. >
  1208. </div>
  1209. </td>
  1210. </tr>
  1211. </tbody>
  1212. </nz-table>
  1213. <div class="pagination">
  1214. <nz-pagination
  1215. [(nzPageIndex)]="advicePageIndex"
  1216. [(nzTotal)]="adviceListLength"
  1217. nzShowSizeChanger
  1218. [(nzPageSize)]="advicePageSize"
  1219. (nzPageIndexChange)="getAdvice()"
  1220. (nzPageSizeChange)="getAdvice()"
  1221. >
  1222. </nz-pagination>
  1223. </div>
  1224. </div>
  1225. </div>
  1226. </div>
  1227. <!-- 历史标本查询 -->
  1228. <div
  1229. *ngIf="checkedTableType == 'historySpecimen'"
  1230. style="flex: 1; height: 100%"
  1231. >
  1232. <div
  1233. class="searchBox display_flex align-items_center justify-content_space-between"
  1234. >
  1235. <div
  1236. class="left alignC display_flex justify-content_flex-center align-items_center"
  1237. >
  1238. <div>标本编码:</div>
  1239. <div>
  1240. <input
  1241. nz-input
  1242. placeholder="请输入标本编码"
  1243. [(ngModel)]="historySpecimenCodeSearchInp"
  1244. />
  1245. </div>
  1246. <div class="ml8">患者信息:</div>
  1247. <div>
  1248. <input
  1249. nz-input
  1250. placeholder="请输入患者信息"
  1251. [(ngModel)]="historySpecimenParentSearchInp"
  1252. />
  1253. </div>
  1254. </div>
  1255. <div class="btns">
  1256. <button
  1257. nz-button
  1258. nzType="primary"
  1259. nzGhost
  1260. (click)="getHistorySpecimen(true)"
  1261. >
  1262. 搜索
  1263. </button>
  1264. </div>
  1265. </div>
  1266. <div class="table">
  1267. <div class="box">
  1268. <nz-table
  1269. class="hospitalTable"
  1270. [nzData]="historySpecimenList"
  1271. nzSize="middle"
  1272. [nzShowPagination]="false"
  1273. [nzLoading]="hsLoading"
  1274. >
  1275. <thead>
  1276. <tr class="thead">
  1277. <th nzWidth="7%">序号</th>
  1278. <th nzWidth="8%">标本类型</th>
  1279. <th nzWidth="8%">状态</th>
  1280. <th nzWidth="10%">标本编码</th>
  1281. <th nzWidth="8%">患者姓名</th>
  1282. <th nzWidth="8%">床号</th>
  1283. <th nzWidth="12%">收取扫描时间</th>
  1284. <th nzWidth="8%">收取人</th>
  1285. <th nzWidth="10%">送达目标科室</th>
  1286. <th nzWidth="12%">送达到达时间</th>
  1287. <th nzWidth="9%"></th>
  1288. </tr>
  1289. </thead>
  1290. <tbody>
  1291. <tr
  1292. *ngFor="
  1293. let data of historySpecimenList;
  1294. let i = index
  1295. "
  1296. >
  1297. <td>{{ i + 1 }}</td>
  1298. <td>{{ data.stype ? data.stype.name : "-" }}</td>
  1299. <td>
  1300. {{ data.speState ? data.speState.name : "-" }}
  1301. </td>
  1302. <td>{{ data.scode || "-" }}</td>
  1303. <td>{{ data.patientName || "-" }}</td>
  1304. <td>{{ data.bedNum || "-" }}</td>
  1305. <td>{{ data.arriveTime || "-" }}</td>
  1306. <td>{{ data.worker || "-" }}</td>
  1307. <td>
  1308. {{
  1309. data.checkDept
  1310. ? deptDisplay == 2
  1311. ? data.checkDept.deptalias
  1312. : data.checkDept.dept
  1313. : "-"
  1314. }}
  1315. </td>
  1316. <td>{{ data.sendTime || "-" }}</td>
  1317. <td>
  1318. <button (click)="viewSpecimenHistory(data)">
  1319. 查看
  1320. </button>
  1321. </td>
  1322. </tr>
  1323. </tbody>
  1324. </nz-table>
  1325. <div class="pagination">
  1326. <nz-pagination
  1327. [(nzPageIndex)]="historySpecimenPageIndex"
  1328. [(nzTotal)]="historySpecimenListLength"
  1329. [(nzPageSize)]="historySpecimenPageSize"
  1330. (nzPageIndexChange)="getHistorySpecimen()"
  1331. (nzPageSizeChange)="getHistorySpecimen()"
  1332. >
  1333. </nz-pagination>
  1334. </div>
  1335. </div>
  1336. </div>
  1337. </div>
  1338. <!-- 历史药单查询 -->
  1339. <div
  1340. *ngIf="checkedTableType == 'historyDrugsbag'"
  1341. style="flex: 1; height: 100%"
  1342. >
  1343. <div
  1344. class="searchBox display_flex align-items_center justify-content_space-between"
  1345. >
  1346. <div
  1347. class="left alignC display_flex justify-content_flex-center align-items_center"
  1348. >
  1349. <div>发药单号:</div>
  1350. <div>
  1351. <input
  1352. nz-input
  1353. placeholder="请输入发药单号"
  1354. [(ngModel)]="historyDrugsbagCodeSearchInp"
  1355. />
  1356. </div>
  1357. <!-- <div class="ml8">患者信息:</div>
  1358. <div>
  1359. <input nz-input placeholder="请输入患者信息" [(ngModel)]="historySpecimenParentSearchInp" />
  1360. </div> -->
  1361. </div>
  1362. <div class="btns">
  1363. <button
  1364. nz-button
  1365. nzType="primary"
  1366. nzGhost
  1367. (click)="getHistoryDrugsbag(true)"
  1368. >
  1369. 搜索
  1370. </button>
  1371. </div>
  1372. </div>
  1373. <div class="table">
  1374. <div class="box">
  1375. <nz-table
  1376. class="hospitalTable"
  1377. [nzData]="historyDrugsbagList"
  1378. nzSize="middle"
  1379. [nzShowPagination]="false"
  1380. [nzLoading]="hsDLoading"
  1381. >
  1382. <thead>
  1383. <tr class="thead">
  1384. <th nzWidth="7%">序号</th>
  1385. <th nzWidth="15%">药单单号</th>
  1386. <th nzWidth="18%">发药科室</th>
  1387. <th nzWidth="15%">申请时间</th>
  1388. <th nzWidth="15%">记账时间</th>
  1389. <th nzWidth="15%">状态</th>
  1390. <th nzWidth="15%">查看过程</th>
  1391. </tr>
  1392. </thead>
  1393. <tbody>
  1394. <tr
  1395. *ngFor="
  1396. let data of historyDrugsbagList;
  1397. let i = index
  1398. "
  1399. >
  1400. <td>{{ i + 1 }}</td>
  1401. <td>{{ data.packid || "-" }}</td>
  1402. <td>
  1403. {{
  1404. data.launch
  1405. ? deptDisplay == 2
  1406. ? data.launch.deptalias
  1407. : data.launch.dept
  1408. : "-"
  1409. }}
  1410. </td>
  1411. <td>{{ data.creatTime || "-" }}</td>
  1412. <td>{{ data.bagTime || "-" }}</td>
  1413. <td>
  1414. {{ data.drugsState ? data.drugsState.name : "-" }}
  1415. </td>
  1416. <td>
  1417. <button (click)="viewDrugsbagHistory(data)">
  1418. 查看过程
  1419. </button>
  1420. </td>
  1421. </tr>
  1422. </tbody>
  1423. </nz-table>
  1424. <div class="pagination">
  1425. <nz-pagination
  1426. [(nzPageIndex)]="historyDrugsbagPageIndex"
  1427. [(nzTotal)]="historyDrugsbagListLength"
  1428. [(nzPageSize)]="historyDrugsbagPageSize"
  1429. (nzPageIndexChange)="getHistoryDrugsbag()"
  1430. (nzPageSizeChange)="getHistoryDrugsbag()"
  1431. >
  1432. </nz-pagination>
  1433. </div>
  1434. </div>
  1435. </div>
  1436. </div>
  1437. <!-- 快捷报修 -->
  1438. <div *ngIf="checkedTableType == 'kjbx'&&isShowBx" style="flex: 1; height: 100%;display:flex;">
  1439. <form nz-form [formGroup]="bxForm" (ngSubmit)="submitBxForm()" class="bxForm bxFlex">
  1440. <nz-form-item>
  1441. <nz-form-label [nzSpan]="8" nzRequired nzFor="name">联系人</nz-form-label>
  1442. <nz-form-control [nzSpan]="12" nzErrorTip="请填写联系人">
  1443. <input type="text" nz-input formControlName="name" placeholder="请填写联系人" />
  1444. </nz-form-control>
  1445. </nz-form-item>
  1446. <nz-form-item>
  1447. <nz-form-label [nzSpan]="8" nzRequired nzFor="phone">联系人电话</nz-form-label>
  1448. <nz-form-control [nzSpan]="12" nzErrorTip="请填写联系人电话">
  1449. <input type="text" nz-input formControlName="phone" placeholder="请填写联系人电话" />
  1450. </nz-form-control>
  1451. </nz-form-item>
  1452. <nz-form-item>
  1453. <nz-form-label [nzSpan]="8" nzFor="hospital" nzRequired>所属院区</nz-form-label>
  1454. <nz-form-control [nzSpan]="12" nzErrorTip="请选择所属院区!">
  1455. <nz-select formControlName="hospital" nzPlaceHolder="请选择所属院区" (ngModelChange)="getPlace($event)">
  1456. <nz-option [nzValue]="area.id" [nzLabel]="area.area" *ngFor="let area of areas"></nz-option>
  1457. </nz-select>
  1458. </nz-form-control>
  1459. </nz-form-item>
  1460. <nz-form-item>
  1461. <nz-form-label [nzSpan]="8" nzFor="building" nzRequired>楼栋</nz-form-label>
  1462. <nz-form-control [nzSpan]="12" nzErrorTip="请选择楼栋!">
  1463. <nz-select formControlName="building" nzPlaceHolder="请选择楼栋">
  1464. <nz-option [nzValue]="place.id" [nzLabel]="place.place" *ngFor="let place of places">
  1465. </nz-option>
  1466. </nz-select>
  1467. </nz-form-control>
  1468. </nz-form-item>
  1469. <nz-form-item>
  1470. <nz-form-label [nzSpan]="8" nzRequired>详细地址</nz-form-label>
  1471. <nz-form-control [nzSpan]="12" nzErrorTip="请填写详细地址">
  1472. <textarea formControlName="address" nz-input rows="2" placeholder="请填写详细地址"></textarea>
  1473. </nz-form-control>
  1474. </nz-form-item>
  1475. <nz-form-item>
  1476. <nz-form-label [nzSpan]="8" nzRequired>报修内容</nz-form-label>
  1477. <nz-form-control [nzSpan]="12" nzErrorTip="请填写报修内容">
  1478. <textarea formControlName="content" nz-input rows="2" placeholder="请填写报修内容"></textarea>
  1479. </nz-form-control>
  1480. </nz-form-item>
  1481. <nz-form-item>
  1482. <nz-form-label [nzSpan]="8" style="visibility: hidden;"></nz-form-label>
  1483. <nz-form-control [nzSpan]="12">
  1484. <button nz-button nzType="primary" [nzLoading]="bxLoading">提交</button>
  1485. </nz-form-control>
  1486. </nz-form-item>
  1487. </form>
  1488. <nz-table class="bxFlex bxTable" [nzData]="quickBxlbList" nzSize="small" [nzShowPagination]="false"
  1489. [nzLoading]="quickBxlbLoading">
  1490. <tbody>
  1491. <tr (click)="showBxModal(data,'您的报修为“'+data.content+'” 是否确认报修?')" *ngFor="
  1492. let data of quickBxlbList;
  1493. let i = index
  1494. ">
  1495. <td>{{ data.content||'无' }}</td>
  1496. </tr>
  1497. </tbody>
  1498. </nz-table>
  1499. </div>
  1500. <!-- 报修列表 -->
  1501. <div *ngIf="checkedTableType == 'bxlb'&&isShowBx" style="flex: 1; height: 100%">
  1502. <div class="
  1503. searchBox
  1504. display_flex
  1505. align-items_center
  1506. justify-content_space-between
  1507. ">
  1508. <div class="
  1509. left
  1510. alignC
  1511. display_flex
  1512. justify-content_flex-center
  1513. align-items_center
  1514. ">
  1515. </div>
  1516. <div class="btns">
  1517. <button nz-button nzType="primary" nzGhost (click)="getBxlb(true)">
  1518. 搜索
  1519. </button>
  1520. </div>
  1521. </div>
  1522. <div class="table">
  1523. <div class="box">
  1524. <nz-table class="hospitalTable" [nzData]="bxlbList" nzSize="middle" [nzShowPagination]="false"
  1525. [nzLoading]="bxlbLoading">
  1526. <thead>
  1527. <tr class="thead">
  1528. <th nzWidth="7%">序号</th>
  1529. <th nzWidth="16%">报修内容</th>
  1530. <th nzWidth="16%">报修时间</th>
  1531. <th nzWidth="16%">报修人</th>
  1532. <th nzWidth="15%">状态</th>
  1533. <th nzWidth="15%">处理人</th>
  1534. <th nzWidth="15%"></th>
  1535. </tr>
  1536. </thead>
  1537. <tbody>
  1538. <tr *ngFor="
  1539. let data of bxlbList;
  1540. let i = index
  1541. ">
  1542. <td>{{ i + 1 }}</td>
  1543. <td>{{ data.description||'无' }}</td>
  1544. <td>
  1545. {{ data.createTime|date:'MM-dd HH:mm' }}
  1546. </td>
  1547. <td>{{ data.requester?data.requester.name:'无' }}</td>
  1548. <td>{{ data.state.name }}</td>
  1549. <td>{{ data.incident?(data.incident.contacts?data.incident.contacts:'无'):'无' }}</td>
  1550. <td>
  1551. <button (click)="viewBx(data)">
  1552. 查看
  1553. </button>
  1554. </td>
  1555. </tr>
  1556. </tbody>
  1557. </nz-table>
  1558. <div class="pagination">
  1559. <nz-pagination [(nzPageIndex)]="bxlbPageIndex" [(nzTotal)]="bxlbListLength"
  1560. [(nzPageSize)]="bxlbPageSize" (nzPageIndexChange)="getBxlb()" (nzPageSizeChange)="getBxlb()">
  1561. </nz-pagination>
  1562. </div>
  1563. </div>
  1564. </div>
  1565. </div>
  1566. </div>
  1567. <div nz-col nzSpan="7" class="orders">
  1568. <div
  1569. class="orderTit display_flex justify-content_space-between align-items_center"
  1570. >
  1571. <span
  1572. >工单列表<b style="font-size: 12px"
  1573. >({{ orderListTime }}秒)</b
  1574. ></span
  1575. >
  1576. <div>
  1577. <nz-select
  1578. style="width: 100px"
  1579. [(ngModel)]="orderStateSelected"
  1580. (ngModelChange)="changeOrderState($event)"
  1581. nzPlaceHolder="请选择工单状态"
  1582. >
  1583. <nz-option nzValue="-1" nzLabel="全部"></nz-option>
  1584. <nz-option nzValue="1" nzLabel="执行中"></nz-option>
  1585. <nz-option nzValue="2" nzLabel="待评价"></nz-option>
  1586. </nz-select>
  1587. <nz-select
  1588. class="ml8"
  1589. style="width: 100px"
  1590. [(ngModel)]="orderSelected"
  1591. (ngModelChange)="changeOrderSel(orderSelected)"
  1592. nzPlaceHolder="请选择任务类型"
  1593. >
  1594. <nz-option nzValue="-1" nzLabel="全部"></nz-option>
  1595. <nz-option
  1596. *ngFor="let item of orderSelectList"
  1597. [nzValue]="item.id"
  1598. [nzLabel]="item.name"
  1599. >
  1600. </nz-option>
  1601. </nz-select>
  1602. </div>
  1603. </div>
  1604. <div
  1605. class="loading display_flex align-items_center justify-content_flex-center"
  1606. *ngIf="OLoading"
  1607. >
  1608. <div>
  1609. <img src="../../assets/images/loading.gif" alt="" />
  1610. <div>加载中...</div>
  1611. </div>
  1612. </div>
  1613. <div
  1614. class="loading none display_flex align-items_center justify-content_flex-center"
  1615. *ngIf="orderLength == 0 && !OLoading"
  1616. >
  1617. <div>
  1618. <div>暂无数据</div>
  1619. </div>
  1620. </div>
  1621. <div class="orderList" *ngIf="orderLength != 0 && !OLoading">
  1622. <overlay-scrollbars #osComponentRef1 class="box">
  1623. <div class="orderLisBox">
  1624. <div class="orderLis">
  1625. <div
  1626. class="loading display_flex align-items_center justify-content_flex-center"
  1627. *ngIf="OLoading"
  1628. >
  1629. <div>
  1630. <img src="../../assets/images/loading.gif" alt="" />
  1631. <div>加载中...</div>
  1632. </div>
  1633. </div>
  1634. <div
  1635. class="orderItem borderB"
  1636. *ngFor="let item of orderList"
  1637. >
  1638. <div class="info">
  1639. <div class="row" nz-row>
  1640. <div nz-col nzSpan="12" class="col txtL">
  1641. {{
  1642. item.isHalfInspect === 1
  1643. ? "半程陪检"
  1644. : item.taskType.taskName
  1645. }}
  1646. <ng-container *ngIf="item.taskType.associationType.value == 'drugsBag' && item.drugs">
  1647. ({{item.drugs.packid}})
  1648. </ng-container>
  1649. <ng-container *ngIf="item.goodsRemark">-{{item.goodsRemark}}</ng-container>
  1650. <span
  1651. *ngIf="
  1652. item.patient &&
  1653. (item.taskType.associationType.value ==
  1654. 'patientTransport' ||
  1655. item.taskType.associationType.value ==
  1656. 'inspect')
  1657. "
  1658. >
  1659. ({{ item.patient.patientName }})
  1660. </span>
  1661. </div>
  1662. <div nz-col nzSpan="12" class="col txtR">
  1663. {{ item.gdState.name }}
  1664. </div>
  1665. </div>
  1666. <div class="row" nz-row>
  1667. <!-- <div nz-col nzSpan="12" class="col txtL"></div> -->
  1668. <div
  1669. nz-col
  1670. nzSpan="12"
  1671. class="col txtL"
  1672. >
  1673. <ng-container *ngIf="item.taskType.associationType.value == 'drugsBag' && item.startDept">
  1674. {{deptDisplay == 2 ? item.startDept.deptalias:item.startDept.dept}}
  1675. </ng-container>
  1676. </div>
  1677. <div
  1678. *ngIf="item.showCreateTime"
  1679. nz-col
  1680. nzSpan="12"
  1681. class="col txtR"
  1682. >
  1683. {{ item.showCreateTime }}
  1684. </div>
  1685. <div
  1686. *ngIf="item.yyjdTime && item.gdState.value == 11"
  1687. nz-col
  1688. nzSpan="12"
  1689. class="col txtR"
  1690. >
  1691. {{item.yyjdTime | date: "MM-dd HH:mm"}}
  1692. </div>
  1693. </div>
  1694. <div class="row" nz-row>
  1695. <div nz-col nzSpan="12" class="col txtL">
  1696. <span *ngIf="item.worker"
  1697. >{{ item.worker.name }}
  1698. {{
  1699. item.worker.phone
  1700. ? "(" + item.worker.phone + ")"
  1701. : ""
  1702. }}</span
  1703. >
  1704. </div>
  1705. <div
  1706. nz-col
  1707. nzSpan="12"
  1708. class="col txtR toDetail"
  1709. (click)="
  1710. openDetails(
  1711. item.id,
  1712. item.taskType.associationType.id
  1713. )
  1714. "
  1715. >
  1716. <span>查看详情>></span>
  1717. </div>
  1718. </div>
  1719. </div>
  1720. <div class="process">
  1721. <div class="box display_flex">
  1722. <div class="steps" *ngFor="let step of item.record">
  1723. <div class="step">
  1724. <div class="txt">
  1725. <i
  1726. [ngClass]="{
  1727. icon_transport: true,
  1728. 'transport-icon_liucheng': true,
  1729. green:
  1730. step.record &&
  1731. step.record[0] &&
  1732. step.record[0].operationTime
  1733. }"
  1734. ></i>
  1735. <p>{{ step.operationName }}</p>
  1736. <p
  1737. class="time"
  1738. *ngIf="
  1739. step.record &&
  1740. step.record[0] &&
  1741. step.record[0].operationTime
  1742. "
  1743. >
  1744. {{
  1745. step.record[0].operationTime
  1746. | date: "MM-dd HH:mm"
  1747. }}
  1748. </p>
  1749. </div>
  1750. <div class="line"></div>
  1751. </div>
  1752. </div>
  1753. </div>
  1754. </div>
  1755. <div class="btns display_flex">
  1756. <div
  1757. class="btn flex_1 appraise"
  1758. *ngIf="item.gdState.id == 73"
  1759. (click)="showAppraise(item.id)"
  1760. >
  1761. 评价
  1762. </div>
  1763. <div
  1764. *ngIf="
  1765. item.gdState.id == 69 ||
  1766. item.gdState.id == 70 ||
  1767. item.gdState.id == 71 ||
  1768. item.gdState.id == 433
  1769. "
  1770. class="btn flex_1 revocation borderR"
  1771. (click)="openRecallModal(item.id)"
  1772. >
  1773. 撤销
  1774. </div>
  1775. <div
  1776. *ngIf="item.gdState.id == 433"
  1777. class="btn flex_1 revocation borderR"
  1778. (click)="openExecModal(item)"
  1779. >
  1780. 立即执行
  1781. </div>
  1782. <div
  1783. *ngIf="
  1784. (item.gdState.id == 69 ||
  1785. item.gdState.id == 71) &&
  1786. item.taskType.allowUrgent == 1 &&
  1787. !item.urgentDetails
  1788. "
  1789. class="btn flex_1 urgent"
  1790. (click)="showJiaji(item.id)"
  1791. >
  1792. 加急
  1793. </div>
  1794. </div>
  1795. <img
  1796. src="../../assets/images/icon_ji.png"
  1797. class="icon_ji"
  1798. *ngIf="
  1799. item.emergencyType && item.emergencyType.id == 300
  1800. "
  1801. />
  1802. <img
  1803. src="../../assets/images/icon_jiaji.png"
  1804. class="icon_ji"
  1805. *ngIf="
  1806. item.emergencyType && item.emergencyType.id == 301
  1807. "
  1808. />
  1809. </div>
  1810. </div>
  1811. </div>
  1812. </overlay-scrollbars>
  1813. <!-- 翻页 -->
  1814. <div class="pageing">
  1815. <div>
  1816. <nz-pagination
  1817. [(nzPageIndex)]="orderIdx"
  1818. [(nzTotal)]="orderLength"
  1819. (nzPageIndexChange)="getOrderList()"
  1820. [nzPageSize]="10"
  1821. nzSimple
  1822. >
  1823. </nz-pagination>
  1824. </div>
  1825. </div>
  1826. </div>
  1827. </div>
  1828. </div>
  1829. </div>
  1830. </nz-content>
  1831. </nz-layout>
  1832. </nz-layout>
  1833. </div>
  1834. <!-- 返回系统按钮 -->
  1835. <!-- 右侧悬浮框 -->
  1836. <!-- <div id="fixedMenu" class="fixed" *ngIf="mainRole">
  1837. <div class="right">
  1838. <div class="fixedMenu hujiaozhongxin">
  1839. <div class="menuItems">
  1840. <div class="item">快捷菜单</div>
  1841. </div>
  1842. </div>
  1843. <div class="fixedMenu">
  1844. <div class="menuItems">
  1845. <div class="others" [ngStyle]="{'height':showLastItems?(mainRole?(35*2)+'px':(35*1)+'px'):0}">
  1846. <div [ngClass]="{'item':true,'checked':fixedTab=='back'}" *ngIf="mainRole"
  1847. (click)="checkFixedTab('toSystem')">
  1848. 返回系统
  1849. </div>
  1850. </div>
  1851. </div>
  1852. <div class="arrow" *ngIf="!showLastItems" (click)="fixedMenuXiala()">
  1853. <i class="icon_transport transport-xiala2-01"></i>
  1854. </div>
  1855. <div class="arrow" *ngIf="showLastItems" (click)="fixedMenuShangla()">
  1856. <i class="icon_transport transport-shangla-"></i>
  1857. </div>
  1858. </div>
  1859. </div>
  1860. <div *ngIf="showLastItems&&fixedTab!=''" (click)="fixedMenuShangla()" class="fixedMark">
  1861. </div>
  1862. </div> -->
  1863. <!-- 患者信息一键建单模态框 -->
  1864. <div
  1865. class="save display_flex align-items_center justify-content_flex-center patient"
  1866. *ngIf="patientModal"
  1867. >
  1868. <div class="modalBody" style="width: 500px">
  1869. <div class="title">
  1870. 患者送检<i
  1871. class="icon_transport transport-guanbi"
  1872. (click)="hidePatientOrder()"
  1873. ></i>
  1874. </div>
  1875. <overlay-scrollbars
  1876. #osComponentRef7
  1877. class="content"
  1878. style="max-height: 80vh"
  1879. >
  1880. <div class="jiTit borderB" *ngIf="checkedShowMsg.msg">
  1881. 提示:您即将创建<b style="color: red">{{ patientMsg.patientName }}</b
  1882. >患者检查,{{ checkedShowMsg.msg }}
  1883. </div>
  1884. <div class="jiTit borderB" *ngIf="!checkedShowMsg.msg">
  1885. 提示:您即将创建<b style="color: red">{{ patientMsg.patientName }}</b
  1886. >患者检查
  1887. </div>
  1888. <div class="jiTit borderB jiTitB">
  1889. 如患者无预约检查无法进行“当天预约检查时”,可使用“特殊情况送检”进行建单。
  1890. </div>
  1891. <div>
  1892. <form nz-form [formGroup]="patientForm" class="patientForm">
  1893. <nz-form-item class="datesControl">
  1894. <nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="checkedType"
  1895. >任务类型</nz-form-label
  1896. >
  1897. <nz-form-control nzErrorTip="请选择任务类型!" class="checkedType">
  1898. <nz-radio-group
  1899. class="radioGroup"
  1900. formControlName="checkedType"
  1901. (ngModelChange)="changeCheckedType()"
  1902. >
  1903. <label
  1904. *ngFor="let item of checkTypeLis"
  1905. nz-radio
  1906. [nzValue]="item.id"
  1907. >{{ item.taskName }}</label
  1908. >
  1909. </nz-radio-group>
  1910. </nz-form-control>
  1911. </nz-form-item>
  1912. <ng-container *ngIf="cLoading">
  1913. <div style="text-align: center">
  1914. <img src="../../../assets/images/loading.gif" alt="" />
  1915. <div>加载中...</div>
  1916. </div>
  1917. </ng-container>
  1918. <ng-container *ngIf="!cLoading">
  1919. <!-- 检查 -->
  1920. <nz-form-item *ngIf="checkedShowMsg.status == 200">
  1921. <nz-form-label [nzSm]="24" [nzXs]="24" nzFor="linkCheck"
  1922. >关联的检查</nz-form-label
  1923. >
  1924. <nz-form-control class="datesGroup" *ngIf="linkCheckLis.length">
  1925. <nz-checkbox-wrapper
  1926. class="linkCheckCheck"
  1927. ngDefaultControl
  1928. formControlName="linkCheck"
  1929. (nzOnChange)="linkCheckLisChange($event)"
  1930. >
  1931. <div nz-row *ngFor="let item of linkCheckLis">
  1932. <div nz-col nzSpan="24">
  1933. <label nz-checkbox [nzValue]="item">{{
  1934. item.label
  1935. }}</label>
  1936. <i
  1937. class="icon_transport transport-zu1468 priority"
  1938. *ngIf="item.priority === 1 || item.priority === '1'"
  1939. ></i>
  1940. </div>
  1941. </div>
  1942. </nz-checkbox-wrapper>
  1943. <div
  1944. class="red"
  1945. style="line-height: normal; font-weight: bold"
  1946. *ngIf="currentTasktype.isMoreDept === 0 && isInspects"
  1947. >
  1948. 您选择的检查包含了多个科室,请您只包含一个科室。
  1949. </div>
  1950. </nz-form-control>
  1951. <div *ngIf="!linkCheckLis.length">暂无关联的检查</div>
  1952. </nz-form-item>
  1953. <div
  1954. class="pos"
  1955. *ngIf="
  1956. (currentTasktype.associationType.value === 'patientTransport' &&
  1957. appointmentZyBuildFlag == 1) ||
  1958. (currentTasktype.associationType.value === 'inspect' &&
  1959. appointmentBuildFlag == 1)
  1960. "
  1961. >
  1962. <!-- 需要预约检查 -->
  1963. <nz-form-item class="pos-item">
  1964. <nz-form-control>
  1965. <label
  1966. nz-checkbox
  1967. [nzDisabled]="
  1968. (!linkCheckLisTrue &&
  1969. currentTasktype.associationType.value === 'inspect') ||
  1970. (linkCheckLisTrue &&
  1971. allowUrgent == 1 &&
  1972. currentTasktype.associationType.value === 'inspect') ||
  1973. (allowUrgent == 1 &&
  1974. currentTasktype.associationType.value ===
  1975. 'patientTransport')
  1976. "
  1977. [(ngModel)]="isYyInspect"
  1978. (ngModelChange)="yyInspectChange($event)"
  1979. [ngModelOptions]="{ standalone: true }"
  1980. style="font-weight: bold"
  1981. >需要预约检查</label
  1982. >
  1983. </nz-form-control>
  1984. </nz-form-item>
  1985. <!-- 预约建单时间-患者其他服务 -->
  1986. <nz-form-item
  1987. class="yyTime"
  1988. [ngClass]="{
  1989. yyTimeError: (!yyTimeZy || !yyDateZy) && clickYYZyFlag
  1990. }"
  1991. *ngIf="
  1992. currentTasktype.associationType.value === 'patientTransport'
  1993. "
  1994. >
  1995. <nz-form-label [nzSm]="24" [nzXs]="24"
  1996. >预约建单时间</nz-form-label
  1997. >
  1998. <nz-form-control [nzSm]="24" [nzXs]="24">
  1999. <nz-date-picker
  2000. [nzDisabled]="!isYyInspect"
  2001. [(ngModel)]="yyDateZy"
  2002. (ngModelChange)="yyDateChange($event)"
  2003. [ngModelOptions]="{ standalone: true }"
  2004. [nzAllowClear]="false"
  2005. [nzDisabledDate]="disabledyyDateZy"
  2006. [nzShowToday]="false"
  2007. ></nz-date-picker>
  2008. <nz-time-picker
  2009. [nzDisabled]="!isYyInspect || !yyDateZy"
  2010. class="ml8"
  2011. nzFormat="HH:mm"
  2012. [nzMinuteStep]="30"
  2013. [nzSecondStep]="60"
  2014. [(ngModel)]="yyTimeZy"
  2015. (ngModelChange)="yyTimeZyChange($event)"
  2016. [ngModelOptions]="{ standalone: true }"
  2017. [nzDisabledHours]="disabledHours"
  2018. [nzDisabledMinutes]="disabledMinutes"
  2019. [nzAllowEmpty]="false"
  2020. >
  2021. </nz-time-picker>
  2022. <button
  2023. [disabled]="!isYyInspect || (isYyInspect && !yyDateZy)"
  2024. nz-button
  2025. nzType="primary"
  2026. class="ml8"
  2027. (click)="nextDayZy()"
  2028. >
  2029. 下一日
  2030. </button>
  2031. </nz-form-control>
  2032. <div
  2033. class="red w100"
  2034. *ngIf="(!yyTimeZy || !yyDateZy) && clickYYZyFlag"
  2035. >
  2036. 请填写预约建单时间!
  2037. </div>
  2038. <div class="red">
  2039. 请您填写实际预约检查时间,系统会根据时间安排人员进行陪检!
  2040. </div>
  2041. </nz-form-item>
  2042. <!-- 预约建单时间 -->
  2043. <nz-form-item
  2044. class="yyTime"
  2045. [ngClass]="{ yyTimeError: (!yyTime || !yyDate) && clickYYFlag }"
  2046. *ngIf="currentTasktype.associationType.value === 'inspect'"
  2047. >
  2048. <nz-form-label [nzSm]="24" [nzXs]="24"
  2049. >预约建单时间</nz-form-label
  2050. >
  2051. <nz-form-control [nzSm]="24" [nzXs]="24">
  2052. <nz-date-picker
  2053. [nzDisabled]="!isYyInspect"
  2054. [(ngModel)]="yyDate"
  2055. (ngModelChange)="yyDateChange($event)"
  2056. [ngModelOptions]="{ standalone: true }"
  2057. [nzAllowClear]="false"
  2058. [nzDisabledDate]="disabledyyDate"
  2059. [nzShowToday]="false"
  2060. >
  2061. </nz-date-picker>
  2062. <nz-time-picker
  2063. [nzDisabled]="!isYyInspect || !yyDate"
  2064. class="ml8"
  2065. nzFormat="HH:mm"
  2066. [nzMinuteStep]="30"
  2067. [nzSecondStep]="60"
  2068. [(ngModel)]="yyTime"
  2069. (ngModelChange)="yyTimeChange($event)"
  2070. [ngModelOptions]="{ standalone: true }"
  2071. [nzDisabledHours]="disabledHours"
  2072. [nzDisabledMinutes]="disabledMinutes"
  2073. [nzAllowEmpty]="false"
  2074. >
  2075. </nz-time-picker>
  2076. <button
  2077. [disabled]="!isYyInspect || (isYyInspect && !yyDate)"
  2078. nz-button
  2079. nzType="primary"
  2080. class="ml8"
  2081. (click)="nextDay()"
  2082. >
  2083. 下一日
  2084. </button>
  2085. </nz-form-control>
  2086. <div
  2087. class="red w100"
  2088. *ngIf="(!yyTime || !yyDate) && clickYYFlag"
  2089. >
  2090. 请填写预约建单时间!
  2091. </div>
  2092. <div class="red">
  2093. 请您填写实际预约检查时间,系统会根据时间安排人员进行陪检!
  2094. </div>
  2095. </nz-form-item>
  2096. </div>
  2097. <!-- 100009 科室任务类型状态码未配置 -->
  2098. <nz-form-item
  2099. *ngIf="
  2100. checkedShowMsg.status != 200 && checkedShowMsg.status == 100009
  2101. "
  2102. >
  2103. <div class="txtC">{{ checkedShowMsg.msg }}</div>
  2104. </nz-form-item>
  2105. <!-- 100015 (护士端一键建单展策略)起点科室和终点科室下拉展示 -->
  2106. <nz-form-item
  2107. *ngIf="
  2108. checkedShowMsg.status != 200 &&
  2109. (checkedShowMsg.status == 100015 ||
  2110. checkedShowMsg.status == 100013)
  2111. "
  2112. >
  2113. <nz-form-label
  2114. [nzSm]="6"
  2115. [nzXs]="24"
  2116. nzRequired
  2117. nzFor="originOffice"
  2118. >起点科室</nz-form-label
  2119. >
  2120. <nz-form-control nzErrorTip="请选择起点科室!">
  2121. <nz-select
  2122. class="w100"
  2123. formControlName="originOffice"
  2124. [nzDropdownMatchSelectWidth]="false"
  2125. nzServerSearch
  2126. nzShowSearch
  2127. (nzOnSearch)="searchDept('start', checkedShowMsg, $event)"
  2128. nzPlaceHolder="请选择起点科室"
  2129. >
  2130. <ng-container
  2131. *ngFor="let option of checkedShowMsg.start.start.list"
  2132. >
  2133. <nz-option
  2134. *ngIf="true"
  2135. [nzLabel]="
  2136. deptDisplay == 2 ? option.deptalias : option.dept
  2137. "
  2138. [nzValue]="option.id"
  2139. ></nz-option>
  2140. </ng-container>
  2141. <nz-option *ngIf="false" nzDisabled nzCustomContent>
  2142. <i nz-icon nzType="loading" class="loading-icon"></i>
  2143. 搜索中...
  2144. </nz-option>
  2145. </nz-select>
  2146. </nz-form-control>
  2147. </nz-form-item>
  2148. <!-- 100014 (护士端一键建单展示策略)取终点科室和msg 值展示 -->
  2149. <nz-form-item
  2150. *ngIf="
  2151. checkedShowMsg.status != 200 &&
  2152. (checkedShowMsg.status == 100014 ||
  2153. checkedShowMsg.status == 100015)
  2154. "
  2155. >
  2156. <nz-form-label
  2157. [nzSm]="6"
  2158. [nzXs]="24"
  2159. nzRequired
  2160. nzFor="targetOffice"
  2161. >目标科室</nz-form-label
  2162. >
  2163. <nz-form-control nzErrorTip="请选择目标科室!">
  2164. <nz-select
  2165. class="w100"
  2166. formControlName="targetOffice"
  2167. [nzDropdownMatchSelectWidth]="false"
  2168. nzServerSearch
  2169. nzShowSearch
  2170. (nzOnSearch)="searchDept('target', checkedShowMsg, $event)"
  2171. nzPlaceHolder="请选择目标科室"
  2172. >
  2173. <ng-container
  2174. *ngFor="let option of checkedShowMsg.end.end.list"
  2175. >
  2176. <nz-option
  2177. *ngIf="true"
  2178. [nzLabel]="
  2179. deptDisplay == 2 ? option.deptalias : option.dept
  2180. "
  2181. [nzValue]="option.id"
  2182. ></nz-option>
  2183. </ng-container>
  2184. <nz-option *ngIf="false" nzDisabled nzCustomContent>
  2185. <i nz-icon nzType="loading" class="loading-icon"></i>
  2186. 搜索中...
  2187. </nz-option>
  2188. </nz-select>
  2189. </nz-form-control>
  2190. </nz-form-item>
  2191. <!-- 自动送回 -->
  2192. <nz-form-item
  2193. *ngIf="
  2194. checkedShowMsg.status != 200 && checkedShowMsg.isRemand == 1
  2195. "
  2196. >
  2197. <nz-form-control>
  2198. <label
  2199. nz-checkbox
  2200. [(ngModel)]="isRemand"
  2201. [ngModelOptions]="{ standalone: true }"
  2202. >自动送回</label
  2203. >
  2204. </nz-form-control>
  2205. </nz-form-item>
  2206. <!-- 携带设备 -->
  2207. <nz-form-item *ngIf="goodsLis.length">
  2208. <nz-form-label [nzSm]="6" [nzXs]="24" nzFor="goods" class="goods"
  2209. >携带设备</nz-form-label
  2210. >
  2211. <nz-form-control>
  2212. <nz-checkbox-group
  2213. formControlName="goods"
  2214. [(ngModel)]="goodsLis"
  2215. >
  2216. </nz-checkbox-group>
  2217. </nz-form-control>
  2218. </nz-form-item>
  2219. <!-- 是否加急 -->
  2220. <nz-form-item *ngIf="current_allowUrgent">
  2221. <nz-form-label
  2222. [nzSm]="6"
  2223. [nzXs]="24"
  2224. nzFor="allowUrgent"
  2225. class="goods"
  2226. >是否加急</nz-form-label
  2227. >
  2228. <nz-form-control>
  2229. <nz-radio-group
  2230. [(ngModel)]="allowUrgent"
  2231. (ngModelChange)="allowUrgentChange($event)"
  2232. formControlName="allowUrgent"
  2233. >
  2234. <label nz-radio nzValue="1">是</label>
  2235. <label nz-radio nzValue="0">否</label>
  2236. </nz-radio-group>
  2237. </nz-form-control>
  2238. </nz-form-item>
  2239. <!-- 加急原因 -->
  2240. <nz-form-item *ngIf="current_allowUrgent && allowUrgent == 1">
  2241. <nz-form-label
  2242. [nzSm]="6"
  2243. [nzXs]="24"
  2244. nzRequired
  2245. nzFor="urgentReason"
  2246. class="goods"
  2247. >加急原因</nz-form-label
  2248. >
  2249. <nz-form-control>
  2250. <textarea
  2251. rows="4"
  2252. placeholder="请输入加急原因"
  2253. nz-input
  2254. [(ngModel)]="urgentReason"
  2255. formControlName="urgentReason"
  2256. ></textarea>
  2257. </nz-form-control>
  2258. </nz-form-item>
  2259. </ng-container>
  2260. </form>
  2261. </div>
  2262. </overlay-scrollbars>
  2263. <div class="btns display_flex justify-content_flex-center">
  2264. <button
  2265. nz-button
  2266. nzType="primary"
  2267. [nzLoading]="btnLoading1"
  2268. (click)="confirmPatient1('patient-yuyue')"
  2269. *ngIf="
  2270. currentTasktype.associationType.value === 'inspect' &&
  2271. isYyInspect &&
  2272. !(currentTasktype.isMoreDept === 0 && isInspects)
  2273. "
  2274. >
  2275. 预约建单
  2276. </button>
  2277. <button
  2278. nz-button
  2279. nzType="primary"
  2280. [nzLoading]="btnLoading1"
  2281. (click)="confirmPatient1('patient-zy-yuyue')"
  2282. *ngIf="
  2283. currentTasktype.associationType.value === 'patientTransport' &&
  2284. isYyInspect
  2285. "
  2286. >
  2287. 预约建单
  2288. </button>
  2289. <button
  2290. nz-button
  2291. nzType="default"
  2292. [nzLoading]="btnLoading"
  2293. (click)="confirmPatient()"
  2294. class="orderThis"
  2295. *ngIf="
  2296. ((!isYyInspect &&
  2297. currentTasktype.associationType.value === 'inspect' &&
  2298. linkCheckLisTrue) ||
  2299. (!isYyInspect &&
  2300. currentTasktype.associationType.value === 'patientTransport')) &&
  2301. !(currentTasktype.isMoreDept === 0 && isInspects)
  2302. "
  2303. >
  2304. 直接建单
  2305. </button>
  2306. <button
  2307. class="btn cancel"
  2308. nz-button
  2309. nzType="default"
  2310. (click)="hidePatientOrder()"
  2311. >
  2312. 取消
  2313. </button>
  2314. </div>
  2315. </div>
  2316. </div>
  2317. <!-- 标本一键建单模态框 其他-->
  2318. <div
  2319. class="save display_flex align-items_center justify-content_flex-center shortcut"
  2320. *ngIf="shortcutModal"
  2321. >
  2322. <div class="modalBody">
  2323. <div class="title">
  2324. 快捷建单<i
  2325. class="icon_transport transport-guanbi"
  2326. (click)="hideShortcutOrder()"
  2327. ></i>
  2328. </div>
  2329. <!-- 200 该任务类型运送过程暂未配置 -->
  2330. <div
  2331. class="content txtC bb"
  2332. *ngIf="buildMsg1.status == 200 && buildType == 'bb'"
  2333. >
  2334. <div class="defeat">{{ buildMsg1.msg }}</div>
  2335. </div>
  2336. <!-- 100009 该任务类型运送过程暂未配置 -->
  2337. <div class="content txtC" *ngIf="buildMsg1.status == 100009">
  2338. <div class="defeat">{{ buildMsg1.msg }}</div>
  2339. </div>
  2340. <!-- 100010 系统未查询到该任务类型关联信息 -->
  2341. <div class="content txtC" *ngIf="buildMsg1.status == 100010">
  2342. <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
  2343. <div class="defeat">{{ buildMsg1.msg }}</div>
  2344. </div>
  2345. <!-- 100012 (护士端一键建单展示策略)直接取msg -->
  2346. <div class="content txtC" *ngIf="buildMsg1.status == 100012">
  2347. <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
  2348. <div class="defeat">{{ buildMsg1.msg }}</div>
  2349. </div>
  2350. <!-- 100013 (护士端一键建单展示策略)取起点科室,和mgs值展示 -->
  2351. <div class="content" *ngIf="buildMsg1.status == 100013">
  2352. <div class="jiTit borderB">
  2353. <span>{{ buildMsg1.msg }}</span>
  2354. </div>
  2355. <div>
  2356. <form nz-form [formGroup]="shortcutForm1" class="shortcutForm">
  2357. <nz-form-item>
  2358. <nz-form-label
  2359. [nzSm]="6"
  2360. [nzXs]="24"
  2361. nzRequired
  2362. nzFor="originOffice"
  2363. >起点科室</nz-form-label
  2364. >
  2365. <nz-form-control nzErrorTip="请选择起点科室!">
  2366. <nz-select
  2367. class="w100"
  2368. formControlName="originOffice"
  2369. [nzDropdownMatchSelectWidth]="false"
  2370. nzServerSearch
  2371. nzShowSearch
  2372. (nzOnSearch)="searchDept('start', buildMsg1, $event)"
  2373. nzPlaceHolder="请选择起点科室"
  2374. >
  2375. <ng-container *ngFor="let option of buildMsg1.start.start.list">
  2376. <nz-option
  2377. *ngIf="true"
  2378. [nzLabel]="
  2379. deptDisplay == 2 ? option.deptalias : option.dept
  2380. "
  2381. [nzValue]="option.id"
  2382. >
  2383. </nz-option>
  2384. </ng-container>
  2385. <nz-option *ngIf="false" nzDisabled nzCustomContent>
  2386. <i nz-icon nzType="loading" class="loading-icon"></i>
  2387. 搜索中...
  2388. </nz-option>
  2389. </nz-select>
  2390. </nz-form-control>
  2391. </nz-form-item>
  2392. </form>
  2393. </div>
  2394. </div>
  2395. <!-- 100014 (护士端一键建单展示策略)取终点科室和msg 值展示 -->
  2396. <div class="content" *ngIf="buildMsg1.status == 100014">
  2397. <div class="jiTit borderB">
  2398. <span>{{ buildMsg1.msg }}</span>
  2399. </div>
  2400. <div>
  2401. <form nz-form [formGroup]="shortcutForm1" class="shortcutForm">
  2402. <nz-form-item>
  2403. <nz-form-label
  2404. [nzSm]="6"
  2405. [nzXs]="24"
  2406. nzRequired
  2407. nzFor="targetOffice"
  2408. >目标科室</nz-form-label
  2409. >
  2410. <nz-form-control nzErrorTip="请选择目标科室!">
  2411. <nz-select
  2412. class="w100"
  2413. formControlName="targetOffice"
  2414. [nzDropdownMatchSelectWidth]="false"
  2415. nzServerSearch
  2416. nzShowSearch
  2417. (nzOnSearch)="searchDept('target', buildMsg1, $event)"
  2418. nzAllowClear
  2419. nzPlaceHolder="请选择目标科室"
  2420. >
  2421. <ng-container *ngFor="let option of buildMsg1.end.end.list">
  2422. <nz-option
  2423. *ngIf="true"
  2424. [nzLabel]="
  2425. deptDisplay == 2 ? option.deptalias : option.dept
  2426. "
  2427. [nzValue]="option.id"
  2428. >
  2429. </nz-option>
  2430. </ng-container>
  2431. <nz-option *ngIf="false" nzDisabled nzCustomContent>
  2432. <i nz-icon nzType="loading" class="loading-icon"></i>
  2433. 搜索中...
  2434. </nz-option>
  2435. </nz-select>
  2436. </nz-form-control>
  2437. </nz-form-item>
  2438. </form>
  2439. </div>
  2440. </div>
  2441. <!-- 100015 (护士端一键建单展策略)起点科室和终点科室下拉展示 -->
  2442. <div class="content" *ngIf="buildMsg1.status == 100015">
  2443. <div class="jiTit borderB">
  2444. <span>{{ buildMsg1.msg }}</span>
  2445. </div>
  2446. <div>
  2447. <form nz-form [formGroup]="shortcutForm1" class="shortcutForm">
  2448. <nz-form-item>
  2449. <nz-form-label
  2450. [nzSm]="6"
  2451. [nzXs]="24"
  2452. nzRequired
  2453. nzFor="originOffice"
  2454. >起点科室</nz-form-label
  2455. >
  2456. <nz-form-control nzErrorTip="请选择起点科室!">
  2457. <nz-select
  2458. class="w100"
  2459. formControlName="originOffice"
  2460. [nzDropdownMatchSelectWidth]="false"
  2461. nzServerSearch
  2462. nzShowSearch
  2463. (nzOnSearch)="searchDept('start', buildMsg1, $event)"
  2464. nzPlaceHolder="请选择起点科室"
  2465. >
  2466. <ng-container *ngFor="let option of buildMsg1.start.start.list">
  2467. <nz-option
  2468. *ngIf="true"
  2469. [nzLabel]="
  2470. deptDisplay == 2 ? option.deptalias : option.dept
  2471. "
  2472. [nzValue]="option.id"
  2473. >
  2474. </nz-option>
  2475. </ng-container>
  2476. <nz-option *ngIf="false" nzDisabled nzCustomContent>
  2477. <i nz-icon nzType="loading" class="loading-icon"></i>
  2478. 搜索中...
  2479. </nz-option>
  2480. </nz-select>
  2481. </nz-form-control>
  2482. </nz-form-item>
  2483. <nz-form-item>
  2484. <nz-form-label
  2485. [nzSm]="6"
  2486. [nzXs]="24"
  2487. nzRequired
  2488. nzFor="targetOffice"
  2489. >目标科室</nz-form-label
  2490. >
  2491. <nz-form-control nzErrorTip="请选择目标科室!">
  2492. <nz-select
  2493. class="w100"
  2494. formControlName="targetOffice"
  2495. [nzDropdownMatchSelectWidth]="false"
  2496. nzServerSearch
  2497. nzShowSearch
  2498. (nzOnSearch)="searchDept('target', buildMsg1, $event)"
  2499. nzPlaceHolder="请选择目标科室"
  2500. >
  2501. <ng-container *ngFor="let option of buildMsg1.end.end.list">
  2502. <nz-option
  2503. *ngIf="true"
  2504. [nzLabel]="
  2505. deptDisplay == 2 ? option.deptalias : option.dept
  2506. "
  2507. [nzValue]="option.id"
  2508. >
  2509. </nz-option>
  2510. </ng-container>
  2511. <nz-option *ngIf="false" nzDisabled nzCustomContent>
  2512. <i nz-icon nzType="loading" class="loading-icon"></i>
  2513. 搜索中...
  2514. </nz-option>
  2515. </nz-select>
  2516. </nz-form-control>
  2517. </nz-form-item>
  2518. </form>
  2519. </div>
  2520. </div>
  2521. <!-- 标本配送备注 -->
  2522. <div *ngIf="buildMsg1.remarksSwitch == 1">
  2523. <p class="mt8 mb8">工单备注:</p>
  2524. <textarea
  2525. nz-input
  2526. [placeholder]="workOrderRemarkTips1"
  2527. [nzAutosize]="{ minRows: 3, maxRows: 5 }"
  2528. maxlength="100"
  2529. [(ngModel)]="workOrderRemark1"
  2530. #remarksEle1
  2531. ></textarea>
  2532. <p class="mt8 mb8" *ngIf="customRemarks1.length">快捷输入:</p>
  2533. <div *ngIf="customRemarks1.length">
  2534. <span
  2535. class="addRemarks"
  2536. *ngFor="let item of customRemarks1"
  2537. (click)="addRemarks1(item)"
  2538. >【{{ item }}】</span
  2539. >
  2540. </div>
  2541. <p class="mt8 mb8" *ngIf="historyCustomRemarks1.length">历史输入:</p>
  2542. <div *ngIf="historyCustomRemarks1.length">
  2543. <span
  2544. class="addRemarks"
  2545. *ngFor="let item of historyCustomRemarks1"
  2546. (click)="addRemarks1(item)"
  2547. >【{{ item }}】</span
  2548. >
  2549. </div>
  2550. </div>
  2551. <div class="btns display_flex justify-content_flex-center">
  2552. <button
  2553. *ngIf="buildMsg1.status != 100009 && buildMsg1.status != 100010"
  2554. nz-button
  2555. nzType="primary"
  2556. [nzLoading]="btnLoading"
  2557. (click)="confirmShortcut1()"
  2558. >
  2559. 确认
  2560. </button>
  2561. <button
  2562. class="btn cancel"
  2563. nz-button
  2564. nzType="default"
  2565. (click)="hideShortcutOrder()"
  2566. >
  2567. 取消
  2568. </button>
  2569. </div>
  2570. </div>
  2571. </div>
  2572. <!-- 一键建单确认模态框 -->
  2573. <div
  2574. class="save display_flex align-items_center justify-content_flex-center shortcut"
  2575. *ngIf="confirmSub"
  2576. >
  2577. <div class="modalBody sm">
  2578. <div class="title">
  2579. 快捷建单<i class="icon_transport transport-guanbi" (click)="cancel()"></i>
  2580. </div>
  2581. <div class="content txtC">
  2582. <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
  2583. <div class="defeat">{{ confirmInfo }}</div>
  2584. <div class="otherInfo">请谨慎操作,如撤销请点击取消。</div>
  2585. </div>
  2586. <div class="btns display_flex justify-content_flex-center">
  2587. <button
  2588. nz-button
  2589. nzType="primary"
  2590. [nzLoading]="btnLoading3"
  2591. (click)="confirm()"
  2592. >
  2593. 确认
  2594. </button>
  2595. <button class="btn cancel" nz-button nzType="default" (click)="cancel()">
  2596. 取消
  2597. </button>
  2598. </div>
  2599. </div>
  2600. </div>
  2601. <!-- 撤销工单 -->
  2602. <app-dialog-delete
  2603. [delModal]="recallOrderModal"
  2604. (hideDelModalEvent)="closeRecallOrderModal()"
  2605. [btnLoading]="btnLoading"
  2606. (confirmDelEvent)="confirmRec()"
  2607. content="您确认要撤销工单吗?撤销工单我们会通知服务台、支助人员不再执行此工单,请谨慎操作,如确认撤销请点击确认。"
  2608. ></app-dialog-delete>
  2609. <!-- 立即执行定时预约工单 -->
  2610. <app-dialog-delete
  2611. [delModal]="execModal"
  2612. (hideDelModalEvent)="closeExecModal()"
  2613. [btnLoading]="btnLoading"
  2614. (confirmDelEvent)="confirmExec()"
  2615. content="您确认要立即执行该工单吗?"
  2616. ></app-dialog-delete>
  2617. <!-- 评价模态框 -->
  2618. <div
  2619. class="save display_flex align-items_center justify-content_flex-center appraise"
  2620. *ngIf="appraiseModal"
  2621. >
  2622. <div class="modalBody">
  2623. <div class="title">
  2624. 评价<i
  2625. class="icon_transport transport-guanbi"
  2626. (click)="hideAppraise()"
  2627. ></i>
  2628. </div>
  2629. <div class="content">
  2630. <div class="jiTit borderB">您的评价对我们至关重要,感谢您!</div>
  2631. <br />
  2632. <div class="star">
  2633. <div
  2634. nz-row
  2635. class="alignC display_flex justify-content_flex-center align-items_center"
  2636. >
  2637. <div nz-col nzSpan="4">星级:</div>
  2638. <div nz-col nzSpan="20">
  2639. <nz-rate [(ngModel)]="starNum"></nz-rate>
  2640. </div>
  2641. </div>
  2642. <div nz-row>
  2643. <div nz-col nzSpan="4">评级:</div>
  2644. <div nz-col nzSpan="20">
  2645. <textarea
  2646. rows="4"
  2647. nz-input
  2648. [(ngModel)]="appraiseContent"
  2649. ></textarea>
  2650. </div>
  2651. </div>
  2652. </div>
  2653. <br />
  2654. </div>
  2655. <div class="btns display_flex justify-content_flex-center">
  2656. <button
  2657. nz-button
  2658. nzType="primary"
  2659. [nzLoading]="btnLoading"
  2660. (click)="confirmAppraise()"
  2661. >
  2662. 确认
  2663. </button>
  2664. <button
  2665. class="btn cancel"
  2666. nz-button
  2667. nzType="default"
  2668. (click)="hideAppraise()"
  2669. >
  2670. 关闭
  2671. </button>
  2672. </div>
  2673. </div>
  2674. </div>
  2675. <!-- 意见箱查看 -->
  2676. <div
  2677. class="save display_flex align-items_center justify-content_flex-center advice"
  2678. *ngIf="adviceModal"
  2679. >
  2680. <div class="modalBody">
  2681. <div class="title">
  2682. 意见箱-查看<i
  2683. class="icon_transport transport-guanbi"
  2684. (click)="hideAdvice()"
  2685. ></i>
  2686. </div>
  2687. <div class="content">
  2688. <div class="conItem">
  2689. <div class="jiTit borderB color3" nz-row>
  2690. <div nz-col nzSpan="11" class="txtL">
  2691. 发起人:{{
  2692. adviceDetailInfo.createUser
  2693. ? adviceDetailInfo.createUser.name
  2694. : ""
  2695. }}
  2696. </div>
  2697. <div nz-col nzSpan="13" class="txtR">
  2698. 填写时间:{{ adviceDetailInfo.createTime }}
  2699. </div>
  2700. </div>
  2701. <div class="defeat">意见内容:{{ adviceDetailInfo.content }}</div>
  2702. </div>
  2703. <div class="conItem" *ngIf="adviceDetailInfo.replaceFlag == 1">
  2704. <div class="jiTit borderB color3" nz-row>
  2705. <div nz-col nzSpan="11" class="txtL">
  2706. 回复人:{{
  2707. adviceDetailInfo.replyUser ? adviceDetailInfo.replyUser.name : ""
  2708. }}
  2709. </div>
  2710. <div nz-col nzSpan="13" class="txtR">
  2711. 填写时间:{{ adviceDetailInfo.replyTime }}
  2712. </div>
  2713. </div>
  2714. <div class="defeat">意见内容:{{ adviceDetailInfo.replyContent }}</div>
  2715. </div>
  2716. <div class="conItem noCon" *ngIf="adviceDetailInfo.replaceFlag == 0">
  2717. <div class="jiTit color3" nz-row>暂未回复</div>
  2718. </div>
  2719. </div>
  2720. <div class="btns display_flex justify-content_flex-center">
  2721. <button
  2722. class="btn know"
  2723. nz-button
  2724. nzType="primary"
  2725. nzGhost
  2726. (click)="hideAdvice()"
  2727. >
  2728. 知道了
  2729. </button>
  2730. </div>
  2731. </div>
  2732. </div>
  2733. <!-- 意见收集 -->
  2734. <div
  2735. class="save display_flex align-items_center justify-content_flex-center advice"
  2736. *ngIf="adviceSubModal"
  2737. >
  2738. <div class="modalBody">
  2739. <div class="title">
  2740. 意见收集<i
  2741. class="icon_transport transport-guanbi"
  2742. (click)="hideSubAdvice()"
  2743. ></i>
  2744. </div>
  2745. <div class="content">
  2746. <div class="title">意见内容:</div>
  2747. <textarea
  2748. rows="4"
  2749. maxlength="255"
  2750. nz-input
  2751. [(ngModel)]="adviceSubContent"
  2752. placeholder="请填写意见内容"
  2753. ></textarea>
  2754. <br /><br />
  2755. </div>
  2756. <div class="btns display_flex justify-content_flex-center">
  2757. <button
  2758. nz-button
  2759. nzType="primary"
  2760. [nzLoading]="btnLoading"
  2761. (click)="confirmSubAdvice()"
  2762. >
  2763. 确认
  2764. </button>
  2765. <button
  2766. class="btn cancel"
  2767. nz-button
  2768. nzType="default"
  2769. (click)="hideSubAdvice()"
  2770. >
  2771. 取消
  2772. </button>
  2773. </div>
  2774. </div>
  2775. </div>
  2776. <!-- 加急模态框 -->
  2777. <div
  2778. class="save display_flex align-items_center justify-content_flex-center jiaji"
  2779. *ngIf="jiajiModal"
  2780. >
  2781. <div class="modalBody">
  2782. <div class="title">
  2783. 加急<i class="icon_transport transport-guanbi" (click)="hideJiaji()"></i>
  2784. </div>
  2785. <div class="content">
  2786. <div class="jiTit borderB">
  2787. 请填写加急原因,填写后我们会根据您的诉求优先处理
  2788. </div>
  2789. <div class="title">加急原因:</div>
  2790. <textarea
  2791. rows="4"
  2792. nz-input
  2793. [(ngModel)]="jiajiContent"
  2794. placeholder="请填写加急原因"
  2795. ></textarea>
  2796. <br /><br />
  2797. </div>
  2798. <div class="btns display_flex justify-content_flex-center">
  2799. <button
  2800. nz-button
  2801. nzType="primary"
  2802. [nzLoading]="btnLoading"
  2803. (click)="confirmJiaji()"
  2804. >
  2805. 确认
  2806. </button>
  2807. <button
  2808. class="btn cancel"
  2809. nz-button
  2810. nzType="default"
  2811. (click)="hideJiaji()"
  2812. >
  2813. 取消
  2814. </button>
  2815. </div>
  2816. </div>
  2817. </div>
  2818. <!-- 查看标本详情模态框 -->
  2819. <div *ngIf="detailModel" [class.detailModel]="detailModel">
  2820. <div class="box">
  2821. <h2 class="title">未取标本详情</h2>
  2822. <div class="table">
  2823. <div class="table-content">
  2824. <table>
  2825. <thead>
  2826. <tr>
  2827. <th>序号</th>
  2828. <th>标本类型</th>
  2829. <th>标本编码</th>
  2830. <th>患者姓名</th>
  2831. <th>床号</th>
  2832. <th>采集时间</th>
  2833. <th>目标科室</th>
  2834. </tr>
  2835. </thead>
  2836. <tbody>
  2837. <overlay-scrollbars
  2838. #osComponentRef6
  2839. style="height: 100%"
  2840. *ngIf="detailList.length && !loading33"
  2841. >
  2842. <tr
  2843. *ngFor="let detail of detailList; let i = index"
  2844. [style]="{ background: i % 2 === 1 ? '#fff' : '#f9fafb' }"
  2845. >
  2846. <td>{{ i + 1 }}</td>
  2847. <td>{{ detail.stype ? detail.stype.name : "-" }}</td>
  2848. <td>{{ detail.scode || "-" }}</td>
  2849. <td>{{ detail.patientName || "-" }}</td>
  2850. <td>{{ detail.bedNum || "-" }}</td>
  2851. <td>
  2852. {{ detail.printDate || "-" }}
  2853. </td>
  2854. <td>
  2855. {{
  2856. detail.checkDept
  2857. ? deptDisplay == 2
  2858. ? detail.checkDept.deptalias
  2859. : detail.checkDept.dept
  2860. : "-"
  2861. }}
  2862. <div
  2863. *ngIf="detail.urgent != 0"
  2864. [class.ji]="detail.urgent == 1"
  2865. ></div>
  2866. </td>
  2867. </tr>
  2868. </overlay-scrollbars>
  2869. <div
  2870. style="font-size: 18px"
  2871. *ngIf="!detailList.length && !loading33"
  2872. class="noData33"
  2873. >
  2874. 暂无数据
  2875. </div>
  2876. <div class="loading33" *ngIf="loading33">
  2877. <img src="./../../assets/images/loading.gif" alt="" />
  2878. <p>正在加载中</p>
  2879. </div>
  2880. </tbody>
  2881. </table>
  2882. </div>
  2883. </div>
  2884. <div class="btns">
  2885. <div class="btn" (click)="hideSpeDetailModel()">知道了</div>
  2886. </div>
  2887. <i
  2888. class="icon_transport transport-guanbi"
  2889. (click)="hideSpeDetailModel()"
  2890. ></i>
  2891. </div>
  2892. </div>
  2893. <!-- 删除意见模态框 -->
  2894. <app-dialog-delete
  2895. [delModal]="delAdviceModal"
  2896. (hideDelModalEvent)="hideDelAdviceModal()"
  2897. [btnLoading]="btnLoading"
  2898. (confirmDelEvent)="confirmDelAdvice()"
  2899. content="您确认要删除此条意见吗?"
  2900. ></app-dialog-delete>
  2901. <!-- 关注模态框 -->
  2902. <div
  2903. class="commonModal display_flex justify-content_flex-center align-items_center"
  2904. *ngIf="commonModal"
  2905. >
  2906. <div class="modalBody">
  2907. <div class="title">
  2908. 提示<i
  2909. class="icon_transport transport-guanbi"
  2910. (click)="hideCommonModal()"
  2911. ></i>
  2912. </div>
  2913. <div class="content">
  2914. <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
  2915. <div class="defeat">{{ tipsMsg1 }}</div>
  2916. </div>
  2917. <div class="display_flex justify-content_flex-center">
  2918. <button
  2919. nz-button
  2920. nzType="primary"
  2921. (click)="confirmCommon()"
  2922. [nzLoading]="loading4"
  2923. >
  2924. 确认
  2925. </button>
  2926. <button
  2927. class="btn cancel"
  2928. nz-button
  2929. nzType="default"
  2930. (click)="hideCommonModal()"
  2931. >
  2932. 取消
  2933. </button>
  2934. </div>
  2935. </div>
  2936. </div>
  2937. <!-- 是否确认报修模态框 -->
  2938. <div
  2939. class="commonModal display_flex justify-content_flex-center align-items_center"
  2940. *ngIf="bxModal"
  2941. >
  2942. <div class="modalBody">
  2943. <div class="title">
  2944. 提示<i
  2945. class="icon_transport transport-guanbi"
  2946. (click)="hideBxModal()"
  2947. ></i>
  2948. </div>
  2949. <div class="content">
  2950. <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
  2951. <div class="defeat">{{ tipsMsg2 }}</div>
  2952. </div>
  2953. <div class="display_flex justify-content_flex-center">
  2954. <button
  2955. nz-button
  2956. nzType="primary"
  2957. (click)="confirmBx()"
  2958. [nzLoading]="loading6"
  2959. >
  2960. 确认
  2961. </button>
  2962. <button
  2963. class="btn cancel"
  2964. nz-button
  2965. nzType="default"
  2966. (click)="hideBxModal()"
  2967. >
  2968. 取消
  2969. </button>
  2970. </div>
  2971. </div>
  2972. </div>
  2973. <!-- 消息弹框模板 -->
  2974. <ng-template #msgTemplate let-msg="data">
  2975. <div class="msgTemBox ant-notification-notice-content">
  2976. <div class="borderLeft"></div>
  2977. <div class="ant-notification-notice-with-icon">
  2978. <span class="ant-notification-notice-icon">
  2979. <i class="icon icon_transport transport-shouye9"></i>
  2980. </span>
  2981. <div class="ant-notification-notice-message">
  2982. {{ msg.type == 1 ? "通知" : "消息" }}
  2983. </div>
  2984. <div class="ant-notification-notice-description">{{ msg.content }}</div>
  2985. </div>
  2986. </div>
  2987. </ng-template>
  2988. <!-- 操作成功/失败提示框 -->
  2989. <app-prompt-modal
  2990. *ngIf="promptModalShow"
  2991. [content]="promptContent"
  2992. [success]="ifSuccess"
  2993. [show]="promptModalShow"
  2994. [info]="promptInfo"
  2995. [back]="back"
  2996. (closeModel)="closeModel($event)"
  2997. ></app-prompt-modal>
  2998. <!-- 护士端科室切换提示框 -->
  2999. <app-hs-prompt-modal
  3000. [changeShow]="changeShow"
  3001. [closeTime]="closeTime"
  3002. [closeTimeFlag]="closeTimeFlag"
  3003. [show]="hsPromptModalShow"
  3004. (closeModelHs)="closeModelHs($event)"
  3005. (clearModelHs)="clearModelHs($event)"
  3006. deptType="nurse"
  3007. >
  3008. </app-hs-prompt-modal>
  3009. <!-- 标本历史记录查看 -->
  3010. <app-history-prompt-modal
  3011. *ngIf="historyPromptModalShow"
  3012. [show]="historyPromptModalShow"
  3013. [scode]="scode"
  3014. (closeModelHs)="closeModelHistory($event)"
  3015. ></app-history-prompt-modal>
  3016. <!-- 药包流程信息查看 -->
  3017. <app-log-prompt-modal
  3018. *ngIf="historyDPromptModalShow"
  3019. [show]="historyDPromptModalShow"
  3020. [packid]="packidD"
  3021. (closeModelHs)="closeModelHistoryDrugsbag($event)"
  3022. ></app-log-prompt-modal>
  3023. <!-- 报修详情查看 -->
  3024. <app-bx-prompt-modal
  3025. *ngIf="bxPromptModalShow"
  3026. [show]="bxPromptModalShow"
  3027. [bData]="bData"
  3028. (closeModelHs)="closeModelBx($event)"
  3029. ></app-bx-prompt-modal>
  3030. <!-- 科室二维码模态框 -->
  3031. <!-- 在模态框所在的 div 添加属性 [appDrag] -->
  3032. <div appDrag class="modal" *ngIf="isShowNurseCode">
  3033. <div class="header drag-title">
  3034. <h2>签到二维码</h2>
  3035. <i
  3036. class="icon-close icon_transport transport-guanbi1"
  3037. (click)="closeNurseCode()"
  3038. ></i>
  3039. </div>
  3040. <div class="dialog-center">
  3041. <div class="dialog-code">
  3042. <img [src]="nurseCodeImg" alt="" />
  3043. </div>
  3044. </div>
  3045. <div class="dialog-operate">
  3046. <strong class="dialog-refresh" (click)="showNurseCode()">刷新</strong>
  3047. <span>{{ refreshQRCodeTime }}s</span>
  3048. </div>
  3049. </div>
  3050. <router-outlet></router-outlet>
  3051. <!-- 遮罩 -->
  3052. <app-mask *ngIf="maskFlag"></app-mask>
  3053. <!-- 是否需要医护陪同检查模态框 -->
  3054. <app-dialog-delete
  3055. [delModal]="accompanyModal"
  3056. (hideDelModalEvent)="hideAccompanyModal($event)"
  3057. (cancelDelEvent)="hideAccompanyModal($event)"
  3058. [btnLoading]="accompanyLoading"
  3059. [cancenlLoading]="cancenlLoading"
  3060. (confirmDelEvent)="confirmAccompany()"
  3061. confirmTxt="是"
  3062. cancelTxt="否"
  3063. content="您选择的患者是危重或特级护理或一级护理患者,请问是否需要医护陪同检查?"
  3064. >
  3065. </app-dialog-delete>
  3066. <!-- 重复建单策略 -->
  3067. <app-dialog-delete
  3068. [delModal]="repeatModal"
  3069. (hideDelModalEvent)="hideRepeatModal()"
  3070. [btnLoading]="loadingRepeat"
  3071. (confirmDelEvent)="confirmRepeat()"
  3072. [content]="repeatMsg"
  3073. confirmTxt="是"
  3074. cancelTxt="否"
  3075. (cancelDelEvent)="hideRepeatModal()"
  3076. ></app-dialog-delete>