receipt_infopage.vue 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009
  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>
  328. <!-- 弹窗 -->
  329. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  330. @know="know" :operate="models.operate" @ok="ok" @cancel="cancel" :textareaFlag="textareaFlag"
  331. @textareaInput="textareaInput"></showModel>
  332. <!-- 弹窗 -->
  333. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  334. @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1"></showModel>
  335. </view>
  336. </template>
  337. <script>
  338. import smallScreen from "../../components/smallScreen/smallScreen.vue";
  339. import showModel from "../../components/showModel/showModel.vue";
  340. import {
  341. get,
  342. post,
  343. SM,
  344. webHandle
  345. } from "../../http/http.js";
  346. import {
  347. photographTool
  348. } from "../../tools/photograph.js";
  349. export default {
  350. data() {
  351. return {
  352. currentUserId: 0,
  353. // 弹窗model
  354. models: {
  355. disjunctor: false,
  356. },
  357. // 弹窗model1
  358. models1: {
  359. disjunctor: false,
  360. },
  361. currentInspect: null,
  362. showType: "show",
  363. infoDATA: {},
  364. dataId: "",
  365. animationData: {},
  366. // 特殊情况关闭原因开关
  367. textareaFlag: false,
  368. textareaText: "",
  369. };
  370. },
  371. filters: {
  372. // 自定义管道 yyTime
  373. yyTimeFilter: function(data) {
  374. if (data) {
  375. let nDate = null;
  376. if (typeof data == 'string') {
  377. let arr = data.split(/[-:\s]/);
  378. nDate = new Date(
  379. arr[0] - 0,
  380. arr[1] - 1,
  381. arr[2] - 0,
  382. arr[3] - 0,
  383. arr[4] - 0,
  384. 0
  385. );
  386. } else if (typeof data == 'number') {
  387. nDate = new Date(data);
  388. }
  389. const month = (nDate.getMonth() + 1).toString().padStart(2, 0);
  390. const date = nDate.getDate().toString().padStart(2, 0);
  391. const hour = nDate.getHours().toString().padStart(2, 0);
  392. const minute = nDate.getMinutes().toString().padStart(2, 0);
  393. return `${month}-${date} ${hour}:${minute}`;
  394. } else {
  395. return "-";
  396. }
  397. },
  398. },
  399. methods: {
  400. // 移除检查->知道了
  401. know1() {
  402. this.models1.disjunctor = false;
  403. // this.getInfo(this.dataId);
  404. //baba
  405. uni.navigateTo({
  406. url: '../receiptpage/receiptpage',
  407. });
  408. },
  409. // 移除检查->确定
  410. ok1() {
  411. this.models1.disjunctor = false;
  412. let postData = {
  413. gdId: this.infoDATA.id,
  414. inspectId: this.currentInspect.id,
  415. };
  416. uni.showLoading({
  417. title: '移除中',
  418. mask: true,
  419. })
  420. post('/workerOrder/removeInspectByOderId', postData).then(res => {
  421. uni.hideLoading();
  422. if (res.state == 200) {
  423. this.models1 = {
  424. disjunctor: true,
  425. content: "移除成功",
  426. };
  427. } else {
  428. uni.showToast({
  429. icon: "none",
  430. title: "移除失败",
  431. });
  432. }
  433. })
  434. },
  435. // 移除检查->取消
  436. cancel1() {
  437. this.models1.disjunctor = false;
  438. },
  439. // 移除
  440. remove(item) {
  441. this.currentInspect = item;
  442. this.models1 = {
  443. disjunctor: true,
  444. content: "是否移除该检查信息",
  445. icon: "warn",
  446. operate: {
  447. ok: "确定",
  448. cancel: "取消",
  449. },
  450. };
  451. },
  452. // 拍照
  453. photograph(data) {
  454. photographTool(data);
  455. },
  456. // 特殊情况输入文字
  457. textareaInput(value) {
  458. this.textareaText = value;
  459. if (value.trim().length >= 10) {
  460. this.models.operate = {
  461. ok: "确定",
  462. cancel: "取消",
  463. };
  464. } else {
  465. this.models.operate = {
  466. cancel: "取消",
  467. };
  468. }
  469. },
  470. // 特殊情况关闭按钮
  471. specialCloseClick() {
  472. this.textareaFlag = true;
  473. this.models = {
  474. title: "特殊情况关闭",
  475. disjunctor: true,
  476. content: "",
  477. icon: "",
  478. operate: {
  479. cancel: "取消",
  480. },
  481. };
  482. },
  483. ok() {
  484. uni.showLoading({
  485. title: "加载中",
  486. mask: true,
  487. });
  488. post("/workerOrder/specialCaseClose", {
  489. workOrderId: this.dataId,
  490. reason: this.textareaText.trim(),
  491. }).then((result) => {
  492. this.models.disjunctor = false;
  493. this.textareaFlag = false;
  494. this.textareaText = "";
  495. if (result.state == 200) {
  496. uni.hideLoading();
  497. this.models = {
  498. disjunctor: true,
  499. content: "工单关闭成功",
  500. icon: "success",
  501. operate: {
  502. know: "知道了",
  503. },
  504. };
  505. } else {
  506. uni.hideLoading();
  507. this.models = {
  508. disjunctor: true,
  509. content: "工单关闭失败",
  510. icon: "error",
  511. operate: {
  512. know: "知道了",
  513. },
  514. };
  515. }
  516. });
  517. },
  518. cancel() {
  519. this.models.disjunctor = false;
  520. this.textareaFlag = false;
  521. this.textareaText = "";
  522. },
  523. // 点击可查看检查详情
  524. show(type) {
  525. this.showType = type;
  526. if (type === "show") {
  527. //展开
  528. // 计算高度
  529. const query = uni.createSelectorQuery().in(this);
  530. query
  531. .selectAll(".page_item_infos")
  532. .boundingClientRect((data) => {
  533. let len = data.reduce((prev, current) => {
  534. return prev + current.height;
  535. }, 0);
  536. this.animation.height(len).step();
  537. this.animationData = this.animation.export();
  538. })
  539. .exec();
  540. } else if (type === "hiddle") {
  541. this.animation.height(0).step();
  542. this.animationData = this.animation.export();
  543. }
  544. },
  545. // 抢单->知道了
  546. know() {
  547. this.models.disjunctor = false;
  548. uni.navigateTo({
  549. url: "../receiptpage/receiptpage",
  550. });
  551. },
  552. // 抢单
  553. showAlert() {
  554. get("/workerOrder/takeOrder/" + this.infoDATA.id).then((res) => {
  555. if (res.status == 200) {
  556. this.models = {
  557. disjunctor: true,
  558. content: "接单成功",
  559. icon: "success",
  560. operate: {
  561. know: "知道了",
  562. },
  563. };
  564. } else {
  565. uni.showToast({
  566. icon: "none",
  567. title: "请求失败!",
  568. });
  569. }
  570. });
  571. },
  572. // 请求详细页面的数据
  573. getInfo(id) {
  574. uni.showLoading({
  575. title: "加载中",
  576. mask: true,
  577. });
  578. get("/api/fetchData/workOrder/" + id).then((res) => {
  579. uni.hideLoading();
  580. if (res.status == 200) {
  581. this.infoDATA = res.data;
  582. // 计算高度
  583. setTimeout(() => {
  584. const query = uni.createSelectorQuery().in(this);
  585. query
  586. .selectAll(".page_item_infos")
  587. .boundingClientRect((data) => {
  588. let len = data.reduce((prev, current) => {
  589. return prev + current.height;
  590. }, 0);
  591. this.animation.height(len).step();
  592. this.animationData = this.animation.export();
  593. })
  594. .exec();
  595. }, 500)
  596. } else {
  597. uni.showToast({
  598. icon: "none",
  599. title: "请求失败!",
  600. });
  601. }
  602. });
  603. },
  604. },
  605. onLoad(options) {
  606. this.currentUserId = uni.getStorageSync('userData').user.id;
  607. let id = options.id;
  608. this.dataId = id;
  609. this.getInfo(id);
  610. // 创建动画
  611. this.animation = uni.createAnimation({
  612. duration: 500,
  613. timingFunction: "ease",
  614. });
  615. // #ifdef APP-PLUS
  616. webHandle("no", "app");
  617. // #endif
  618. // #ifdef H5
  619. webHandle("no", "wx");
  620. // #endif
  621. },
  622. onUnload() {
  623. // 页面关闭后清空数据
  624. this.animationData = {};
  625. },
  626. };
  627. </script>
  628. <style lang="less">
  629. .Receipt_infopage {
  630. padding: 0 20rpx;
  631. overflow: hidden;
  632. .red {
  633. color: red !important;
  634. font-weight: bold !important;
  635. }
  636. .green {
  637. color: #49b856 !important;
  638. font-weight: bold !important;
  639. }
  640. .title {
  641. font-size: 48rpx;
  642. margin-top: 24rpx;
  643. margin-bottom: 24rpx;
  644. text-align: center;
  645. }
  646. .page_item {
  647. margin-top: 16rpx;
  648. margin-bottom: 124rpx;
  649. background: #fff;
  650. border-radius: 8rpx;
  651. padding: 0 16rpx;
  652. border: 2rpx solid #e5e9ed;
  653. .L {
  654. width: 40rpx;
  655. height: 40rpx;
  656. border-radius: 50%;
  657. background: #f9fafb;
  658. position: relative;
  659. left: -50rpx;
  660. top: 66rpx;
  661. }
  662. .R {
  663. width: 40rpx;
  664. height: 40rpx;
  665. border-radius: 50%;
  666. background: #f9fafb;
  667. position: relative;
  668. float: right;
  669. right: -50rpx;
  670. top: 26rpx;
  671. }
  672. .starting {
  673. width: 50rpx;
  674. height: 50rpx;
  675. color: #fff;
  676. background: #49b856;
  677. display: inline-block;
  678. border-radius: 50%;
  679. text-align: center;
  680. line-height: 46rpx;
  681. font-size: 32rpx;
  682. margin-right: 6rpx;
  683. }
  684. .End {
  685. width: 50rpx;
  686. height: 50rpx;
  687. color: #fff;
  688. background: #39b199;
  689. display: inline-block;
  690. border-radius: 50%;
  691. text-align: center;
  692. line-height: 46rpx;
  693. font-size: 32rpx;
  694. margin-right: 6rpx;
  695. }
  696. .page_item_top {
  697. height: 86rpx;
  698. border-bottom: 2rpx dashed #666;
  699. padding: 0 16rpx;
  700. .page_item_top_L {
  701. height: 100%;
  702. float: left;
  703. line-height: 88rpx;
  704. .emergencys {
  705. background: #ff3b53 !important;
  706. width: 124rpx !important;
  707. }
  708. .emergency {
  709. background: #ff3b53 !important;
  710. }
  711. .emergency1 {
  712. background: #49b856 !important;
  713. }
  714. .page_item_cont_start {
  715. text-align: center;
  716. height: 44rpx;
  717. width: 104rpx;
  718. line-height: 44rpx;
  719. border-radius: 8rpx;
  720. background: #49b856;
  721. color: #fff;
  722. display: inline-block;
  723. font-size: 28rpx;
  724. .cubeic-star {
  725. margin-right: 8rpx;
  726. }
  727. }
  728. .L_time {
  729. color: #6cc076;
  730. font-size: 32rpx;
  731. }
  732. .L_text {
  733. font-size: 32rpx;
  734. display: inline-block;
  735. font-weight: 700;
  736. margin-right: 16rpx;
  737. }
  738. }
  739. .page_item_top_R {
  740. height: 60rpx;
  741. float: right;
  742. padding-top: 20rpx;
  743. font-size: 32rpx;
  744. position: absolute;
  745. right: 50rpx;
  746. .L_iocn {
  747. display: inline-block;
  748. height: 52rpx;
  749. line-height: 48rpx;
  750. color: rgb(7, 134, 60);
  751. font-size: 36rpx;
  752. font-weight: 700;
  753. }
  754. }
  755. }
  756. .page_item_cont {
  757. min-height: 180rpx;
  758. // max-height: 424rpx;
  759. padding: 0 16rpx;
  760. text-align: left;
  761. position: relative;
  762. .text_big {
  763. font-size: 32rpx;
  764. position: absolute;
  765. right: 16rpx;
  766. font-weight: 700;
  767. margin-top: 10rpx;
  768. }
  769. .text_big2 {
  770. font-size: 32rpx;
  771. position: absolute;
  772. right: 16rpx;
  773. font-weight: 700;
  774. }
  775. .line {
  776. height: 20rpx;
  777. width: 2rpx;
  778. border-left: 2rpx solid #666;
  779. position: absolute;
  780. top: 82rpx;
  781. left: 40rpx;
  782. }
  783. .lines {
  784. height: 40%;
  785. width: 2rpx;
  786. border-left: 2rpx solid #666;
  787. position: absolute;
  788. top: 23%;
  789. left: 36rpx;
  790. }
  791. .page_item_cont_T {
  792. padding-top: 28rpx;
  793. font-size: 28rpx;
  794. .page_item_cont_title {
  795. height: 100%;
  796. font-size: 32rpx;
  797. }
  798. }
  799. .page_item_cont_B {
  800. padding-top: 28rpx;
  801. margin-bottom: 28rpx;
  802. .page_item_cont_title {
  803. height: 60rpx;
  804. font-size: 32rpx;
  805. }
  806. .page_item_cont_title1 {
  807. height: 60rpx;
  808. line-height: 60rpx;
  809. font-size: 32rpx;
  810. padding-left: 64rpx;
  811. }
  812. }
  813. }
  814. .page_item_foot {
  815. border-top: 2rpx dashed #666;
  816. border-bottom: 2rpx dashed #666;
  817. padding: 28rpx 16rpx;
  818. text-align: left;
  819. .page_item_foot_text {
  820. font-size: 32rpx;
  821. margin-bottom: 20rpx;
  822. .text1 {
  823. color: rgb(102, 102, 102);
  824. }
  825. .text2 {
  826. float: right;
  827. font-weight: 700;
  828. }
  829. }
  830. }
  831. .page_item_info {
  832. padding: 20rpx 16rpx;
  833. text-align: left;
  834. line-height: 60rpx;
  835. font-size: 32rpx;
  836. .spe_list {
  837. padding: 32rpx 0;
  838. border-top: 2rpx solid #666;
  839. .page_item_info_title {
  840. color: #666;
  841. }
  842. }
  843. .page_item_info_title {
  844. font-weight: 700;
  845. }
  846. .text {
  847. float: right;
  848. font-weight: 700;
  849. .page_item_info_txt {
  850. color: #49b856;
  851. margin-left: 8rpx;
  852. }
  853. }
  854. }
  855. #infos {
  856. height: 0;
  857. overflow: hidden;
  858. }
  859. .page_item_infos {
  860. padding-top: 20rpx;
  861. padding-bottom: 20rpx;
  862. border-bottom: 2rpx dashed #666;
  863. .page_item_info2 {
  864. text-align: left;
  865. line-height: 60rpx;
  866. font-size: 32rpx;
  867. padding-left: 16rpx;
  868. .page_item_foot_text {
  869. font-size: 32rpx;
  870. margin-bottom: 20rpx;
  871. &:last-of-type {
  872. margin-bottom: 0;
  873. }
  874. .text1 {
  875. color: rgb(102, 102, 102);
  876. }
  877. .text2 {
  878. float: right;
  879. font-weight: 700;
  880. }
  881. .btn {
  882. height: 66rpx;
  883. width: 132rpx;
  884. margin: 0 auto;
  885. background-color: #49b856;
  886. color: #fff;
  887. border-radius: 8rpx;
  888. font-size: 32rpx;
  889. margin-top: 20rpx;
  890. text-align: center;
  891. }
  892. }
  893. }
  894. }
  895. #pulldown {
  896. color: #49b856;
  897. font-size: 36rpx;
  898. height: 60rpx;
  899. text-align: center;
  900. .cubeic-pulldown {
  901. font-size: 48rpx;
  902. position: relative;
  903. bottom: 6rpx;
  904. }
  905. }
  906. #pullup {
  907. color: #49b856;
  908. font-size: 36rpx;
  909. height: 60rpx;
  910. text-align: center;
  911. .cubeic-pullup {
  912. font-size: 48rpx;
  913. position: relative;
  914. top: 12rpx;
  915. }
  916. }
  917. }
  918. .foot_btn2 {
  919. position: fixed;
  920. bottom: 0;
  921. right: 20rpx;
  922. left: 20rpx;
  923. line-height: 66rpx;
  924. height: 100rpx;
  925. border-top: 2rpx solid #e5e9ed;
  926. background: #f9fafb;
  927. display: flex;
  928. justify-content: space-between;
  929. .btn2 {
  930. height: 66rpx;
  931. width: 100%;
  932. margin: 0 1%;
  933. background-image: linear-gradient(to right, #72c172, #3bb197);
  934. color: #fff;
  935. border-radius: 8rpx;
  936. font-size: 32rpx;
  937. margin-top: 16rpx;
  938. text-align: center;
  939. }
  940. .btn3 {
  941. height: 66rpx;
  942. width: 48%;
  943. margin: 0 1%;
  944. background-image: linear-gradient(to right, #72c172, #3bb197);
  945. color: #fff;
  946. border-radius: 8rpx;
  947. font-size: 32rpx;
  948. margin-top: 16rpx;
  949. text-align: center;
  950. }
  951. }
  952. }
  953. </style>