receipt_infopage.vue 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265
  1. <template>
  2. <view class="Receipt_infopage" v-if="Object.keys(infoDATA).length > 0">
  3. <view class="title">工单信息</view>
  4. <view class="page_item footerOtherMargin">
  5. <view class="page_item_top">
  6. <view class="page_item_top_L">
  7. <text class="L_text">单号:{{ infoDATA.gdcode }}</text>
  8. <view class="page_item_cont_start emergency1" v-if="infoDATA.emergencyType.value == 1">
  9. <text>
  10. <text class="cubeic-star newicon newicon-shiwujiaoxing"></text>
  11. {{ infoDATA.emergencyType.name }}
  12. </text>
  13. </view>
  14. <view class="page_item_cont_start emergency" v-if="infoDATA.emergencyType.value == 2">
  15. <text>
  16. <text class="cubeic-star newicon newicon-shiwujiaoxing"></text>
  17. {{ infoDATA.emergencyType.name }}
  18. </text>
  19. </view>
  20. <view class="page_item_cont_start emergencys" v-if="infoDATA.emergencyType.value == 3">
  21. <text>
  22. <text class="cubeic-star newicon newicon-shiwujiaoxing"></text>
  23. {{ infoDATA.emergencyType.name }}
  24. </text>
  25. </view>
  26. </view>
  27. <view class="page_item_top_R">
  28. <text class="L_iocn" v-if="
  29. !(
  30. infoDATA.gdState.value == 5 &&
  31. infoDATA.taskType.associationType.value == 'inspect'
  32. )
  33. ">{{ infoDATA.gdState.name }}</text>
  34. <text class="L_iocn" v-if="
  35. infoDATA.gdState.value == 5 &&
  36. infoDATA.taskType.associationType.value == 'inspect'
  37. ">待送回</text>
  38. </view>
  39. <view class="L"></view>
  40. <view class="R"></view>
  41. </view>
  42. <view class="page_item_cont">
  43. <view class="page_item_cont_T">
  44. <view class="page_item_cont_title">
  45. <text> <text class="starting">起</text> 点科室 </text>
  46. <text class="text_big">{{ infoDATA.startDept.dept }}</text>
  47. </view>
  48. </view>
  49. <view class="line"></view>
  50. <view class="page_item_cont_B">
  51. <view class="page_item_cont_title" v-for="(dept, index) of infoDATA.middleDept" :key="'ico' + index">
  52. <view v-if="infoDATA.taskType.associationType.value == 'inspect'">
  53. <text> <text class="End">检</text> 查科室 </text>
  54. <text class="text_big">{{ dept.dept }}</text>
  55. <view></view>
  56. </view>
  57. </view>
  58. <template v-if="infoDATA.taskType.associationType.value != 'inspect'">
  59. <view class="page_item_cont_title" v-for="(dept, i) of infoDATA.endDepts" :key="i">
  60. <view>
  61. <text> <text class="End">终</text> 点科室 </text>
  62. <text class="text_big">{{ dept.dept }}</text>
  63. </view>
  64. </view>
  65. </template>
  66. <view v-if="
  67. infoDATA.taskType.associationType.value == 'inspect' ||
  68. infoDATA.taskType.associationType.value == 'patientTransport'
  69. ">
  70. <!-- 待抢单 -->
  71. <text class="red" v-if="infoDATA.gdState.value == 2">请扫描患者腕带,或者请扫描科室码</text>
  72. <!-- 待到达 -->
  73. <text class="red" v-if="infoDATA.gdState.value == 4">请扫描患者腕带</text>
  74. <!-- 执行中 -->
  75. <text class="red" v-if="infoDATA.gdState.value == 8">请扫描检查科室码,并扫描患者腕带</text>
  76. <!-- 待送达 -->
  77. <text class="red" v-if="infoDATA.gdState.value == 5">请扫描终点科室码,并扫描患者腕带</text>
  78. </view>
  79. </view>
  80. </view>
  81. <view class="page_item_foot">
  82. <view class="page_item_foot_text">
  83. <text class="text1">状态</text>
  84. <text class="text2" v-if="
  85. !(
  86. infoDATA.gdState.value == 5 &&
  87. infoDATA.taskType.associationType.value == 'inspect'
  88. )
  89. ">{{ infoDATA.gdState.name }}</text>
  90. <text class="text2" v-if="
  91. infoDATA.gdState.value == 5 &&
  92. infoDATA.taskType.associationType.value == 'inspect'
  93. ">待送回</text>
  94. </view>
  95. <!-- <view class="page_item_foot_text">
  96. <text class="text1">关联类型</text>
  97. <text class="text2">{{ infoDATA.taskType.associationType.name }}</text>
  98. </view> -->
  99. <view class="page_item_foot_text">
  100. <text class="text1">任务类型</text>
  101. <text class="text2">{{ infoDATA.taskType.taskName }}<template
  102. v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
  103. </view>
  104. <view class="page_item_foot_text" v-if="infoDATA.taskType.associationType.value==='inspect'">
  105. <text class="text1">是否半程陪检</text>
  106. <text class="text2">{{ infoDATA.isHalfInspect===1?'是':'否' }}</text>
  107. </view>
  108. <view class="page_item_foot_text">
  109. <text class="text1">执行人员</text>
  110. <text class="text2">{{ infoDATA.worker?infoDATA.worker.name:'-' }}</text>
  111. </view>
  112. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '2'">
  113. <text class="text1">预计响应时间</text>
  114. <text class="text2">{{ infoDATA.estimeResponseTime || '无' }}</text>
  115. </view>
  116. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '5'">
  117. <text class="text1" v-if="!(infoDATA.taskType.associationType.value == 'inspect')">预计送达时间</text>
  118. <text class="text1" v-if="infoDATA.taskType.associationType.value == 'inspect'">预计送回时间</text>
  119. <text class="text2">{{ infoDATA.estimeCompleteTime || '无' }}</text>
  120. </view>
  121. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '4'">
  122. <text class="text1">预计到达时间</text>
  123. <text class="text2">{{ infoDATA.estimateArriveTime || '无' }}</text>
  124. </view>
  125. <view class="page_item_foot_text">
  126. <text class="text1">创建时间</text>
  127. <text class="text2">{{ infoDATA.startTime || '无' }}</text>
  128. </view>
  129. <view class="page_item_foot_text" v-if="!(infoDATA.taskType.associationType.value == 'ordinary' && (infoDATA.taskType.ordinaryField.value == 'drugsJpbag' || infoDATA.taskType.ordinaryField.value == 'drugsWestern' || infoDATA.taskType.ordinaryField.value == 'drugsReturn' || infoDATA.taskType.ordinaryField.value == 'drugsPoison' || infoDATA.taskType.ordinaryField.value == 'drugsHerbal'))">
  130. <text class="text1">预约时间</text>
  131. <text class="text2" v-if="infoDATA.taskType.associationType.value == 'inspect'">{{ infoDATA.yyTime }}</text>
  132. <text class="text2"
  133. v-if="infoDATA.taskType.associationType.value == 'patientTransport' || infoDATA.taskType.associationType.value == 'other'">{{ infoDATA.yyjdTime|yyTimeFilter }}</text>
  134. </view>
  135. <view class="page_item_foot_text" v-if="
  136. infoDATA.taskType.associationType.value == 'inspect' ||
  137. infoDATA.taskType.associationType.value == 'patientTransport'
  138. ">
  139. <text class="text1" v-if="infoDATA.patient.residenceNo">床号</text>
  140. <text class="text2" v-if="infoDATA.patient.residenceNo">{{
  141. infoDATA.patient ? infoDATA.patient.bedNum : "-"
  142. }}</text>
  143. <text class="text1" v-if="!infoDATA.patient.residenceNo">身份证号</text>
  144. <text class="text2" v-if="!infoDATA.patient.residenceNo">{{
  145. infoDATA.patient ? infoDATA.patient.identityCardNo : "-"
  146. }}</text>
  147. </view>
  148. <view class="page_item_foot_text" v-if="
  149. infoDATA.taskType.associationType.value == 'inspect' ||
  150. infoDATA.taskType.associationType.value == 'patientTransport'
  151. ">
  152. <text class="text1">携带设备</text>
  153. <text class="text2">{{ infoDATA.goods || "暂无" }}</text>
  154. </view>
  155. <view class="page_item_info" style="padding: 0;" v-if="infoDATA.workOrderRemark !== undefined">
  156. <view class="page_item_foot_text">
  157. <view class="text1" v-if="infoDATA.taskType.associationType.value == 'inspect' || infoDATA.taskType.associationType.value == 'patientTransport'">注意事项</view>
  158. <view class="text1" v-else>工单备注</view>
  159. <view class="text2" style="float: none;word-break: break-all;">{{ infoDATA.workOrderRemark }}</view>
  160. </view>
  161. </view>
  162. <view class="page_item_foot_text" v-if="
  163. infoDATA.taskType.associationType.value == 'inspect' ||
  164. infoDATA.taskType.associationType.value == 'patientTransport'
  165. ">
  166. <text class="text1">患者姓名</text>
  167. <text class="text2">{{ infoDATA.patient.patientName }}
  168. <text v-if="infoDATA.patient.residenceNo">
  169. ({{
  170. infoDATA.patient.residenceNo
  171. }})
  172. </text>
  173. <text v-if="!infoDATA.patient.residenceNo">
  174. ({{
  175. infoDATA.patient.cardNo
  176. }})
  177. </text>
  178. </text>
  179. </view>
  180. <view class="page_item_foot_text" v-if="
  181. (infoDATA.taskType.associationType.value == 'inspect' ||
  182. infoDATA.taskType.associationType.value == 'patientTransport')&&infoDATA.patient.careLevel
  183. ">
  184. <text class="text1">{{infoDATA.patient.careLevel.desc}}</text>
  185. <text class="text2"
  186. :class="[(infoDATA.patient.careLevel.value==0||infoDATA.patient.careLevel.value==1)?'red':'green']">{{infoDATA.patient.careLevel.name}}</text>
  187. </view>
  188. <view class="page_item_foot_text" v-if="
  189. (infoDATA.taskType.associationType.value == 'inspect' ||
  190. infoDATA.taskType.associationType.value == 'patientTransport')&&infoDATA.patient.illnessState
  191. ">
  192. <text class="text1">{{infoDATA.patient.illnessState.desc}}</text>
  193. <text class="text2"
  194. :class="{red:infoDATA.patient.illnessState.value==2||infoDATA.patient.illnessState.value==3}">{{infoDATA.patient.illnessState.name}}</text>
  195. </view>
  196. <view class="page_item_foot_text"
  197. v-if="
  198. (infoDATA.taskType.associationType.value == 'inspect' ||
  199. infoDATA.taskType.associationType.value == 'patientTransport')&&(infoDATA.isAccompany===1||infoDATA.isAccompany===0)">
  200. <text class="text1">陪同情况</text>
  201. <text class="text2"
  202. :class="{red:infoDATA.isAccompany===1}">{{ infoDATA.isAccompany===1?'需要医护陪同':'无需医护陪同'}}</text>
  203. </view>
  204. <view class="page_item_foot_text"
  205. v-if="(infoDATA.taskType.associationType.value == 'inspect' || infoDATA.taskType.associationType.value == 'patientTransport') && infoDATA.inspectScore">
  206. <text class="text1">陪检方式</text>
  207. <text class="text2">{{ infoDATA.inspectScore.inspectMode }}</text>
  208. </view>
  209. <view class="page_item_foot_text"
  210. v-if="(infoDATA.taskType.associationType.value == 'inspect' || infoDATA.taskType.associationType.value == 'patientTransport') && infoDATA.inspectUsers">
  211. <text class="text1">陪检人员</text>
  212. <text class="text2">{{ infoDATA.inspectUsers }}</text>
  213. </view>
  214. <view class="page_item_foot_text"
  215. v-if="(infoDATA.taskType.associationType.value == 'inspect' || infoDATA.taskType.associationType.value == 'patientTransport') && infoDATA.inspectUsersNum">
  216. <text class="text1">陪检人数</text>
  217. <text class="text2">{{ infoDATA.inspectUsersNum }}</text>
  218. </view>
  219. <view class="page_item_foot_text" v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.inspectUsers">
  220. <text class="text1">执行人员</text>
  221. <text class="text2">{{ infoDATA.inspectUsers }}</text>
  222. </view>
  223. <view class="page_item_foot_text"
  224. v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.inspectUsersNum">
  225. <text class="text1">执行人数</text>
  226. <text class="text2">{{ infoDATA.inspectUsersNum }}</text>
  227. </view>
  228. </view>
  229. <!-- 药包 -->
  230. <view class="page_item_info" v-if="infoDATA.taskType.associationType.value == 'drugsBag'">
  231. <text class="page_item_info_title">药包编码</text>
  232. <text class="text">{{ infoDATA.drugs?infoDATA.drugs.packid:'无' }}</text>
  233. </view>
  234. <!-- 血制品 -->
  235. <view class="page_item_info" v-if="
  236. infoDATA.taskType.associationType.value == 'ordinary' &&
  237. infoDATA.taskType.ordinaryField.value == 'blood'
  238. ">
  239. <view>
  240. <text class="page_item_info_title">·</text>
  241. <text class="text">
  242. 送达数量
  243. <text class="page_item_info_txt">{{infoDATA.deliveryNum || '无'}}</text>
  244. </text>
  245. <text class="text">
  246. 实收数量
  247. <text class="page_item_info_txt">{{infoDATA.actualReceiveNum || '无'}}</text>
  248. </text>
  249. <text class="text">
  250. 应收数量
  251. <text class="page_item_info_txt">{{infoDATA.expectReceiveNum || '无'}}</text>
  252. </text>
  253. </view>
  254. </view>
  255. <!-- 标本 -->
  256. <view class="page_item_info" v-if="
  257. infoDATA.taskType.associationType.value == 'specimen' ||
  258. infoDATA.taskType.associationType.value == 'specimenPlan'
  259. ">
  260. <view>
  261. <text class="page_item_info_title">标本信息</text>
  262. <text class="text">
  263. 预计接收
  264. <text class="page_item_info_txt">{{
  265. infoDATA.expectReceiveNum || '无'
  266. }}</text>
  267. </text>
  268. <text class="text"
  269. v-if="infoDATA.gdState.value == 5 || infoDATA.gdState.value == 6 || infoDATA.gdState.value == 7">
  270. 扫描接收
  271. <text class="page_item_info_txt">{{infoDATA.actualReceiveNum || '无'}}</text>
  272. </text>
  273. <text class="text" v-if="infoDATA.gdState.value == 6 || infoDATA.gdState.value == 7">
  274. 实际送达
  275. <text class="page_item_info_txt">{{actualDelivery || '无'}}</text>
  276. </text>
  277. </view>
  278. <view v-for="spe in infoDATA.specimenSet" :key="spe.id" class="spe_list">
  279. <view>
  280. <text class="page_item_info_title">标本类型</text>
  281. <text class="text">{{ spe.stype ? spe.stype.name : "-" }}({{
  282. spe.urgent == 1 ? "急" : "普"
  283. }})</text>
  284. </view>
  285. <view>
  286. <text class="page_item_info_title">标本编码</text>
  287. <text class="text">{{ spe.scode }}</text>
  288. </view>
  289. <view>
  290. <text class="page_item_info_title">患者姓名</text>
  291. <text class="text">{{ spe.patientName }}<text v-if="spe.bedNum">({{spe.bedNum}})</text></text>
  292. </view>
  293. <view>
  294. <text class="page_item_info_title">目标科室</text>
  295. <text class="text">{{
  296. spe.checkDept ? spe.checkDept.dept : "-"
  297. }}</text>
  298. </view>
  299. </view>
  300. </view>
  301. <!-- 静配 -->
  302. <view class="page_item_info" v-if="infoDATA.taskType.associationType.value == 'jPBag'">
  303. <text class="page_item_info_title">药包编码</text>
  304. <text class="text">{{ infoDATA.staticDistri?infoDATA.staticDistri.packid:'无' }}</text>
  305. </view>
  306. <!-- 陪检 -->
  307. <view v-if="infoDATA.taskType.associationType.value == 'inspect'">
  308. <view class="page_item_info">
  309. <text class="page_item_info_title">检查信息</text>
  310. </view>
  311. <view id="infos" :animation="animationData">
  312. <view class="page_item_infos" v-for="(item, index) of infoDATA.checkList" :key="index">
  313. <view class="page_item_info2">
  314. <view class="page_item_foot_text">
  315. <text class="text1">检查科室</text>
  316. <text class="text2">{{ item.execDept?item.execDept.dept:'-' }}</text>
  317. </view>
  318. <view class="page_item_foot_text">
  319. <text class="text1">检查项</text>
  320. <text class="text2">{{ item.inspectName||'-' }}</text>
  321. </view>
  322. <view class="page_item_foot_text">
  323. <text class="text1">叫号信息</text>
  324. <text class="text2">{{ item.reservationNumber||'-' }}</text>
  325. </view>
  326. <view class="page_item_foot_text">
  327. <text class="text1">预约时间</text>
  328. <text class="text2">{{ item.yyTime || "-" }}</text>
  329. </view>
  330. <!-- <view class="page_item_foot_text"
  331. v-show="item.inspectState.value==1||item.inspectState.value==2||item.inspectState.value==4">
  332. <view class="btn" @click.stop="remove(item)">移除</view>
  333. </view> -->
  334. <view class="page_item_foot_text">
  335. <view class="btn" @click.stop="remove(item)">移除</view>
  336. </view>
  337. </view>
  338. </view>
  339. </view>
  340. <view id="pulldown" @click="show('show')" v-if="showType == 'hiddle'">
  341. 点击可查看检查详情
  342. <text class="cubeic-pulldown newicon newicon-paixujiantouxia"></text>
  343. </view>
  344. <view id="pullup" @click="show('hiddle')" v-if="showType == 'show'">
  345. 点击可收起检查详情
  346. <text class="cubeic-pullup newicon newicon-paixujiantoushang"></text>
  347. </view>
  348. </view>
  349. </view>
  350. <view class="foot_btn2 footerPadding" style="flex-wrap: wrap;">
  351. <view class="btn2" @click="showAlert" v-if="infoDATA.gdState.value == 2">接单</view>
  352. <!-- 如果不是静配,药配,标本配送,标本轮巡,万能交接 -->
  353. <template
  354. v-if="((!infoDATA.worker)||(infoDATA.worker&&infoDATA.worker.id == currentUserId))&&infoDATA.gdState.value != 6&&infoDATA.gdState.value != 7&&infoDATA.gdState.value != 11">
  355. <!-- <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
  356. (hideInspectScan != 1 || (hideInspectScan == 1 && infoDATA.gdState.value == 4)) &&
  357. infoDATA.gdState.value != 2 &&
  358. infoDATA.taskType.associationType.value != 'jPBag' &&
  359. infoDATA.taskType.associationType.value != 'drugsBag' &&
  360. infoDATA.taskType.associationType.value != 'specimen' &&
  361. infoDATA.taskType.associationType.value != 'specimenPlan' &&
  362. infoDATA.taskType.associationType.value != 'ordinary' &&
  363. !(infoDATA.taskType.associationType.value == 'other' && (infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].actionsSwitch || infoDATA.gdState.value == 5 && infoDATA.taskType.carryingCourses[1].actionsSwitch))
  364. " hover-class="seimin-btn-hover">
  365. <smallScreen :sData="infoDATA" :sType="1">扫码</smallScreen>
  366. </view> -->
  367. <!-- 其他临床服务-完成工单-待到达 -->
  368. <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].actionsSwitch" class="btn2 page_item_btn" @click="otherCompleteOrder(infoDATA)" hover-class="seimin-btn-hover">确认到达</view>
  369. <!-- 其他临床服务-完成工单-待送达 -->
  370. <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 5 && infoDATA.taskType.carryingCourses[1].actionsSwitch" class="btn2 page_item_btn" @click="otherCompleteOrder(infoDATA)" hover-class="seimin-btn-hover">完成工单</view>
  371. <!-- 其他临床服务-拍照 -->
  372. <!-- <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].photoSwitch" class="btn2 page_item_btn" @click="photographToOther(infoDATA, 'start')" hover-class="seimin-btn-hover">拍照</view> -->
  373. <!-- <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" @click="photograph(infoDATA)" v-if="
  374. infoDATA.taskType.associationType.value != 'jPBag' &&
  375. infoDATA.taskType.associationType.value != 'drugsBag' &&
  376. infoDATA.taskType.associationType.value != 'specimen' &&
  377. infoDATA.taskType.associationType.value != 'specimenPlan' &&
  378. infoDATA.taskType.associationType.value != 'other' &&
  379. infoDATA.taskType.associationType.value != 'ordinary' &&
  380. infoDATA.gdState.value == 4
  381. " hover-class="seimin-btn-hover">拍照</view> -->
  382. <view class="btn3" @click="specialCloseClick()" v-if="
  383. infoDATA.gdState.value != 2 &&
  384. infoDATA.taskType.associationType.value != 'jPBag' &&
  385. infoDATA.taskType.associationType.value != 'drugsBag' &&
  386. infoDATA.taskType.associationType.value != 'specimen' &&
  387. infoDATA.taskType.associationType.value != 'specimenPlan' &&
  388. infoDATA.taskType.associationType.value != 'ordinary' &&
  389. infoDATA.taskType.specialCloseButton == 1
  390. " hover-class="seimin-btn-hover">特殊情况关闭</view>
  391. </template>
  392. <!-- 如果不是患者陪检或患者转运或其他,万能交接 -->
  393. <!-- <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
  394. infoDATA.gdState.value != 2 &&
  395. infoDATA.taskType.associationType.value != 'patientTransport' &&
  396. infoDATA.taskType.associationType.value != 'inspect' &&
  397. infoDATA.taskType.associationType.value != 'other' &&
  398. infoDATA.taskType.associationType.value != 'ordinary'
  399. " hover-class="seimin-btn-hover">
  400. <smallScreen :sData="infoDATA" :sType="2">扫码</smallScreen>
  401. </view> -->
  402. <!-- 如果是万能交接 -->
  403. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']"
  404. v-if="infoDATA.taskType.associationType.value == 'ordinary'"
  405. hover-class="seimin-btn-hover" @click="goBack()">
  406. 知道了
  407. </view>
  408. <view class="btn3" @click="specialCloseClick()" v-if="
  409. infoDATA.gdState.value != 2 &&
  410. infoDATA.taskType.associationType.value != 'patientTransport' &&
  411. infoDATA.taskType.associationType.value != 'inspect' &&
  412. infoDATA.taskType.associationType.value != 'other' &&
  413. infoDATA.taskType.specialCloseButton == 1
  414. " hover-class="seimin-btn-hover">特殊情况关闭</view>
  415. <view class="btn3" @click="viewSpecimen(infoDATA)" v-if="
  416. infoDATA.taskType.associationType.value == 'specimen' ||
  417. infoDATA.taskType.associationType.value == 'specimenPlan'
  418. " hover-class="seimin-btn-hover">查看标本</view>
  419. <view class="btn3" @click="viewDrugsBag(infoDATA)" v-if="infoDATA.taskType.associationType.value == 'drugsBag'" hover-class="seimin-btn-hover">查看业务流程</view>
  420. <view class="btn3" @click="toDrugBatches(infoDATA.drugs.batchNo)" v-if="infoDATA.taskType.associationType.value == 'drugsBag' && taskTypeConfig.drugsBatchInfo == 1" hover-class="seimin-btn-hover">药品批次</view>
  421. <view class="btn3" @click="viewBlood(infoDATA)" v-if="infoDATA.taskType.associationType.value == 'ordinary' && infoDATA.taskType.ordinaryField.value == 'blood'" hover-class="seimin-btn-hover">查看血制品</view>
  422. <view class="btn3" @click="viewNewDrugsBag(infoDATA, infoDATA.taskType.ordinaryField.value)" v-if="infoDATA.taskType.associationType.value == 'ordinary' && (infoDATA.taskType.ordinaryField.value == 'drugsJpbag' || infoDATA.taskType.ordinaryField.value == 'drugsWestern' || infoDATA.taskType.ordinaryField.value == 'drugsReturn' || infoDATA.taskType.ordinaryField.value == 'drugsPoison' || infoDATA.taskType.ordinaryField.value == 'drugsHerbal')" hover-class="seimin-btn-hover">业务数据</view>
  423. <view class="btn3" @click="additionalUser(infoDATA)" v-if="(infoDATA.taskType.associationType.value == 'inspect' || infoDATA.taskType.associationType.value == 'patientTransport') && infoDATA.worker && infoDATA.worker.id && multiplayerMode === 1" hover-class="seimin-btn-hover">追加陪检人员</view>
  424. <view class="btn3" @click="additionalUser(infoDATA)" v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.worker && infoDATA.worker.id && clinicalMultiplayerMode === 1 && clinicalTaskIdsFlag && !infoDATA.copyBy" hover-class="seimin-btn-hover">追加执行人员</view>
  425. <view class="btn3" style="flex-basis: 100%;" @click="patientHandover(infoDATA)" v-if="infoDATA.taskType.associationType.value == 'patientTransport' && infoDATA.worker && infoDATA.worker.id && handoverOrder === 1" hover-class="seimin-btn-hover">扫描交接</view>
  426. </view>
  427. <!-- 弹窗 -->
  428. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  429. @know="know" :operate="models.operate" @ok="ok" @cancel="cancel" :textareaFlag="textareaFlag"
  430. @textareaInput="textareaInput"></showModel>
  431. <!-- 弹窗 -->
  432. <inspectRemoveModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor"
  433. :content="models1.content" @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1" :remove="true">
  434. </inspectRemoveModel>
  435. <!-- 弹窗 -->
  436. <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
  437. :operate="models2.operate" @ok="ok2" @cancel="cancel2"></showModel>
  438. <!-- 填写交接人工号弹窗 -->
  439. <selectAccount v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  440. @cancel="hosCancel">
  441. </selectAccount>
  442. <!-- 手动查询弹窗 -->
  443. <checkboxModal v-if="checkboxModels.disjunctor" :content="checkboxModels.content" :disjunctor="checkboxModels.disjunctor"
  444. @ok="checkboxOk" @cancel="checkboxCancel">
  445. </checkboxModal>
  446. <!-- PDA扫描 -->
  447. <scanner></scanner>
  448. </view>
  449. </template>
  450. <script>
  451. import scanner from "../../components/scanner/scanner.vue";
  452. import selectAccount from "../../components/selectAccount/selectAccount.vue";
  453. import smallScreen from "../../components/smallScreen/smallScreen.vue";
  454. import {
  455. get,
  456. post,
  457. SM,
  458. webHandle
  459. } from "../../http/http.js";
  460. import {
  461. pathUrl,
  462. photographTool
  463. } from "../../tools/photograph.js";
  464. export default {
  465. components: {
  466. selectAccount,
  467. scanner
  468. },
  469. data() {
  470. return {
  471. patientHandoverData: {},
  472. patientHandoverCode: '',
  473. other: {
  474. user: {},
  475. data: {},
  476. },
  477. // 手动查询弹窗model
  478. checkboxModels: {
  479. disjunctor: false,
  480. },
  481. taskTypeConfig: {},
  482. // 填写交接人工号弹窗model
  483. hosModels: {
  484. disjunctor: false,
  485. },
  486. currentCode: '', //当前拍照使用的科室二维码
  487. currentData: {}, //当前小扫描的工单对象
  488. multiplayerMode: 0,
  489. handoverOrder: 0,
  490. hideInspectScan: 0,
  491. clinicalMultiplayerMode: 0,
  492. clinicalTaskIdsFlag: false,
  493. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  494. SMFlag:true,
  495. actualDelivery: 0,
  496. currentUserId: 0,
  497. // 弹窗model
  498. models: {
  499. disjunctor: false,
  500. },
  501. // 弹窗model1
  502. models1: {
  503. disjunctor: false,
  504. },
  505. // 弹窗model1
  506. models2: {
  507. disjunctor: false,
  508. },
  509. currentInspect: null,
  510. showType: "show",
  511. infoDATA: {},
  512. dataId: "",
  513. animationData: {},
  514. // 特殊情况关闭原因开关
  515. textareaFlag: false,
  516. textareaText: "",
  517. };
  518. },
  519. filters: {
  520. // 自定义管道 yyTime
  521. yyTimeFilter: function(data) {
  522. if (data) {
  523. let nDate = null;
  524. if (typeof data == 'string') {
  525. let arr = data.split(/[-:\s]/);
  526. nDate = new Date(
  527. arr[0] - 0,
  528. arr[1] - 1,
  529. arr[2] - 0,
  530. arr[3] - 0,
  531. arr[4] - 0,
  532. 0
  533. );
  534. } else if (typeof data == 'number') {
  535. nDate = new Date(data);
  536. }
  537. const month = (nDate.getMonth() + 1).toString().padStart(2, 0);
  538. const date = nDate.getDate().toString().padStart(2, 0);
  539. const hour = nDate.getHours().toString().padStart(2, 0);
  540. const minute = nDate.getMinutes().toString().padStart(2, 0);
  541. return `${month}-${date} ${hour}:${minute}`;
  542. } else {
  543. return "-";
  544. }
  545. },
  546. },
  547. methods: {
  548. ok2() {
  549. uni.showLoading({
  550. title: "加载中",
  551. mask: true,
  552. });
  553. post("/patient/patientHandover", {
  554. id: this.patientHandoverCode.id,
  555. patientCode: this.patientHandoverData.patient.patientCode,
  556. }).then((result) => {
  557. this.models2.disjunctor = false;
  558. if (result.state == 200) {
  559. uni.hideLoading();
  560. uni.showToast({
  561. icon: "none",
  562. mask: true,
  563. title: "交接成功!",
  564. });
  565. setTimeout(() => {
  566. uni.navigateTo({
  567. url: `/pages/receiptpage/receiptpage`,
  568. });
  569. },300)
  570. } else {
  571. uni.hideLoading();
  572. uni.showToast({
  573. icon: "none",
  574. title: result.msg || "接口获取数据失败!",
  575. });
  576. }
  577. });
  578. },
  579. cancel2() {
  580. this.models2.disjunctor = false;
  581. },
  582. // 门诊患者交接
  583. patientHandover(infoDATA){
  584. console.log(infoDATA);
  585. this.patientHandoverData = infoDATA;
  586. if (!this.SMFlag) {
  587. return;
  588. }
  589. this.SMFlag = false;
  590. SM().then((content) => {
  591. uni.showLoading({
  592. title: "加载中",
  593. mask: true,
  594. });
  595. //检验二维码的有效性(扫码前必须验证)
  596. post("/dept/scanning", {
  597. content,
  598. })
  599. .then((result) => {
  600. try{
  601. this.patientHandoverCode = JSON.parse(result.code);
  602. }catch(e){
  603. this.patientHandoverCode = '';
  604. }
  605. this.SMFlag = true;
  606. // 200检测通过,201没有有效期也通过。
  607. if (result.state == 200 || result.state == 201) {
  608. uni.hideLoading();
  609. if(Object.prototype.toString.call(this.patientHandoverCode) === '[object Object]' && this.patientHandoverCode.name){
  610. this.models2 = {
  611. disjunctor: true,
  612. title: "提示",
  613. content: `您确认要与<span class="red">${this.patientHandoverCode.name}</span>交接吗?`,
  614. icon: "warn",
  615. operate: {
  616. ok: "确定",
  617. cancel: "取消",
  618. },
  619. };
  620. }else{
  621. uni.showToast({
  622. icon: "none",
  623. title: "请扫描正确的二维码!",
  624. });
  625. }
  626. } else {
  627. uni.hideLoading();
  628. uni.showToast({
  629. icon: "none",
  630. title: result.info || "接口获取数据失败!",
  631. });
  632. }
  633. })
  634. }).catch(err => {
  635. this.SMFlag = true;
  636. });
  637. },
  638. // 手动查询-确认
  639. checkboxOk(bulkCopy) {
  640. console.log(bulkCopy);
  641. this.checkboxModels.disjunctor = false;
  642. let { user, data } = this.other;
  643. this.additionalUserCommon(user, data.id, data.worker.id, bulkCopy);
  644. },
  645. // 手动查询-取消
  646. checkboxCancel() {
  647. this.checkboxModels.disjunctor = false;
  648. },
  649. // 手动查询弹窗
  650. showCheckboxModal(user, data) {
  651. this.other = {
  652. user,
  653. data,
  654. };
  655. this.checkboxModels = {
  656. content: `您要最追加的人员为${user.name},您确认要追加吗?`,
  657. disjunctor: true,
  658. }
  659. },
  660. // 判断药品页面控制-是否显示关联批次药品
  661. isShowDrugsBatchInfo(){
  662. post("/simple/data/fetchDataList/taskType", {
  663. "idx": 0,
  664. "sum": 10,
  665. "taskType": {
  666. "simpleQuery": true,
  667. "hosId": {
  668. "id": this.hosId
  669. },
  670. "associationType": {
  671. "key": "association_types",
  672. "value": "drugsBag"
  673. }
  674. }
  675. }).then((res) => {
  676. if (res.status == 200) {
  677. res.list = res.list || [];
  678. let taskType = res.list[0] || {};
  679. if(taskType.id){
  680. post("/simple/data/fetchDataList/taskTypeConfig", {
  681. "idx": 0,
  682. "sum": 10,
  683. "taskTypeConfig": {
  684. "taskTypeDTO": {
  685. "hosId": {
  686. "id": this.hosId
  687. },
  688. "associationType": taskType.associationType
  689. }
  690. }
  691. }).then((res) => {
  692. if (res.status == 200) {
  693. res.list = res.list || [];
  694. this.taskTypeConfig = res.list[0] || {};
  695. } else {
  696. uni.showToast({
  697. icon: "none",
  698. title: res.msg || "接口获取数据失败!",
  699. });
  700. }
  701. });
  702. }else{
  703. uni.showToast({
  704. icon: "none",
  705. title: "请配置药品任务类型!",
  706. });
  707. }
  708. } else {
  709. uni.showToast({
  710. icon: "none",
  711. title: res.msg || "接口获取数据失败!",
  712. });
  713. }
  714. });
  715. },
  716. // 跳转到药品批次页面
  717. toDrugBatches(batchNo){
  718. uni.navigateTo({
  719. url: `../drugBatches/drugBatches?batchNo=${batchNo}`,
  720. });
  721. },
  722. // 前往其他临床服务完成工单确认页面
  723. otherCompleteOrder(data){
  724. console.log(data);
  725. uni.navigateTo({
  726. url: `../otherCompleteOrder/otherCompleteOrder?orderId=${data.id}&taskType=${data.taskType ? encodeURIComponent(JSON.stringify(data.taskType)) : ''}&order=${data ? encodeURIComponent(JSON.stringify(data)) : ''}`,
  727. });
  728. },
  729. // 如果不是静配,药配,标本配送,标本轮巡
  730. // 科室签到(小扫描)-拍照
  731. nextDeptOrder_ss(data, accountObj) {
  732. console.log(this.currentCode);
  733. let isKs = 0;
  734. let ids = [];
  735. let id = data.id;
  736. ids.push(id);
  737. let list = {
  738. code: "",
  739. ids: ids,
  740. };
  741. let code = "";
  742. let type = "";
  743. if (this.currentCode) {
  744. let gdStateValue = data.gdState.value; //工单状态value
  745. let associationTypeValue = data.taskType.associationType.value; //关联类型value
  746. // 其他临床服务,并且工单状态是待到达||工单状态待送达
  747. if (
  748. (associationTypeValue == "other" &&
  749. gdStateValue == "4") ||
  750. gdStateValue == "5"
  751. ) {
  752. code = this.currentCode;
  753. type = "orderSign/" + code;
  754. list = {
  755. ids
  756. };
  757. if (accountObj) {
  758. list.handover = [accountObj.accountId];
  759. }
  760. isKs = 1;
  761. }
  762. uni.showLoading({
  763. title: "加载中",
  764. mask: true,
  765. });
  766. post("/workerOrder/" + type, list).then((res) => {
  767. uni.hideLoading();
  768. if (res) {
  769. if (res.status == 200) {
  770. if (
  771. gdStateValue == "4" &&
  772. associationTypeValue == "other"
  773. ) {
  774. uni.navigateTo({
  775. url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  776. });
  777. }
  778. if (gdStateValue == "5") {
  779. uni.navigateTo({
  780. url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  781. });
  782. }
  783. } else {
  784. uni.navigateTo({
  785. url: `../../pages/scanning_Result/scanning_Result?type=${
  786. associationTypeValue
  787. }&type1=${res.type}&id=${data.id}&status=600&msg=${
  788. res.msg
  789. }&isKs=${isKs}&model=${encodeURIComponent(
  790. JSON.stringify(res)
  791. )}&qrcode=${this.currentCode}`,
  792. });
  793. }
  794. } else {
  795. uni.navigateTo({
  796. url: `../../pages/scanning_Result/scanning_Result?id=${data.id}&status=600&msg=扫码失败!请扫描正确的二维码!&isKs=${isKs}&qrcode=${this.currentCode}`,
  797. });
  798. }
  799. });
  800. }
  801. },
  802. // 填写交接人工号-确认
  803. hosOk(data) {
  804. console.log(data);
  805. const {
  806. accountName,
  807. account,
  808. accountId
  809. } = data;
  810. if (!accountName && !account) {
  811. //没有填写交接人
  812. uni.showModal({
  813. title: '提示',
  814. content: "请填写交接人工号!",
  815. showCancel: false,
  816. success: function(res) {
  817. if (res.confirm) {
  818. console.log('用户点击确定');
  819. } else if (res.cancel) {
  820. console.log('用户点击取消');
  821. }
  822. }
  823. });
  824. return;
  825. } else if (!accountName && account || accountName && !account) {
  826. //没有填写交接人
  827. uni.showModal({
  828. title: '提示',
  829. content: "请填写正确的交接人工号!",
  830. showCancel: false,
  831. success: function(res) {
  832. if (res.confirm) {
  833. console.log('用户点击确定');
  834. } else if (res.cancel) {
  835. console.log('用户点击取消');
  836. }
  837. }
  838. });
  839. return;
  840. }
  841. this.hosModels.disjunctor = false;
  842. let associationTypeValue = this.currentData.taskType.associationType.value;
  843. console.log(associationTypeValue)
  844. this.uploadToOther(this.currentData, data, 'start');
  845. },
  846. // 填写交接人工号-取消
  847. hosCancel() {
  848. this.hosModels.disjunctor = false;
  849. },
  850. // 填写交接人工号弹窗
  851. showSelectAccount() {
  852. this.hosModels = {
  853. disjunctor: true,
  854. }
  855. },
  856. // 拍照-上传
  857. uploadToOther(data, accountObj, type){
  858. // 其他临床服务拍照签到
  859. console.log(data, 1111);
  860. let id_seimin;
  861. let asTypeValue_seimin;
  862. let gdStateValue_seimin;
  863. if (data.status != 200 && data.status !== undefined) {
  864. id_seimin = data.id;
  865. asTypeValue_seimin = data.type;
  866. gdStateValue_seimin = JSON.parse(data.model).gdstate2; //type改成gdstate
  867. } else {
  868. id_seimin = data.id;
  869. asTypeValue_seimin = data.taskType.associationType.value;
  870. gdStateValue_seimin = data.gdState.value;
  871. }
  872. //#ifdef H5
  873. uni.chooseImage({
  874. count: 1,
  875. sourceType: ['camera'],
  876. success: (chooseImageRes) => {
  877. console.log(chooseImageRes, pathUrl)
  878. const tempFilePaths = chooseImageRes.tempFilePaths;
  879. const tempFiles = chooseImageRes.tempFiles;
  880. let tp = tempFilePaths[0];
  881. uni.showLoading({
  882. mask: true,
  883. title: '加载中'
  884. });
  885. post('/workerOrder/findRecordInfoByOrderId', {
  886. orderId: id_seimin,
  887. gdOperate: 21,
  888. }).then(result => {
  889. console.log(result)
  890. if (result.state == 200) {
  891. uni.getImageInfo({
  892. src: tp,
  893. success: (res) => {
  894. console.log('压缩前', res)
  895. let canvasWidth = res.width //图片原始长宽
  896. let canvasHeight = res.height
  897. let img = new Image()
  898. img.src = res.path
  899. let canvas = document.createElement('canvas');
  900. let ctx = canvas.getContext('2d')
  901. canvas.width = canvasWidth
  902. canvas.height = canvasHeight
  903. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
  904. canvas.toBlob((fileSrc) => {
  905. tp = window.URL.createObjectURL(fileSrc)
  906. console.log('压缩后', tp);
  907. uni.uploadFile({
  908. url: pathUrl + '/common/common/uploadAttachment/'+(type == 'start' ? 'orderStartPhoto' : 'orderEndPhoto')+'/' + id_seimin + '/' + result.recordId,
  909. filePath: tp,
  910. name: 'file',
  911. formData: {
  912. 'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[
  913. 0].path.split(
  914. /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
  915. },
  916. success: (uploadFileRes) => {
  917. console.log(uploadFileRes, 10086, asTypeValue_seimin);
  918. this.nextDeptOrder_ss(data, accountObj, type);
  919. },
  920. fail: err => {
  921. console.error(err);
  922. uni.hideLoading();
  923. uni.showToast({
  924. icon: 'none',
  925. title: '上传失败',
  926. duration: 2000
  927. });
  928. }
  929. });
  930. }, 'image/jpeg', 0.3)
  931. },
  932. fail: function () {
  933. uni.hideLoading();
  934. uni.showToast({
  935. icon: 'none',
  936. title: '上传失败',
  937. duration: 2000
  938. });
  939. }
  940. })
  941. } else {
  942. uni.hideLoading();
  943. uni.showToast({
  944. icon: "none",
  945. title: result.msg || "接口获取数据失败!",
  946. });
  947. }
  948. })
  949. }
  950. });
  951. //#endif
  952. //#ifdef APP-PLUS
  953. uni.chooseImage({
  954. count: 1,
  955. sourceType: ['camera'],
  956. sizeType: ['compressed'],
  957. success: (chooseImageRes) => {
  958. console.log(chooseImageRes, pathUrl)
  959. const tempFilePaths = chooseImageRes.tempFilePaths;
  960. const tempFiles = chooseImageRes.tempFiles;
  961. let tp = tempFilePaths[0];
  962. uni.showLoading({
  963. mask: true,
  964. title: '加载中'
  965. });
  966. post('/workerOrder/findRecordInfoByOrderId', {
  967. orderId: id_seimin,
  968. gdOperate: 21,
  969. }).then(result => {
  970. console.log(result)
  971. if (result.state == 200) {
  972. uni.compressImage({
  973. src: tp,
  974. quality: 30,
  975. success: (res) => {
  976. console.log('压缩前', res)
  977. tp = res.tempFilePath;
  978. console.log('压缩后', tp);
  979. uni.uploadFile({
  980. url: pathUrl + '/common/common/uploadAttachment/'+(type == 'start' ? 'orderStartPhoto' : 'orderEndPhoto')+'/' + id_seimin + '/' + result.recordId,
  981. filePath: tp,
  982. name: 'file',
  983. formData: {
  984. 'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[
  985. 0].path.split(
  986. /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
  987. },
  988. success: (uploadFileRes) => {
  989. console.log(uploadFileRes, 10086, asTypeValue_seimin);
  990. this.nextDeptOrder_ss(data, accountObj, type);
  991. },
  992. fail: err => {
  993. console.error(err);
  994. uni.hideLoading();
  995. uni.showToast({
  996. icon: 'none',
  997. title: '上传失败',
  998. duration: 2000
  999. });
  1000. }
  1001. });
  1002. },
  1003. fail: function () {
  1004. uni.hideLoading();
  1005. uni.showToast({
  1006. icon: 'none',
  1007. title: '上传失败',
  1008. duration: 2000
  1009. });
  1010. }
  1011. })
  1012. } else {
  1013. uni.hideLoading();
  1014. uni.showToast({
  1015. icon: "none",
  1016. title: result.msg || "接口获取数据失败!",
  1017. });
  1018. }
  1019. })
  1020. }
  1021. });
  1022. //#endif
  1023. },
  1024. // 拍照-其他
  1025. async photographToOther(data, type) {
  1026. this.currentData = data;
  1027. uni.showLoading({
  1028. title: "加载中",
  1029. mask: true,
  1030. });
  1031. // 其他临床服务
  1032. let result = await post("/dept/scanning", {
  1033. content: type === 'start' ? data.startDept.qrcode : data.endDepts[0].qrcode,
  1034. taskTypeId: data.taskType.id,
  1035. gdState: data.gdState.id,
  1036. });
  1037. uni.hideLoading();
  1038. this.currentCode = result.code;
  1039. if (result.state == 200 || result.state == 201) {
  1040. uni.showModal({
  1041. title: '提示',
  1042. content: '请尽量拍摄角度覆盖清洁区域?',
  1043. success: (res) => {
  1044. if (res.confirm) {
  1045. if (result.account) {
  1046. this.uploadToOther(data, {
  1047. account: result.account,
  1048. accountName: result.name,
  1049. accountId: result.id,
  1050. }, type);
  1051. } else {
  1052. this.uploadToOther(data, undefined, type);
  1053. }
  1054. } else if (res.cancel) {
  1055. console.log('用户点击取消');
  1056. }
  1057. }
  1058. });
  1059. } else if (result.state == '0000') {
  1060. this.showSelectAccount();
  1061. } else {
  1062. uni.showToast({
  1063. icon: "none",
  1064. title: result.info || "接口获取数据失败!",
  1065. });
  1066. }
  1067. },
  1068. goBack() {
  1069. uni.navigateTo({
  1070. url: "../receiptpage/receiptpage",
  1071. });
  1072. },
  1073. // 查看标本
  1074. viewSpecimen(workOrder) {
  1075. uni.navigateTo({
  1076. url: `../specimenDetail/specimenDetail?workOrderId=${workOrder.id}&associationTypeValue=${workOrder.taskType.associationType.value}`,
  1077. });
  1078. },
  1079. // 查看药品业务数据
  1080. viewDrugsBag(workOrder) {
  1081. uni.navigateTo({
  1082. url: `../drugsBagHistory/drugsBagHistory?id=${workOrder.drugs.id}&packid=${workOrder.drugs.packid}`,
  1083. });
  1084. },
  1085. // 查看血制品
  1086. viewBlood(workOrder) {
  1087. uni.showLoading({
  1088. title: "加载中",
  1089. mask: true,
  1090. });
  1091. post('/transflow/checkData', {
  1092. "type": "blood",
  1093. "orderId": workOrder.id
  1094. }).then(res => {
  1095. uni.hideLoading();
  1096. if(res.state == 200){
  1097. uni.navigateTo({
  1098. url: `../blood_list/blood_list?bloods=${encodeURIComponent(JSON.stringify(res.data.all))}`,
  1099. });
  1100. }else{
  1101. uni.showToast({
  1102. icon: "none",
  1103. title: res.msg || "接口获取数据失败!",
  1104. });
  1105. }
  1106. })
  1107. },
  1108. // 查看新药品
  1109. viewNewDrugsBag(workOrder, type) {
  1110. uni.showLoading({
  1111. title: "加载中",
  1112. mask: true,
  1113. });
  1114. let postData = {
  1115. "idx": 0,
  1116. "sum": 1,
  1117. "taskTypeConfig": {
  1118. "taskTypeDTO": {
  1119. "hosId": {
  1120. "id": this.hosId
  1121. },
  1122. "ordinaryField": {
  1123. "key": "ordinary_field",
  1124. "value": type
  1125. }
  1126. }
  1127. }
  1128. };
  1129. post('/simple/data/fetchDataList/taskTypeConfig', postData).then(res => {
  1130. uni.hideLoading();
  1131. if(res.status == 200){
  1132. let list = res.list || [];
  1133. if(list.length){
  1134. let config = list[0];
  1135. if(config.drugsModel === 1){
  1136. uni.navigateTo({
  1137. url: `/pages/newDrug/detail?drugsBagType=${type}&orderId=${workOrder.id}`,
  1138. });
  1139. } else if(config.drugsModel === 2){
  1140. uni.navigateTo({
  1141. url: `/pages/newDrug/list?drugsBagType=${type}&orderId=${workOrder.id}`,
  1142. });
  1143. }
  1144. }else{
  1145. uni.showToast({
  1146. icon: "none",
  1147. title: "未查询到配置!",
  1148. });
  1149. }
  1150. }else{
  1151. uni.showToast({
  1152. icon: "none",
  1153. title: res.msg || "接口获取数据失败!",
  1154. });
  1155. }
  1156. })
  1157. },
  1158. // 移除检查->知道了
  1159. know1() {
  1160. this.models1.disjunctor = false;
  1161. // this.getInfo(this.dataId);
  1162. uni.navigateTo({
  1163. url: '../receiptpage/receiptpage',
  1164. });
  1165. },
  1166. // 移除检查->确定
  1167. ok1(data) {
  1168. console.log(data);
  1169. const {
  1170. value,
  1171. yyTime
  1172. } = data;
  1173. if (!value) {
  1174. //没有选择移除原因
  1175. uni.showModal({
  1176. title: "提示",
  1177. content: "请选择移除原因!",
  1178. showCancel: false,
  1179. success: function(res) {
  1180. if (res.confirm) {
  1181. console.log("用户点击确定");
  1182. } else if (res.cancel) {
  1183. console.log("用户点击取消");
  1184. }
  1185. },
  1186. });
  1187. return;
  1188. } else if (value == 2 && !yyTime) {
  1189. //没有填写预约时间
  1190. uni.showModal({
  1191. title: "提示",
  1192. content: "请填写预约时间!",
  1193. showCancel: false,
  1194. success: function(res) {
  1195. if (res.confirm) {
  1196. console.log("用户点击确定");
  1197. } else if (res.cancel) {
  1198. console.log("用户点击取消");
  1199. }
  1200. },
  1201. });
  1202. return;
  1203. }
  1204. this.models1.disjunctor = false;
  1205. let postData = {
  1206. gdId: this.infoDATA.id,
  1207. inspectId: this.currentInspect.id,
  1208. reason: value == 1 ? 'checkDone' : value == 2 ? 'modificationTime' : 'wrongOrder',
  1209. yyTime: value == 2 ? yyTime : undefined,
  1210. };
  1211. uni.showLoading({
  1212. title: '移除中',
  1213. mask: true,
  1214. })
  1215. post('/workerOrder/removeInspectByOderId', postData).then(res => {
  1216. uni.hideLoading();
  1217. if (res.state == 200) {
  1218. uni.showToast({
  1219. icon: 'none',
  1220. title: '移除成功!',
  1221. success() {
  1222. setTimeout(() => {
  1223. uni.navigateTo({
  1224. url: '../receiptpage/receiptpage',
  1225. });
  1226. }, 1500)
  1227. }
  1228. })
  1229. } else {
  1230. uni.showToast({
  1231. icon: 'none',
  1232. title: '移除失败!',
  1233. })
  1234. }
  1235. })
  1236. },
  1237. // 移除检查->取消
  1238. cancel1() {
  1239. this.models1.disjunctor = false;
  1240. },
  1241. // 移除
  1242. remove(item) {
  1243. this.currentInspect = item;
  1244. this.models1 = {
  1245. disjunctor: true,
  1246. content: "请选择您移除检查的原因?检查移除后将会自动完成或删除工单!",
  1247. icon: "warn",
  1248. operate: {
  1249. ok: "确定",
  1250. cancel: "取消",
  1251. },
  1252. };
  1253. },
  1254. // 拍照
  1255. photograph(data) {
  1256. photographTool(data);
  1257. },
  1258. // 特殊情况输入文字
  1259. textareaInput(value) {
  1260. this.textareaText = value;
  1261. if (value.trim().length >= 10) {
  1262. this.models.operate = {
  1263. ok: "确定",
  1264. cancel: "取消",
  1265. };
  1266. } else {
  1267. this.models.operate = {
  1268. cancel: "取消",
  1269. };
  1270. }
  1271. },
  1272. // 追加陪检人/执行人按钮
  1273. additionalUser(data) {
  1274. if (!this.SMFlag) {
  1275. return;
  1276. }
  1277. this.SMFlag = false;
  1278. console.log(data, 'data');
  1279. SM().then((ress1) => {
  1280. uni.showLoading({
  1281. title: "加载中",
  1282. mask: true,
  1283. });
  1284. //检验二维码的有效性
  1285. post("/dept/scanning", {
  1286. content: ress1,
  1287. taskTypeId: data.taskType.id,
  1288. gdState: data.gdState.id,
  1289. }).then((result) => {
  1290. this.SMFlag = true;
  1291. // this.currentCode = result.code;
  1292. if (result.state == 200 || result.state == 201) {
  1293. console.log(result);
  1294. let user;
  1295. try{
  1296. // json对象字符串
  1297. user = JSON.parse(result.code);
  1298. // 不是json对象字符串
  1299. if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() !== 'object'){
  1300. user = result.code;
  1301. }
  1302. }catch(e){
  1303. user = result.code;
  1304. }
  1305. if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() === 'object' && user.type == 'myQrCode' && user.id && user.name){
  1306. user.qrcode = ress1;
  1307. uni.hideLoading();
  1308. if(data.taskType.associationType.value == 'other'){
  1309. this.showCheckboxModal(user, data);
  1310. }else{
  1311. uni.showModal({
  1312. title: "提示",
  1313. content: `您要最追加的人员为${user.name},您确认要追加吗?`,
  1314. success: (res) => {
  1315. if (res.confirm) {
  1316. console.log("用户点击确定");
  1317. this.additionalUserCommon(user, data.id, data.worker.id, false);
  1318. } else if (res.cancel) {
  1319. console.log("用户点击取消");
  1320. }
  1321. },
  1322. });
  1323. }
  1324. }else if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() === 'string'){
  1325. let identityCardNumber = user;
  1326. // 根据身份证获取name
  1327. // todo
  1328. post("/data/fetchDataList/user", {idx: 0, sum: 1, user: { identityCardNumber }}).then((result) => {
  1329. uni.hideLoading();
  1330. if(result.status == 200){
  1331. result.list = result.list || [];
  1332. if(result.list.length){
  1333. let user = {name: result.list[0].name, identityCardNumber, qrcode: ress1};
  1334. if(data.taskType.associationType.value == 'other'){
  1335. this.showCheckboxModal(user, data);
  1336. }else{
  1337. uni.showModal({
  1338. title: "提示",
  1339. content: `您要最追加的人员为${user.name},您确认要追加吗?`,
  1340. success: (res) => {
  1341. if (res.confirm) {
  1342. console.log("用户点击确定");
  1343. this.additionalUserCommon(user, data.id, data.worker.id, false);
  1344. } else if (res.cancel) {
  1345. console.log("用户点击取消");
  1346. }
  1347. },
  1348. });
  1349. }
  1350. }else{
  1351. uni.navigateTo({
  1352. url: `../result_error/result_error?qrcode=${ress1}&msg=扫描二维码无法找到用户!`,
  1353. });
  1354. }
  1355. }else{
  1356. uni.navigateTo({
  1357. url: `../result_error/result_error?qrcode=${ress1}&msg=请扫描正确的二维码!`,
  1358. });
  1359. }
  1360. })
  1361. }else{
  1362. uni.hideLoading();
  1363. uni.navigateTo({
  1364. url: `../result_error/result_error?qrcode=${ress1}&msg=请扫描正确的二维码!`,
  1365. });
  1366. }
  1367. } else {
  1368. uni.hideLoading();
  1369. uni.navigateTo({
  1370. url: `../result_error/result_error?qrcode=${ress1}&msg=${result.info || '接口获取数据失败!'}`,
  1371. });
  1372. }
  1373. });
  1374. }).catch(err=>{
  1375. this.SMFlag = true;
  1376. });
  1377. },
  1378. // 追加陪检人/执行人
  1379. additionalUserCommon(user, gdId, workerId, bulkCopy) {
  1380. console.log(user, gdId, workerId, bulkCopy);
  1381. uni.showLoading({
  1382. title: "加载中",
  1383. mask: true,
  1384. });
  1385. // 二维码里有id则传userid,没有则传identityCardNumber
  1386. post("/workerOrder/additionalAccompanyingPersonnel", {
  1387. userId: user.id || undefined,
  1388. identityCardNumber: !user.id ? user.identityCardNumber : undefined,
  1389. gdId,
  1390. workerId,
  1391. bulkCopy: bulkCopy ? 1 : undefined,
  1392. }).then((result) => {
  1393. uni.hideLoading();
  1394. if (result.state == 200) {
  1395. this.getInfo(gdId);
  1396. uni.showToast({
  1397. icon: 'none',
  1398. duration: 4000,
  1399. title: '操作成功!'
  1400. })
  1401. } else {
  1402. uni.navigateTo({
  1403. url: `../result_error/result_error?qrcode=${user.qrcode}&msg=${result.msg || '接口获取数据失败!'}`,
  1404. });
  1405. }
  1406. });
  1407. },
  1408. // 特殊情况关闭按钮
  1409. specialCloseClick() {
  1410. this.textareaFlag = true;
  1411. this.models = {
  1412. title: "特殊情况关闭",
  1413. disjunctor: true,
  1414. content: "",
  1415. icon: "",
  1416. operate: {
  1417. cancel: "取消",
  1418. },
  1419. };
  1420. },
  1421. ok() {
  1422. uni.showLoading({
  1423. title: "加载中",
  1424. mask: true,
  1425. });
  1426. post("/workerOrder/specialCaseClose", {
  1427. workOrderId: this.dataId,
  1428. reason: this.textareaText.trim(),
  1429. }).then((result) => {
  1430. this.models.disjunctor = false;
  1431. this.textareaFlag = false;
  1432. this.textareaText = "";
  1433. if (result.state == 200) {
  1434. uni.hideLoading();
  1435. this.models = {
  1436. disjunctor: true,
  1437. content: "工单关闭成功",
  1438. icon: "success",
  1439. operate: {
  1440. know: "知道了",
  1441. },
  1442. };
  1443. } else {
  1444. uni.hideLoading();
  1445. this.models = {
  1446. disjunctor: true,
  1447. content: "工单关闭失败",
  1448. icon: "error",
  1449. operate: {
  1450. know: "知道了",
  1451. },
  1452. };
  1453. }
  1454. });
  1455. },
  1456. cancel() {
  1457. this.models.disjunctor = false;
  1458. this.textareaFlag = false;
  1459. this.textareaText = "";
  1460. },
  1461. // 点击可查看检查详情
  1462. show(type) {
  1463. this.showType = type;
  1464. if (type === "show") {
  1465. //展开
  1466. // 计算高度
  1467. const query = uni.createSelectorQuery().in(this);
  1468. query
  1469. .selectAll(".page_item_infos")
  1470. .boundingClientRect((data) => {
  1471. let len = data.reduce((prev, current) => {
  1472. return prev + current.height;
  1473. }, 0);
  1474. this.animation.height(len).step();
  1475. this.animationData = this.animation.export();
  1476. })
  1477. .exec();
  1478. } else if (type === "hiddle") {
  1479. this.animation.height(0).step();
  1480. this.animationData = this.animation.export();
  1481. }
  1482. },
  1483. // 抢单->知道了
  1484. know() {
  1485. this.models.disjunctor = false;
  1486. uni.navigateTo({
  1487. url: "../receiptpage/receiptpage",
  1488. });
  1489. },
  1490. // 抢单
  1491. showAlert() {
  1492. get("/workerOrder/takeOrder/" + this.infoDATA.id).then((res) => {
  1493. if (res.status == 200) {
  1494. this.models = {
  1495. disjunctor: true,
  1496. content: "接单成功",
  1497. icon: "success",
  1498. operate: {
  1499. know: "知道了",
  1500. },
  1501. };
  1502. } else {
  1503. uni.showToast({
  1504. icon: "none",
  1505. title: res.msg || "接口获取数据失败!",
  1506. });
  1507. }
  1508. });
  1509. },
  1510. // 请求详细页面的数据(除标本轮巡和标本配送)
  1511. getInfo(id) {
  1512. uni.showLoading({
  1513. title: "加载中",
  1514. mask: true,
  1515. });
  1516. get("/api/fetchData/workOrder/" + id).then((res) => {
  1517. uni.hideLoading();
  1518. if (res.status == 200) {
  1519. this.infoDATA = res.data;
  1520. // 计算高度
  1521. setTimeout(() => {
  1522. const query = uni.createSelectorQuery().in(this);
  1523. query
  1524. .selectAll(".page_item_infos")
  1525. .boundingClientRect((data) => {
  1526. let len = data.reduce((prev, current) => {
  1527. return prev + current.height;
  1528. }, 0);
  1529. this.animation.height(len).step();
  1530. this.animationData = this.animation.export();
  1531. })
  1532. .exec();
  1533. }, 500)
  1534. } else {
  1535. uni.showToast({
  1536. icon: "none",
  1537. title: res.msg || "接口获取数据失败!",
  1538. });
  1539. }
  1540. });
  1541. },
  1542. // 请求详细页面的数据
  1543. getInfoBySpecimen(id) {
  1544. uni.showLoading({
  1545. title: "加载中",
  1546. mask: true,
  1547. });
  1548. post("/api/getWechatItem", {
  1549. id
  1550. }).then((res) => {
  1551. uni.hideLoading();
  1552. if (res.state == 200) {
  1553. this.actualDelivery = res.actualDelivery;
  1554. this.infoDATA = res.data;
  1555. // 计算高度
  1556. setTimeout(() => {
  1557. const query = uni.createSelectorQuery().in(this);
  1558. query
  1559. .selectAll(".page_item_infos")
  1560. .boundingClientRect((data) => {
  1561. let len = data.reduce((prev, current) => {
  1562. return prev + current.height;
  1563. }, 0);
  1564. this.animation.height(len).step();
  1565. this.animationData = this.animation.export();
  1566. })
  1567. .exec();
  1568. }, 500)
  1569. } else {
  1570. uni.showToast({
  1571. icon: "none",
  1572. title: res.msg || "接口获取数据失败!",
  1573. });
  1574. }
  1575. });
  1576. },
  1577. // 获取检查页面控制开关
  1578. getTaskConfig(){
  1579. post("/simple/data/fetchDataList/taskTypeConfig", {
  1580. "idx": 0,
  1581. "sum": 10,
  1582. "taskTypeConfig": {
  1583. "taskTypeDTO": {
  1584. "hosId": {
  1585. "id": this.hosId
  1586. },
  1587. "associationType": {
  1588. "key": "association_types",
  1589. "value": "inspect"
  1590. }
  1591. }
  1592. }
  1593. }).then((result) => {
  1594. if (result.status == 200) {
  1595. if(result.list && result.list[0]){
  1596. this.multiplayerMode = result.list[0].multiplayerMode;
  1597. this.handoverOrder = result.list[0].handoverOrder;
  1598. this.hideInspectScan = result.list[0].hideInspectScan;
  1599. }else{
  1600. this.multiplayerMode = 0;
  1601. this.handoverOrder = 0;
  1602. this.hideInspectScan = 0;
  1603. }
  1604. } else {
  1605. this.multiplayerMode = 0;
  1606. this.handoverOrder = 0;
  1607. this.hideInspectScan = 0;
  1608. }
  1609. });
  1610. },
  1611. // 获取临床服务页面控制开关
  1612. getTaskOtherConfig(options){
  1613. post("/simple/data/fetchDataList/taskTypeConfig", {
  1614. "idx": 0,
  1615. "sum": 10,
  1616. "taskTypeConfig": {
  1617. "hosId": this.hosId,
  1618. "associationType": options.associationTypeId,
  1619. }
  1620. }).then((result) => {
  1621. if (result.status == 200) {
  1622. if(result.list && result.list[0]){
  1623. this.clinicalMultiplayerMode = result.list[0].clinicalMultiplayerMode;
  1624. let clinicalTaskIds = result.list[0].clinicalTaskIds ? result.list[0].clinicalTaskIds.split(',') : [] ;
  1625. this.clinicalTaskIdsFlag = clinicalTaskIds.includes(options.taskTypeId);
  1626. console.log(clinicalTaskIds, options.taskTypeId)
  1627. }else{
  1628. this.clinicalMultiplayerMode = 0;
  1629. this.clinicalTaskIdsFlag = false;
  1630. }
  1631. } else {
  1632. this.clinicalMultiplayerMode = 0;
  1633. this.clinicalTaskIdsFlag = false;
  1634. }
  1635. });
  1636. },
  1637. // 获取是否需要选择陪检方式
  1638. getInspectAndPatientTransform(content){
  1639. let sData = this.infoDATA
  1640. let sType = null
  1641. if(((!sData.worker)||(sData.worker&&sData.worker.id == this.currentUserId))&&sData.gdState.value != 6&&sData.gdState.value != 7&&sData.gdState.value != 11){
  1642. if(sData.gdState.value != 2 &&
  1643. sData.taskType.associationType.value != 'jPBag' &&
  1644. sData.taskType.associationType.value != 'drugsBag' &&
  1645. sData.taskType.associationType.value != 'specimen' &&
  1646. sData.taskType.associationType.value != 'specimenPlan' &&
  1647. sData.taskType.associationType.value != 'ordinary' &&
  1648. !(sData.taskType.associationType.value == 'other' && (sData.gdState.value == 4 && sData.taskType.carryingCourses[0].actionsSwitch || sData.gdState.value == 5 && sData.taskType.carryingCourses[1].actionsSwitch))){
  1649. sType = 1
  1650. }
  1651. }
  1652. if(sData.gdState.value != 2 &&
  1653. sData.taskType.associationType.value != 'patientTransport' &&
  1654. sData.taskType.associationType.value != 'inspect' &&
  1655. sData.taskType.associationType.value != 'other' &&
  1656. sData.taskType.associationType.value != 'ordinary'){
  1657. sType = 2
  1658. }
  1659. // 患者陪检,患者其他服务,工单状态是待到达
  1660. if((sData.taskType.associationType.value === 'inspect' || sData.taskType.associationType.value === 'patientTransport') && sData.gdState.value == 4){
  1661. const postData = {
  1662. "idx":0,
  1663. "sum":1,
  1664. "taskTypeConfig":{
  1665. "taskTypeDTO":{
  1666. "hosId": {"id": this.hosId},
  1667. "associationType": {
  1668. "key": "association_types",
  1669. "value":"inspect",
  1670. },
  1671. },
  1672. },
  1673. };
  1674. uni.showLoading({
  1675. mask: true,
  1676. title: '加载中'
  1677. })
  1678. post("/simple/data/fetchDataList/taskTypeConfig", postData).then((res) => {
  1679. console.log(res)
  1680. if (res.status == 200) {
  1681. res.list = res.list || [];
  1682. if(res.list[0] && res.list[0].signTypeIds){
  1683. // 如果开启
  1684. const postData = {
  1685. "idx":0,
  1686. "sum":9999,
  1687. "workOrderInspectScore":{
  1688. "hosId": this.hosId,
  1689. },
  1690. };
  1691. post("/simple/data/fetchDataList/workOrderInspectScore", postData).then((res) => {
  1692. console.log(res)
  1693. uni.hideLoading();
  1694. if (res.status == 200) {
  1695. res.list = res.list || [];
  1696. let radioInspectionDistanceItem = res.list.map(v => ({id: v.id + "__" + v.inspectMode, inspectMode: v.inspectMode}));
  1697. console.log(radioInspectionDistanceItem)
  1698. this.models4 = {
  1699. disjunctor: true,
  1700. title: "请选择陪检方式",
  1701. radioInspectionDistanceItem,
  1702. icon: "",
  1703. operate: {
  1704. ok: "确定",
  1705. cancel: "取消",
  1706. },
  1707. };
  1708. } else {
  1709. uni.showToast({
  1710. icon: "none",
  1711. title: res.msg || "接口获取数据失败!",
  1712. });
  1713. }
  1714. })
  1715. }else{
  1716. uni.hideLoading();
  1717. this.Scan_ss(content,sData,sType);
  1718. }
  1719. } else {
  1720. uni.hideLoading();
  1721. uni.showToast({
  1722. icon: "none",
  1723. title: res.msg || "接口获取数据失败!",
  1724. });
  1725. }
  1726. })
  1727. }else{
  1728. this.Scan_ss(content,sData,sType);
  1729. }
  1730. },
  1731. Scan_ss(content, data, type) {
  1732. if (!this.SMFlag) {
  1733. return;
  1734. }
  1735. this.SMFlag = false;
  1736. this.currentData = data;
  1737. if(content){
  1738. content = content.replace('\n','')
  1739. uni.showLoading({
  1740. title: "加载中",
  1741. mask: true,
  1742. });
  1743. //检验二维码的有效性
  1744. post("/dept/scanning", {
  1745. content: content,
  1746. taskTypeId: data.taskType.id,
  1747. gdState: data.gdState.id,
  1748. }).then((result) => {
  1749. this.SMFlag = true;
  1750. this.currentCode = result.code;
  1751. if (result.state == 200 || result.state == 201) {
  1752. if (result.account) {
  1753. if (type == 1) {
  1754. this.isOpenTransportationProcessRemarks(this.currentData, {
  1755. account: result.account,
  1756. accountName: result.name,
  1757. accountId: result.id,
  1758. }, 'nextDeptOrder_ss');
  1759. } else if (type == 2) {
  1760. this.nextDeptOrder_s(this.currentData, {
  1761. account: result.account,
  1762. accountName: result.name,
  1763. accountId: result.id,
  1764. });
  1765. }
  1766. } else {
  1767. if (type == 1) {
  1768. this.isOpenTransportationProcessRemarks(this.currentData, undefined, 'nextDeptOrder_ss');
  1769. } else if (type == 2) {
  1770. this.nextDeptOrder_s(this.currentData);
  1771. }
  1772. }
  1773. } else if (result.state == '0000') {
  1774. uni.hideLoading();
  1775. // this.showSelectAccount(); //yeye
  1776. } else {
  1777. uni.hideLoading();
  1778. uni.showToast({
  1779. icon: "none",
  1780. title: result.info || "接口获取数据失败!",
  1781. });
  1782. }
  1783. });
  1784. }
  1785. },
  1786. // 其他临床服务-运输过程-终点科室是否开通备注填写
  1787. isOpenTransportationProcessRemarks(data, accountObj, funName){
  1788. const tasktype = data.taskType;
  1789. console.log(tasktype, data);
  1790. if(tasktype.associationType.value === 'other' && tasktype.carryingCourses[1].logSwitch && data.gdState.value == 5){
  1791. uni.navigateTo({
  1792. url: `../../pages/transportationProcessRemarks/transportationProcessRemarks?data=${data ? encodeURIComponent(JSON.stringify(data)) : ''}&accountObj=${accountObj ? encodeURIComponent(JSON.stringify(accountObj)) : ''}&currentCode=${this.currentCode}&funName=${funName}&actions=${this.actions ? encodeURIComponent(JSON.stringify(this.actions)) : ''}&imageValue=${this.imageValue ? encodeURIComponent(JSON.stringify(this.imageValue)) : ''}`
  1793. })
  1794. }else{
  1795. this[funName](data, accountObj);
  1796. }
  1797. },
  1798. // 如果不是患者陪检或患者转运或其他
  1799. // 科室签到
  1800. nextDeptOrder_s(data, accountObj) {
  1801. console.log(this.currentCode);
  1802. let ids = [];
  1803. let id = data.id;
  1804. ids.push(id);
  1805. let code = "";
  1806. let postData = {
  1807. ids
  1808. };
  1809. if (accountObj) {
  1810. postData.handover = [accountObj.accountId];
  1811. }
  1812. if (this.currentCode) {
  1813. code = this.currentCode;
  1814. // 科室签到
  1815. post("/workerOrder/orderSign/" + code, postData).then((res) => {
  1816. uni.hideLoading();
  1817. if (res.status == 200) {
  1818. // 跳转到扫描科室
  1819. // type1: res.type, //type类型
  1820. // id: data.id, //工单ID
  1821. // deptCode: code, //二维码
  1822. // dept: res.dept //科室名称
  1823. console.log(data,'工单')
  1824. let endDepts = data.endDepts.map(v=>v.id).toString();
  1825. console.log(endDepts,'smallScreen');
  1826. uni.navigateTo({
  1827. url: `../../pages/scanning_code/scanning_code?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}&endDepts=${endDepts}`,
  1828. });
  1829. } else {
  1830. uni.navigateTo({
  1831. url: `../../pages/scanning_Result/scanning_Result?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&status=600&msg=${res.msg}&isKs=1&qrcode=${this.currentCode}`,
  1832. });
  1833. }
  1834. });
  1835. }
  1836. },
  1837. },
  1838. onShow(){
  1839. this.SMFlag = true;
  1840. let that = this
  1841. // #ifdef APP-PLUS
  1842. uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
  1843. uni.$on('scan', function(data) {
  1844. that.getInspectAndPatientTransform(data)
  1845. })
  1846. // #endif
  1847. },
  1848. onLoad(options) {
  1849. console.log(options, 'options');
  1850. options.associationTypeValue === 'drugsBag' && this.isShowDrugsBatchInfo();
  1851. this.currentUserId = uni.getStorageSync('userData').user.id;
  1852. let id = options.id;
  1853. this.dataId = id;
  1854. if (
  1855. options.associationTypeValue == 'specimen' ||
  1856. options.associationTypeValue == 'specimenPlan'
  1857. ) {
  1858. this.getInfoBySpecimen(id);
  1859. } else {
  1860. this.getInfo(id);
  1861. }
  1862. if (
  1863. options.associationTypeValue == 'inspect' ||
  1864. options.associationTypeValue == 'patientTransport'
  1865. ) {
  1866. this.getTaskConfig();
  1867. }else if(options.associationTypeValue == 'other'){
  1868. this.getTaskOtherConfig(options);
  1869. }
  1870. // 创建动画
  1871. this.animation = uni.createAnimation({
  1872. duration: 500,
  1873. timingFunction: "ease",
  1874. });
  1875. // #ifdef APP-PLUS
  1876. webHandle("no", "app");
  1877. // #endif
  1878. // #ifdef H5
  1879. webHandle("no", "wx");
  1880. // #endif
  1881. },
  1882. onUnload() {
  1883. // 页面关闭后清空数据
  1884. this.animationData = {};
  1885. },
  1886. };
  1887. </script>
  1888. <style lang="less">
  1889. .Receipt_infopage {
  1890. padding: 0 20rpx;
  1891. overflow: hidden;
  1892. .red {
  1893. color: red !important;
  1894. font-weight: bold !important;
  1895. }
  1896. .green {
  1897. color: #49b856 !important;
  1898. font-weight: bold !important;
  1899. }
  1900. .title {
  1901. font-size: 48rpx;
  1902. margin-top: 24rpx;
  1903. margin-bottom: 24rpx;
  1904. text-align: center;
  1905. }
  1906. .page_item {
  1907. margin-top: 16rpx;
  1908. margin-bottom: 124rpx;
  1909. background: #fff;
  1910. border-radius: 8rpx;
  1911. padding: 0 16rpx;
  1912. border: 2rpx solid #e5e9ed;
  1913. .L {
  1914. width: 40rpx;
  1915. height: 40rpx;
  1916. border-radius: 50%;
  1917. background: #f9fafb;
  1918. position: relative;
  1919. left: -50rpx;
  1920. top: 66rpx;
  1921. }
  1922. .R {
  1923. width: 40rpx;
  1924. height: 40rpx;
  1925. border-radius: 50%;
  1926. background: #f9fafb;
  1927. position: relative;
  1928. float: right;
  1929. right: -50rpx;
  1930. top: 26rpx;
  1931. }
  1932. .starting {
  1933. width: 50rpx;
  1934. height: 50rpx;
  1935. color: #fff;
  1936. background: #49b856;
  1937. display: inline-block;
  1938. border-radius: 50%;
  1939. text-align: center;
  1940. line-height: 46rpx;
  1941. font-size: 32rpx;
  1942. margin-right: 6rpx;
  1943. }
  1944. .End {
  1945. width: 50rpx;
  1946. height: 50rpx;
  1947. color: #fff;
  1948. background: #39b199;
  1949. display: inline-block;
  1950. border-radius: 50%;
  1951. text-align: center;
  1952. line-height: 46rpx;
  1953. font-size: 32rpx;
  1954. margin-right: 6rpx;
  1955. }
  1956. .page_item_top {
  1957. height: 86rpx;
  1958. border-bottom: 2rpx dashed #666;
  1959. padding: 0 16rpx;
  1960. .page_item_top_L {
  1961. height: 100%;
  1962. float: left;
  1963. line-height: 88rpx;
  1964. .emergencys {
  1965. background: #ff3b53 !important;
  1966. width: 124rpx !important;
  1967. }
  1968. .emergency {
  1969. background: #ff3b53 !important;
  1970. }
  1971. .emergency1 {
  1972. background: #49b856 !important;
  1973. }
  1974. .page_item_cont_start {
  1975. text-align: center;
  1976. height: 44rpx;
  1977. width: 104rpx;
  1978. line-height: 44rpx;
  1979. border-radius: 8rpx;
  1980. background: #49b856;
  1981. color: #fff;
  1982. display: inline-block;
  1983. font-size: 28rpx;
  1984. .cubeic-star {
  1985. margin-right: 8rpx;
  1986. }
  1987. }
  1988. .L_time {
  1989. color: #6cc076;
  1990. font-size: 32rpx;
  1991. }
  1992. .L_text {
  1993. font-size: 32rpx;
  1994. display: inline-block;
  1995. font-weight: 700;
  1996. margin-right: 16rpx;
  1997. }
  1998. }
  1999. .page_item_top_R {
  2000. height: 60rpx;
  2001. float: right;
  2002. padding-top: 20rpx;
  2003. font-size: 32rpx;
  2004. position: absolute;
  2005. right: 50rpx;
  2006. .L_iocn {
  2007. display: inline-block;
  2008. height: 52rpx;
  2009. line-height: 48rpx;
  2010. color: rgb(7, 134, 60);
  2011. font-size: 36rpx;
  2012. font-weight: 700;
  2013. }
  2014. }
  2015. }
  2016. .page_item_cont {
  2017. min-height: 180rpx;
  2018. // max-height: 424rpx;
  2019. padding: 0 16rpx;
  2020. text-align: left;
  2021. position: relative;
  2022. .text_big {
  2023. font-size: 32rpx;
  2024. position: absolute;
  2025. right: 16rpx;
  2026. font-weight: 700;
  2027. margin-top: 10rpx;
  2028. }
  2029. .text_big2 {
  2030. font-size: 32rpx;
  2031. position: absolute;
  2032. right: 16rpx;
  2033. font-weight: 700;
  2034. }
  2035. .line {
  2036. height: 20rpx;
  2037. width: 2rpx;
  2038. border-left: 2rpx solid #666;
  2039. position: absolute;
  2040. top: 82rpx;
  2041. left: 40rpx;
  2042. }
  2043. .lines {
  2044. height: 40%;
  2045. width: 2rpx;
  2046. border-left: 2rpx solid #666;
  2047. position: absolute;
  2048. top: 23%;
  2049. left: 36rpx;
  2050. }
  2051. .page_item_cont_T {
  2052. padding-top: 28rpx;
  2053. font-size: 28rpx;
  2054. .page_item_cont_title {
  2055. height: 100%;
  2056. font-size: 32rpx;
  2057. }
  2058. }
  2059. .page_item_cont_B {
  2060. padding-top: 28rpx;
  2061. margin-bottom: 28rpx;
  2062. .page_item_cont_title {
  2063. height: 60rpx;
  2064. font-size: 32rpx;
  2065. }
  2066. .page_item_cont_title1 {
  2067. height: 60rpx;
  2068. line-height: 60rpx;
  2069. font-size: 32rpx;
  2070. padding-left: 64rpx;
  2071. }
  2072. }
  2073. }
  2074. .page_item_foot {
  2075. border-top: 2rpx dashed #666;
  2076. border-bottom: 2rpx dashed #666;
  2077. padding: 28rpx 16rpx;
  2078. text-align: left;
  2079. .page_item_foot_text {
  2080. font-size: 32rpx;
  2081. margin-bottom: 20rpx;
  2082. .text1 {
  2083. color: rgb(102, 102, 102);
  2084. }
  2085. .text2 {
  2086. float: right;
  2087. font-weight: 700;
  2088. }
  2089. }
  2090. }
  2091. .page_item_info {
  2092. padding: 20rpx 16rpx;
  2093. text-align: left;
  2094. line-height: 60rpx;
  2095. font-size: 32rpx;
  2096. .spe_list {
  2097. padding: 32rpx 0;
  2098. border-top: 2rpx solid #666;
  2099. .page_item_info_title {
  2100. color: #666;
  2101. }
  2102. }
  2103. .page_item_info_title {
  2104. font-weight: 700;
  2105. }
  2106. .text {
  2107. float: right;
  2108. font-weight: 700;
  2109. .page_item_info_txt {
  2110. color: #49b856;
  2111. margin-left: 8rpx;
  2112. margin-right: 8rpx;
  2113. }
  2114. }
  2115. }
  2116. #infos {
  2117. height: 0;
  2118. overflow: hidden;
  2119. }
  2120. .page_item_infos {
  2121. padding-top: 20rpx;
  2122. padding-bottom: 20rpx;
  2123. border-bottom: 2rpx dashed #666;
  2124. .page_item_info2 {
  2125. text-align: left;
  2126. line-height: 60rpx;
  2127. font-size: 32rpx;
  2128. padding-left: 16rpx;
  2129. .page_item_foot_text {
  2130. font-size: 32rpx;
  2131. margin-bottom: 20rpx;
  2132. &:last-of-type {
  2133. margin-bottom: 0;
  2134. }
  2135. .text1 {
  2136. color: rgb(102, 102, 102);
  2137. }
  2138. .text2 {
  2139. float: right;
  2140. font-weight: 700;
  2141. }
  2142. .btn {
  2143. height: 66rpx;
  2144. width: 132rpx;
  2145. margin: 0 auto;
  2146. background-color: #49b856;
  2147. color: #fff;
  2148. border-radius: 8rpx;
  2149. font-size: 32rpx;
  2150. margin-top: 20rpx;
  2151. text-align: center;
  2152. }
  2153. }
  2154. }
  2155. }
  2156. #pulldown {
  2157. color: #49b856;
  2158. font-size: 36rpx;
  2159. height: 60rpx;
  2160. text-align: center;
  2161. .cubeic-pulldown {
  2162. font-size: 48rpx;
  2163. position: relative;
  2164. bottom: 6rpx;
  2165. }
  2166. }
  2167. #pullup {
  2168. color: #49b856;
  2169. font-size: 36rpx;
  2170. height: 60rpx;
  2171. text-align: center;
  2172. .cubeic-pullup {
  2173. font-size: 48rpx;
  2174. position: relative;
  2175. top: 12rpx;
  2176. }
  2177. }
  2178. }
  2179. .foot_btn2 {
  2180. position: fixed;
  2181. bottom: 0;
  2182. right: 20rpx;
  2183. left: 20rpx;
  2184. line-height: 66rpx;
  2185. height: 100rpx;
  2186. border-top: 2rpx solid #e5e9ed;
  2187. background: #f9fafb;
  2188. display: flex;
  2189. justify-content: space-between;
  2190. .btn2,
  2191. .btn3 {
  2192. height: 66rpx;
  2193. flex: 1;
  2194. margin: 0 1%;
  2195. background-image: linear-gradient(to right, #72c172, #3bb197);
  2196. color: #fff;
  2197. border-radius: 8rpx;
  2198. font-size: 28rpx;
  2199. margin-top: 8rpx;
  2200. margin-bottom: 8rpx;
  2201. text-align: center;
  2202. }
  2203. }
  2204. }
  2205. </style>