receipt_infopage.vue 34 KB

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