receipt_infopage.vue 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148
  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 icon_transport transport-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 icon_transport transport-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 icon_transport transport-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 || 0 }}</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 || 0 }}</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 || 0 }}</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">
  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.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">床号</text>
  140. <text class="text2">{{
  141. infoDATA.patient ? infoDATA.patient.bedNum : "-"
  142. }}</text>
  143. </view>
  144. <view class="page_item_info" style="padding: 0;" v-if="infoDATA.workOrderRemark !== undefined">
  145. <view class="page_item_foot_text">
  146. <view class="text1">工单备注</view>
  147. <view class="text2" style="float: none;word-break: break-all;">{{ infoDATA.workOrderRemark }}</view>
  148. </view>
  149. </view>
  150. <view class="page_item_foot_text" v-if="
  151. infoDATA.taskType.associationType.value == 'inspect' ||
  152. infoDATA.taskType.associationType.value == 'patientTransport'
  153. ">
  154. <text class="text1">携带设备</text>
  155. <text class="text2">{{ infoDATA.goods || "暂无" }}</text>
  156. </view>
  157. <view class="page_item_foot_text" v-if="
  158. infoDATA.taskType.associationType.value == 'inspect' ||
  159. infoDATA.taskType.associationType.value == 'patientTransport'
  160. ">
  161. <text class="text1">患者姓名</text>
  162. <text class="text2">{{ infoDATA.patient.patientName }}({{
  163. infoDATA.patient.patientCode
  164. }})</text>
  165. </view>
  166. <view class="page_item_foot_text" v-if="
  167. (infoDATA.taskType.associationType.value == 'inspect' ||
  168. infoDATA.taskType.associationType.value == 'patientTransport')&&infoDATA.patient.careLevel
  169. ">
  170. <text class="text1">{{infoDATA.patient.careLevel.desc}}</text>
  171. <text class="text2"
  172. :class="[(infoDATA.patient.careLevel.value==0||infoDATA.patient.careLevel.value==1)?'red':'green']">{{infoDATA.patient.careLevel.name}}</text>
  173. </view>
  174. <view class="page_item_foot_text" v-if="
  175. (infoDATA.taskType.associationType.value == 'inspect' ||
  176. infoDATA.taskType.associationType.value == 'patientTransport')&&infoDATA.patient.illnessState
  177. ">
  178. <text class="text1">{{infoDATA.patient.illnessState.desc}}</text>
  179. <text class="text2"
  180. :class="{red:infoDATA.patient.illnessState.value==2||infoDATA.patient.illnessState.value==3}">{{infoDATA.patient.illnessState.name}}</text>
  181. </view>
  182. <view class="page_item_foot_text"
  183. v-if="
  184. (infoDATA.taskType.associationType.value == 'inspect' ||
  185. infoDATA.taskType.associationType.value == 'patientTransport')&&(infoDATA.isAccompany===1||infoDATA.isAccompany===0)">
  186. <text class="text1">陪同情况</text>
  187. <text class="text2"
  188. :class="{red:infoDATA.isAccompany===1}">{{ infoDATA.isAccompany===1?'需要医护陪同':'无需医护陪同'}}</text>
  189. </view>
  190. </view>
  191. <!-- 药包 -->
  192. <view class="page_item_info" v-if="infoDATA.taskType.associationType.value == 'drugsBag'">
  193. <text class="page_item_info_title">药包编码</text>
  194. <text class="text">{{ infoDATA.drugs?infoDATA.drugs.packid:'无' }}</text>
  195. </view>
  196. <!-- 标本 -->
  197. <view class="page_item_info" v-if="
  198. infoDATA.taskType.associationType.value == 'specimen' ||
  199. infoDATA.taskType.associationType.value == 'specimenPlan'
  200. ">
  201. <view>
  202. <text class="page_item_info_title">标本信息</text>
  203. <text class="text">
  204. 预计接收
  205. <text class="page_item_info_txt">{{
  206. infoDATA.expectReceiveNum || 0
  207. }}</text>
  208. </text>
  209. <text class="text"
  210. v-if="infoDATA.gdState.value == 5 || infoDATA.gdState.value == 6 || infoDATA.gdState.value == 7">
  211. 扫描接收
  212. <text class="page_item_info_txt">{{infoDATA.actualReceiveNum || 0}}</text>
  213. </text>
  214. <text class="text" v-if="infoDATA.gdState.value == 6 || infoDATA.gdState.value == 7">
  215. 实际送达
  216. <text class="page_item_info_txt">{{actualDelivery || 0}}</text>
  217. </text>
  218. </view>
  219. <view v-for="spe in infoDATA.specimenSet" :key="spe.id" class="spe_list">
  220. <view>
  221. <text class="page_item_info_title">标本类型</text>
  222. <text class="text">{{ spe.stype ? spe.stype.name : "-" }}({{
  223. spe.urgent == 1 ? "急" : "普"
  224. }})</text>
  225. </view>
  226. <view>
  227. <text class="page_item_info_title">标本编码</text>
  228. <text class="text">{{ spe.scode }}</text>
  229. </view>
  230. <view>
  231. <text class="page_item_info_title">患者姓名</text>
  232. <text class="text">{{ spe.patientName }}<text v-if="spe.bedNum">({{spe.bedNum}})</text></text>
  233. </view>
  234. <view>
  235. <text class="page_item_info_title">目标科室</text>
  236. <text class="text">{{
  237. spe.checkDept ? spe.checkDept.dept : "-"
  238. }}</text>
  239. </view>
  240. </view>
  241. </view>
  242. <!-- 静配 -->
  243. <view class="page_item_info" v-if="infoDATA.taskType.associationType.value == 'jPBag'">
  244. <text class="page_item_info_title">药包编码</text>
  245. <text class="text">{{ infoDATA.staticDistri?infoDATA.staticDistri.packid:'无' }}</text>
  246. </view>
  247. <!-- 陪检 -->
  248. <view v-if="infoDATA.taskType.associationType.value == 'inspect'">
  249. <view class="page_item_info">
  250. <text class="page_item_info_title">检查信息</text>
  251. </view>
  252. <view id="infos" :animation="animationData">
  253. <view class="page_item_infos" v-for="(item, index) of infoDATA.checkList" :key="index">
  254. <view class="page_item_info2">
  255. <view class="page_item_foot_text">
  256. <text class="text1">检查科室</text>
  257. <text class="text2">{{ item.execDept?item.execDept.dept:'-' }}</text>
  258. </view>
  259. <view class="page_item_foot_text">
  260. <text class="text1">检查项</text>
  261. <text class="text2">{{ item.inspectName||'-' }}</text>
  262. </view>
  263. <view class="page_item_foot_text">
  264. <text class="text1">叫号信息</text>
  265. <text class="text2">{{ item.reservationNumber||'-' }}</text>
  266. </view>
  267. <view class="page_item_foot_text">
  268. <text class="text1">预约时间</text>
  269. <text class="text2">{{ item.yyTime || "-" }}</text>
  270. </view>
  271. <!-- <view class="page_item_foot_text"
  272. v-show="item.inspectState.value==1||item.inspectState.value==2||item.inspectState.value==4">
  273. <view class="btn" @click.stop="remove(item)">移除</view>
  274. </view> -->
  275. <view class="page_item_foot_text">
  276. <view class="btn" @click.stop="remove(item)">移除</view>
  277. </view>
  278. </view>
  279. </view>
  280. </view>
  281. <view id="pulldown" @click="show('show')" v-if="showType == 'hiddle'">
  282. 点击可查看检查详情
  283. <text class="cubeic-pulldown icon_transport transport-paixujiantouxia"></text>
  284. </view>
  285. <view id="pullup" @click="show('hiddle')" v-if="showType == 'show'">
  286. 点击可收起检查详情
  287. <text class="cubeic-pullup icon_transport transport-paixujiantoushang"></text>
  288. </view>
  289. </view>
  290. </view>
  291. <view class="foot_btn2 footerPadding">
  292. <view class="btn2" @click="showAlert" v-if="infoDATA.gdState.value == 2">接单</view>
  293. <!-- 如果不是静配,药配,标本配送,标本轮巡,万能交接 -->
  294. <template
  295. v-if="((!infoDATA.worker)||(infoDATA.worker&&infoDATA.worker.id == currentUserId))&&infoDATA.gdState.value != 6&&infoDATA.gdState.value != 7&&infoDATA.gdState.value != 11">
  296. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
  297. infoDATA.gdState.value != 2 &&
  298. infoDATA.taskType.associationType.value != 'jPBag' &&
  299. infoDATA.taskType.associationType.value != 'drugsBag' &&
  300. infoDATA.taskType.associationType.value != 'specimen' &&
  301. infoDATA.taskType.associationType.value != 'specimenPlan' &&
  302. infoDATA.taskType.associationType.value != 'ordinary'
  303. " hover-class="seimin-btn-hover">
  304. <smallScreen :sData="infoDATA" :sType="1">扫码</smallScreen>
  305. </view>
  306. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" @click="photograph(infoDATA)" v-if="
  307. infoDATA.gdState.value != 2 &&
  308. infoDATA.taskType.associationType.value != 'jPBag' &&
  309. infoDATA.taskType.associationType.value != 'drugsBag' &&
  310. infoDATA.taskType.associationType.value != 'specimen' &&
  311. infoDATA.taskType.associationType.value != 'specimenPlan' &&
  312. infoDATA.taskType.associationType.value != 'other' &&
  313. infoDATA.taskType.associationType.value != 'ordinary' &&
  314. infoDATA.gdState.value == 4
  315. " hover-class="seimin-btn-hover">拍照</view>
  316. <view class="btn3" @click="specialCloseClick()" v-if="
  317. infoDATA.gdState.value != 2 &&
  318. infoDATA.taskType.associationType.value != 'jPBag' &&
  319. infoDATA.taskType.associationType.value != 'drugsBag' &&
  320. infoDATA.taskType.associationType.value != 'specimen' &&
  321. infoDATA.taskType.associationType.value != 'specimenPlan' &&
  322. infoDATA.taskType.associationType.value != 'ordinary' &&
  323. infoDATA.taskType.specialCloseButton == 1
  324. " hover-class="seimin-btn-hover">特殊情况关闭</view>
  325. </template>
  326. <!-- 如果不是患者陪检或患者转运或其他,万能交接 -->
  327. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
  328. infoDATA.gdState.value != 2 &&
  329. infoDATA.taskType.associationType.value != 'patientTransport' &&
  330. infoDATA.taskType.associationType.value != 'inspect' &&
  331. infoDATA.taskType.associationType.value != 'other' &&
  332. infoDATA.taskType.associationType.value != 'ordinary'
  333. " hover-class="seimin-btn-hover">
  334. <smallScreen :sData="infoDATA" :sType="2">扫码</smallScreen>
  335. </view>
  336. <!-- 如果是万能交接 -->
  337. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']"
  338. v-if="infoDATA.taskType.associationType.value == 'ordinary'"
  339. hover-class="seimin-btn-hover" @click="goBack()">
  340. 知道了
  341. </view>
  342. <view class="btn3" @click="specialCloseClick()" v-if="
  343. infoDATA.gdState.value != 2 &&
  344. infoDATA.taskType.associationType.value != 'patientTransport' &&
  345. infoDATA.taskType.associationType.value != 'inspect' &&
  346. infoDATA.taskType.associationType.value != 'other' &&
  347. infoDATA.taskType.specialCloseButton == 1
  348. " hover-class="seimin-btn-hover">特殊情况关闭</view>
  349. <view class="btn3" @click="viewSpecimen(infoDATA)" v-if="
  350. infoDATA.taskType.associationType.value == 'specimen' ||
  351. infoDATA.taskType.associationType.value == 'specimenPlan'
  352. " hover-class="seimin-btn-hover">查看标本</view>
  353. <view class="btn3" @click="viewBlood(infoDATA)" v-if="infoDATA.taskType.associationType.value == 'ordinary' && infoDATA.taskType.ordinaryField.value == 'blood'" hover-class="seimin-btn-hover">查看血制品</view>
  354. </view>
  355. <!-- 弹窗 -->
  356. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  357. @know="know" :operate="models.operate" @ok="ok" @cancel="cancel" :textareaFlag="textareaFlag"
  358. @textareaInput="textareaInput"></showModel>
  359. <!-- 弹窗 -->
  360. <inspectRemoveModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor"
  361. :content="models1.content" @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1" :remove="true">
  362. </inspectRemoveModel>
  363. </view>
  364. </template>
  365. <script>
  366. import smallScreen from "../../components/smallScreen/smallScreen.vue";
  367. import {
  368. get,
  369. post,
  370. SM,
  371. webHandle
  372. } from "../../http/http.js";
  373. import {
  374. photographTool
  375. } from "../../tools/photograph.js";
  376. export default {
  377. data() {
  378. return {
  379. actualDelivery: 0,
  380. currentUserId: 0,
  381. // 弹窗model
  382. models: {
  383. disjunctor: false,
  384. },
  385. // 弹窗model1
  386. models1: {
  387. disjunctor: false,
  388. },
  389. currentInspect: null,
  390. showType: "show",
  391. infoDATA: {},
  392. dataId: "",
  393. animationData: {},
  394. // 特殊情况关闭原因开关
  395. textareaFlag: false,
  396. textareaText: "",
  397. };
  398. },
  399. filters: {
  400. // 自定义管道 yyTime
  401. yyTimeFilter: function(data) {
  402. if (data) {
  403. let nDate = null;
  404. if (typeof data == 'string') {
  405. let arr = data.split(/[-:\s]/);
  406. nDate = new Date(
  407. arr[0] - 0,
  408. arr[1] - 1,
  409. arr[2] - 0,
  410. arr[3] - 0,
  411. arr[4] - 0,
  412. 0
  413. );
  414. } else if (typeof data == 'number') {
  415. nDate = new Date(data);
  416. }
  417. const month = (nDate.getMonth() + 1).toString().padStart(2, 0);
  418. const date = nDate.getDate().toString().padStart(2, 0);
  419. const hour = nDate.getHours().toString().padStart(2, 0);
  420. const minute = nDate.getMinutes().toString().padStart(2, 0);
  421. return `${month}-${date} ${hour}:${minute}`;
  422. } else {
  423. return "-";
  424. }
  425. },
  426. },
  427. methods: {
  428. goBack() {
  429. uni.navigateTo({
  430. url: "../receiptpage/receiptpage",
  431. });
  432. },
  433. // 查看标本
  434. viewSpecimen(workOrder) {
  435. uni.navigateTo({
  436. url: `../specimenDetail/specimenDetail?workOrderId=${workOrder.id}&associationTypeValue=${workOrder.taskType.associationType.value}`,
  437. });
  438. },
  439. // 查看血制品
  440. viewBlood(workOrder) {
  441. uni.showLoading({
  442. title: "加载中",
  443. mask: true,
  444. });
  445. post('/transflow/checkData', {
  446. "type": "blood",
  447. "orderId": workOrder.id
  448. }).then(res => {
  449. uni.hideLoading();
  450. if(res.state == 200){
  451. uni.navigateTo({
  452. url: `../blood_list/blood_list?bloods=${encodeURIComponent(JSON.stringify(res.data.all))}`,
  453. });
  454. }else{
  455. uni.showToast({
  456. icon: "none",
  457. title: "请求失败!",
  458. });
  459. }
  460. })
  461. },
  462. // 移除检查->知道了
  463. know1() {
  464. this.models1.disjunctor = false;
  465. // this.getInfo(this.dataId);
  466. uni.navigateTo({
  467. url: '../receiptpage/receiptpage',
  468. });
  469. },
  470. // 移除检查->确定
  471. ok1(data) {
  472. console.log(data);
  473. const {
  474. value,
  475. yyTime
  476. } = data;
  477. if (!value) {
  478. //没有选择移除原因
  479. uni.showModal({
  480. title: "提示",
  481. content: "请选择移除原因!",
  482. showCancel: false,
  483. success: function(res) {
  484. if (res.confirm) {
  485. console.log("用户点击确定");
  486. } else if (res.cancel) {
  487. console.log("用户点击取消");
  488. }
  489. },
  490. });
  491. return;
  492. } else if (value == 2 && !yyTime) {
  493. //没有填写预约时间
  494. uni.showModal({
  495. title: "提示",
  496. content: "请填写预约时间!",
  497. showCancel: false,
  498. success: function(res) {
  499. if (res.confirm) {
  500. console.log("用户点击确定");
  501. } else if (res.cancel) {
  502. console.log("用户点击取消");
  503. }
  504. },
  505. });
  506. return;
  507. }
  508. this.models1.disjunctor = false;
  509. let postData = {
  510. gdId: this.infoDATA.id,
  511. inspectId: this.currentInspect.id,
  512. reason: value == 1 ? 'checkDone' : 'modificationTime',
  513. yyTime: value == 1 ? undefined : yyTime,
  514. };
  515. uni.showLoading({
  516. title: '移除中',
  517. mask: true,
  518. })
  519. post('/workerOrder/removeInspectByOderId', postData).then(res => {
  520. uni.hideLoading();
  521. if (res.state == 200) {
  522. uni.showToast({
  523. icon: 'none',
  524. title: '移除成功!',
  525. success() {
  526. setTimeout(() => {
  527. uni.navigateTo({
  528. url: '../receiptpage/receiptpage',
  529. });
  530. }, 1500)
  531. }
  532. })
  533. } else {
  534. uni.showToast({
  535. icon: 'none',
  536. title: '移除失败!',
  537. })
  538. }
  539. })
  540. },
  541. // 移除检查->取消
  542. cancel1() {
  543. this.models1.disjunctor = false;
  544. },
  545. // 移除
  546. remove(item) {
  547. this.currentInspect = item;
  548. this.models1 = {
  549. disjunctor: true,
  550. content: "请选择您移除检查的原因?检查移除后将会自动完成或删除工单!",
  551. icon: "warn",
  552. operate: {
  553. ok: "确定",
  554. cancel: "取消",
  555. },
  556. };
  557. },
  558. // 拍照
  559. photograph(data) {
  560. photographTool(data);
  561. },
  562. // 特殊情况输入文字
  563. textareaInput(value) {
  564. this.textareaText = value;
  565. if (value.trim().length >= 10) {
  566. this.models.operate = {
  567. ok: "确定",
  568. cancel: "取消",
  569. };
  570. } else {
  571. this.models.operate = {
  572. cancel: "取消",
  573. };
  574. }
  575. },
  576. // 特殊情况关闭按钮
  577. specialCloseClick() {
  578. this.textareaFlag = true;
  579. this.models = {
  580. title: "特殊情况关闭",
  581. disjunctor: true,
  582. content: "",
  583. icon: "",
  584. operate: {
  585. cancel: "取消",
  586. },
  587. };
  588. },
  589. ok() {
  590. uni.showLoading({
  591. title: "加载中",
  592. mask: true,
  593. });
  594. post("/workerOrder/specialCaseClose", {
  595. workOrderId: this.dataId,
  596. reason: this.textareaText.trim(),
  597. }).then((result) => {
  598. this.models.disjunctor = false;
  599. this.textareaFlag = false;
  600. this.textareaText = "";
  601. if (result.state == 200) {
  602. uni.hideLoading();
  603. this.models = {
  604. disjunctor: true,
  605. content: "工单关闭成功",
  606. icon: "success",
  607. operate: {
  608. know: "知道了",
  609. },
  610. };
  611. } else {
  612. uni.hideLoading();
  613. this.models = {
  614. disjunctor: true,
  615. content: "工单关闭失败",
  616. icon: "error",
  617. operate: {
  618. know: "知道了",
  619. },
  620. };
  621. }
  622. });
  623. },
  624. cancel() {
  625. this.models.disjunctor = false;
  626. this.textareaFlag = false;
  627. this.textareaText = "";
  628. },
  629. // 点击可查看检查详情
  630. show(type) {
  631. this.showType = type;
  632. if (type === "show") {
  633. //展开
  634. // 计算高度
  635. const query = uni.createSelectorQuery().in(this);
  636. query
  637. .selectAll(".page_item_infos")
  638. .boundingClientRect((data) => {
  639. let len = data.reduce((prev, current) => {
  640. return prev + current.height;
  641. }, 0);
  642. this.animation.height(len).step();
  643. this.animationData = this.animation.export();
  644. })
  645. .exec();
  646. } else if (type === "hiddle") {
  647. this.animation.height(0).step();
  648. this.animationData = this.animation.export();
  649. }
  650. },
  651. // 抢单->知道了
  652. know() {
  653. this.models.disjunctor = false;
  654. uni.navigateTo({
  655. url: "../receiptpage/receiptpage",
  656. });
  657. },
  658. // 抢单
  659. showAlert() {
  660. get("/workerOrder/takeOrder/" + this.infoDATA.id).then((res) => {
  661. if (res.status == 200) {
  662. this.models = {
  663. disjunctor: true,
  664. content: "接单成功",
  665. icon: "success",
  666. operate: {
  667. know: "知道了",
  668. },
  669. };
  670. } else {
  671. uni.showToast({
  672. icon: "none",
  673. title: "请求失败!",
  674. });
  675. }
  676. });
  677. },
  678. // 请求详细页面的数据(除标本轮巡和标本配送)
  679. getInfo(id) {
  680. uni.showLoading({
  681. title: "加载中",
  682. mask: true,
  683. });
  684. get("/api/fetchData/workOrder/" + id).then((res) => {
  685. uni.hideLoading();
  686. if (res.status == 200) {
  687. this.infoDATA = res.data;
  688. // 计算高度
  689. setTimeout(() => {
  690. const query = uni.createSelectorQuery().in(this);
  691. query
  692. .selectAll(".page_item_infos")
  693. .boundingClientRect((data) => {
  694. let len = data.reduce((prev, current) => {
  695. return prev + current.height;
  696. }, 0);
  697. this.animation.height(len).step();
  698. this.animationData = this.animation.export();
  699. })
  700. .exec();
  701. }, 500)
  702. } else {
  703. uni.showToast({
  704. icon: "none",
  705. title: "请求失败!",
  706. });
  707. }
  708. });
  709. },
  710. // 请求详细页面的数据
  711. getInfoBySpecimen(id) {
  712. uni.showLoading({
  713. title: "加载中",
  714. mask: true,
  715. });
  716. post("/api/getWechatItem", {
  717. id
  718. }).then((res) => {
  719. uni.hideLoading();
  720. if (res.state == 200) {
  721. this.actualDelivery = res.actualDelivery;
  722. this.infoDATA = res.data;
  723. // 计算高度
  724. setTimeout(() => {
  725. const query = uni.createSelectorQuery().in(this);
  726. query
  727. .selectAll(".page_item_infos")
  728. .boundingClientRect((data) => {
  729. let len = data.reduce((prev, current) => {
  730. return prev + current.height;
  731. }, 0);
  732. this.animation.height(len).step();
  733. this.animationData = this.animation.export();
  734. })
  735. .exec();
  736. }, 500)
  737. } else {
  738. uni.showToast({
  739. icon: "none",
  740. title: "请求失败!",
  741. });
  742. }
  743. });
  744. },
  745. },
  746. onLoad(options) {
  747. console.log(options, 'options');
  748. this.currentUserId = uni.getStorageSync('userData').user.id;
  749. let id = options.id;
  750. this.dataId = id;
  751. if (
  752. options.associationTypeValue == 'specimen' ||
  753. options.associationTypeValue == 'specimenPlan'
  754. ) {
  755. this.getInfoBySpecimen(id);
  756. } else {
  757. this.getInfo(id);
  758. }
  759. // 创建动画
  760. this.animation = uni.createAnimation({
  761. duration: 500,
  762. timingFunction: "ease",
  763. });
  764. // #ifdef APP-PLUS
  765. webHandle("no", "app");
  766. // #endif
  767. // #ifdef H5
  768. webHandle("no", "wx");
  769. // #endif
  770. },
  771. onUnload() {
  772. // 页面关闭后清空数据
  773. this.animationData = {};
  774. },
  775. };
  776. </script>
  777. <style lang="less">
  778. .Receipt_infopage {
  779. padding: 0 20rpx;
  780. overflow: hidden;
  781. .red {
  782. color: red !important;
  783. font-weight: bold !important;
  784. }
  785. .green {
  786. color: #49b856 !important;
  787. font-weight: bold !important;
  788. }
  789. .title {
  790. font-size: 48rpx;
  791. margin-top: 24rpx;
  792. margin-bottom: 24rpx;
  793. text-align: center;
  794. }
  795. .page_item {
  796. margin-top: 16rpx;
  797. margin-bottom: 124rpx;
  798. background: #fff;
  799. border-radius: 8rpx;
  800. padding: 0 16rpx;
  801. border: 2rpx solid #e5e9ed;
  802. .L {
  803. width: 40rpx;
  804. height: 40rpx;
  805. border-radius: 50%;
  806. background: #f9fafb;
  807. position: relative;
  808. left: -50rpx;
  809. top: 66rpx;
  810. }
  811. .R {
  812. width: 40rpx;
  813. height: 40rpx;
  814. border-radius: 50%;
  815. background: #f9fafb;
  816. position: relative;
  817. float: right;
  818. right: -50rpx;
  819. top: 26rpx;
  820. }
  821. .starting {
  822. width: 50rpx;
  823. height: 50rpx;
  824. color: #fff;
  825. background: #49b856;
  826. display: inline-block;
  827. border-radius: 50%;
  828. text-align: center;
  829. line-height: 46rpx;
  830. font-size: 32rpx;
  831. margin-right: 6rpx;
  832. }
  833. .End {
  834. width: 50rpx;
  835. height: 50rpx;
  836. color: #fff;
  837. background: #39b199;
  838. display: inline-block;
  839. border-radius: 50%;
  840. text-align: center;
  841. line-height: 46rpx;
  842. font-size: 32rpx;
  843. margin-right: 6rpx;
  844. }
  845. .page_item_top {
  846. height: 86rpx;
  847. border-bottom: 2rpx dashed #666;
  848. padding: 0 16rpx;
  849. .page_item_top_L {
  850. height: 100%;
  851. float: left;
  852. line-height: 88rpx;
  853. .emergencys {
  854. background: #ff3b53 !important;
  855. width: 124rpx !important;
  856. }
  857. .emergency {
  858. background: #ff3b53 !important;
  859. }
  860. .emergency1 {
  861. background: #49b856 !important;
  862. }
  863. .page_item_cont_start {
  864. text-align: center;
  865. height: 44rpx;
  866. width: 104rpx;
  867. line-height: 44rpx;
  868. border-radius: 8rpx;
  869. background: #49b856;
  870. color: #fff;
  871. display: inline-block;
  872. font-size: 28rpx;
  873. .cubeic-star {
  874. margin-right: 8rpx;
  875. }
  876. }
  877. .L_time {
  878. color: #6cc076;
  879. font-size: 32rpx;
  880. }
  881. .L_text {
  882. font-size: 32rpx;
  883. display: inline-block;
  884. font-weight: 700;
  885. margin-right: 16rpx;
  886. }
  887. }
  888. .page_item_top_R {
  889. height: 60rpx;
  890. float: right;
  891. padding-top: 20rpx;
  892. font-size: 32rpx;
  893. position: absolute;
  894. right: 50rpx;
  895. .L_iocn {
  896. display: inline-block;
  897. height: 52rpx;
  898. line-height: 48rpx;
  899. color: rgb(7, 134, 60);
  900. font-size: 36rpx;
  901. font-weight: 700;
  902. }
  903. }
  904. }
  905. .page_item_cont {
  906. min-height: 180rpx;
  907. // max-height: 424rpx;
  908. padding: 0 16rpx;
  909. text-align: left;
  910. position: relative;
  911. .text_big {
  912. font-size: 32rpx;
  913. position: absolute;
  914. right: 16rpx;
  915. font-weight: 700;
  916. margin-top: 10rpx;
  917. }
  918. .text_big2 {
  919. font-size: 32rpx;
  920. position: absolute;
  921. right: 16rpx;
  922. font-weight: 700;
  923. }
  924. .line {
  925. height: 20rpx;
  926. width: 2rpx;
  927. border-left: 2rpx solid #666;
  928. position: absolute;
  929. top: 82rpx;
  930. left: 40rpx;
  931. }
  932. .lines {
  933. height: 40%;
  934. width: 2rpx;
  935. border-left: 2rpx solid #666;
  936. position: absolute;
  937. top: 23%;
  938. left: 36rpx;
  939. }
  940. .page_item_cont_T {
  941. padding-top: 28rpx;
  942. font-size: 28rpx;
  943. .page_item_cont_title {
  944. height: 100%;
  945. font-size: 32rpx;
  946. }
  947. }
  948. .page_item_cont_B {
  949. padding-top: 28rpx;
  950. margin-bottom: 28rpx;
  951. .page_item_cont_title {
  952. height: 60rpx;
  953. font-size: 32rpx;
  954. }
  955. .page_item_cont_title1 {
  956. height: 60rpx;
  957. line-height: 60rpx;
  958. font-size: 32rpx;
  959. padding-left: 64rpx;
  960. }
  961. }
  962. }
  963. .page_item_foot {
  964. border-top: 2rpx dashed #666;
  965. border-bottom: 2rpx dashed #666;
  966. padding: 28rpx 16rpx;
  967. text-align: left;
  968. .page_item_foot_text {
  969. font-size: 32rpx;
  970. margin-bottom: 20rpx;
  971. .text1 {
  972. color: rgb(102, 102, 102);
  973. }
  974. .text2 {
  975. float: right;
  976. font-weight: 700;
  977. }
  978. }
  979. }
  980. .page_item_info {
  981. padding: 20rpx 16rpx;
  982. text-align: left;
  983. line-height: 60rpx;
  984. font-size: 32rpx;
  985. .spe_list {
  986. padding: 32rpx 0;
  987. border-top: 2rpx solid #666;
  988. .page_item_info_title {
  989. color: #666;
  990. }
  991. }
  992. .page_item_info_title {
  993. font-weight: 700;
  994. }
  995. .text {
  996. float: right;
  997. font-weight: 700;
  998. .page_item_info_txt {
  999. color: #49b856;
  1000. margin-left: 8rpx;
  1001. margin-right: 8rpx;
  1002. }
  1003. }
  1004. }
  1005. #infos {
  1006. height: 0;
  1007. overflow: hidden;
  1008. }
  1009. .page_item_infos {
  1010. padding-top: 20rpx;
  1011. padding-bottom: 20rpx;
  1012. border-bottom: 2rpx dashed #666;
  1013. .page_item_info2 {
  1014. text-align: left;
  1015. line-height: 60rpx;
  1016. font-size: 32rpx;
  1017. padding-left: 16rpx;
  1018. .page_item_foot_text {
  1019. font-size: 32rpx;
  1020. margin-bottom: 20rpx;
  1021. &:last-of-type {
  1022. margin-bottom: 0;
  1023. }
  1024. .text1 {
  1025. color: rgb(102, 102, 102);
  1026. }
  1027. .text2 {
  1028. float: right;
  1029. font-weight: 700;
  1030. }
  1031. .btn {
  1032. height: 66rpx;
  1033. width: 132rpx;
  1034. margin: 0 auto;
  1035. background-color: #49b856;
  1036. color: #fff;
  1037. border-radius: 8rpx;
  1038. font-size: 32rpx;
  1039. margin-top: 20rpx;
  1040. text-align: center;
  1041. }
  1042. }
  1043. }
  1044. }
  1045. #pulldown {
  1046. color: #49b856;
  1047. font-size: 36rpx;
  1048. height: 60rpx;
  1049. text-align: center;
  1050. .cubeic-pulldown {
  1051. font-size: 48rpx;
  1052. position: relative;
  1053. bottom: 6rpx;
  1054. }
  1055. }
  1056. #pullup {
  1057. color: #49b856;
  1058. font-size: 36rpx;
  1059. height: 60rpx;
  1060. text-align: center;
  1061. .cubeic-pullup {
  1062. font-size: 48rpx;
  1063. position: relative;
  1064. top: 12rpx;
  1065. }
  1066. }
  1067. }
  1068. .foot_btn2 {
  1069. position: fixed;
  1070. bottom: 0;
  1071. right: 20rpx;
  1072. left: 20rpx;
  1073. line-height: 66rpx;
  1074. height: 100rpx;
  1075. border-top: 2rpx solid #e5e9ed;
  1076. background: #f9fafb;
  1077. display: flex;
  1078. justify-content: space-between;
  1079. .btn2,
  1080. .btn3 {
  1081. height: 66rpx;
  1082. flex: 1;
  1083. margin: 0 1%;
  1084. background-image: linear-gradient(to right, #72c172, #3bb197);
  1085. color: #fff;
  1086. border-radius: 8rpx;
  1087. font-size: 32rpx;
  1088. margin-top: 16rpx;
  1089. text-align: center;
  1090. }
  1091. }
  1092. }
  1093. </style>