scanning_orderSign.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
  1. <template>
  2. <view class="Scanning_orderSign">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok newicon newicon-duigou"></text>
  6. </view>
  7. <view class="Scanning_top_text">
  8. <view class="text1">工单完成</view>
  9. </view>
  10. </view>
  11. <view class="page_item footerOtherMargin" v-for="(infoDATA, i) of infoDATAS" :key="i">
  12. <view class="page_item_top">
  13. <view class="page_item_top_L">
  14. <text class="L_text">单号:{{ infoDATA.gdcode }}</text>
  15. <view class="page_item_cont_start emergency1" v-if="infoDATA.emergencyType.value == 1">
  16. <text class="page_item_cont_start_txt">
  17. <text class="cubeic-star newicon newicon-shiwujiaoxing"></text>
  18. {{ infoDATA.emergencyType.name }}
  19. </text>
  20. </view>
  21. <view class="page_item_cont_start emergency" v-if="infoDATA.emergencyType.value == 2">
  22. <text class="page_item_cont_start_txt">
  23. <text class="cubeic-star newicon newicon-shiwujiaoxing"></text>
  24. {{ infoDATA.emergencyType.name }}
  25. </text>
  26. </view>
  27. <view class="page_item_cont_start emergencys" v-if="infoDATA.emergencyType.value == 3">
  28. <text class="page_item_cont_start_txt">
  29. <text class="cubeic-star newicon newicon-shiwujiaoxing"></text>
  30. {{ infoDATA.emergencyType.name }}
  31. </text>
  32. </view>
  33. </view>
  34. <view class="page_item_top_R">
  35. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimen'">标本</text>
  36. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimenPlan'">标本</text>
  37. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'drugsBag'">药品</text>
  38. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'jPBag'">静配</text>
  39. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'inspect'">患者陪检</text>
  40. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'patientTransport'">患者转运</text>
  41. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'other'">其他配送</text>
  42. </view>
  43. <view class="L"></view>
  44. <view class="R"></view>
  45. </view>
  46. <view class="page_item_cont">
  47. <view class="page_item_cont_T">
  48. <view class="page_item_cont_title">
  49. <text> <text class="starting">起</text> 点科室 </text>
  50. <text class="text_big">{{ infoDATA.startDept.dept }}</text>
  51. </view>
  52. </view>
  53. <view class="line"></view>
  54. <view class="page_item_cont_B">
  55. <view class="page_item_cont_title" v-for="(dept, i) of infoDATA.middleDept" :key="i">
  56. <view v-if="infoDATA.taskType.associationType.value == 'inspect'">
  57. <text> <text class="End">检</text> 查科室 </text>
  58. <text class="text_big">{{ dept.dept }}</text>
  59. </view>
  60. </view>
  61. <view class="page_item_cont_title" v-for="(dept, i) of infoDATA.endDepts" :key="i">
  62. <view v-if="infoDATA.taskType.associationType.value != 'inspect'">
  63. <text> <text class="End">终</text> 点科室 </text>
  64. <text class="text_big">{{ dept.dept }}</text>
  65. </view>
  66. </view>
  67. </view>
  68. </view>
  69. <view class="page_item_foot">
  70. <view class="page_item_foot_text">
  71. <text class="text1">状态</text>
  72. <text class="text2" v-if="
  73. !(
  74. infoDATA.gdState.value == '5' &&
  75. infoDATA.taskType.associationType.value == 'inspect'
  76. )
  77. ">{{ infoDATA.gdState.name }}</text>
  78. <text class="text2" v-if="
  79. infoDATA.gdState.value == '5' &&
  80. infoDATA.taskType.associationType.value == 'inspect'
  81. ">待送回</text>
  82. </view>
  83. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '2'">
  84. <text class="text1">预计响应时间</text>
  85. <text class="text2">{{ infoDATA.estimeResponseTime || '无' }}</text>
  86. </view>
  87. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '5'">
  88. <text class="text1" v-if="!(infoDATA.taskType.associationType.value == 'inspect')">预计送达时间</text>
  89. <text class="text1" v-if="infoDATA.taskType.associationType.value == 'inspect'">预计送回时间</text>
  90. <text class="text2">{{ infoDATA.estimeCompleteTime || '无' }}</text>
  91. </view>
  92. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '4'">
  93. <text class="text1">预计到达时间</text>
  94. <text class="text2">{{ infoDATA.estimateArriveTime || '无' }}</text>
  95. </view>
  96. <view class="page_item_foot_text">
  97. <text class="text1">创建时间</text>
  98. <text class="text2">{{ infoDATA.startTime || '无' }}</text>
  99. </view>
  100. </view>
  101. <!-- 标本 送达-->
  102. <view class="page_item_info" v-if="
  103. infoDATA.taskType.associationType.value == 'specimenPlan' ||
  104. infoDATA.taskType.associationType.value == 'specimen' && ((infoType == 'plan-spe-dsd-3' && infoDATA.gdState.value == '7') ||
  105. (infoType == 'spe-dsd-3' && infoDATA.gdState.value == '7'))
  106. ">
  107. <!-- <text class="page_item_info_title">标本信息</text>
  108. <text class="text">
  109. 已扫描标本总数
  110. <text>{{ infoDATA.expectReceiveNum || 0 }}</text>
  111. </text> -->
  112. <!-- <view class="page_item_list">
  113. <view class="page_item_list_head">
  114. <view>标本类型</view>
  115. <view>床号</view>
  116. <view>标本编号</view>
  117. <view>患者姓名</view>
  118. </view>
  119. <view
  120. class="page_item_list_cont"
  121. v-for="(data, i) of infoDATA.specimenSet"
  122. :key="i"
  123. >
  124. <view>{{ data.stype.name || "-" }}</view>
  125. <view>{{ data.bedNum || "-" }}</view>
  126. <view>{{ data.scode || "-" }}</view>
  127. <view>{{ data.patientName || "-" }}</view>
  128. </view>
  129. </view> -->
  130. </view>
  131. </view>
  132. <view class="foot_btn2 footerPadding">
  133. <view class="btn2" @click="Scanning_again()">知道了</view>
  134. </view>
  135. </view>
  136. </template>
  137. <script>
  138. import {
  139. get,
  140. post,
  141. SM,
  142. webHandle
  143. } from "../../http/http.js";
  144. export default {
  145. data() {
  146. return {
  147. infoDATA: [],
  148. infoDATAS: [],
  149. infoType: "",
  150. DEPTCode: "",
  151. DEPT: "",
  152. dataId: "",
  153. };
  154. },
  155. methods: {
  156. // 知道了
  157. Scanning_again(id) {
  158. uni.navigateTo({
  159. url: "../receiptpage/receiptpage",
  160. });
  161. },
  162. // 获取信息内容
  163. getInfo(ids) {
  164. for (var i = 0; i < ids.length; i++) {
  165. get("/api/fetchData/workOrder/" + ids[i]).then((res) => {
  166. if (res.status == 200) {
  167. this.infoDATA = res.data;
  168. this.infoDATAS.push(this.infoDATA);
  169. } else {
  170. uni.showToast({
  171. icon: "none",
  172. title: res.msg || "接口获取数据失败!",
  173. });
  174. }
  175. });
  176. }
  177. },
  178. // 请求详细页面的数据
  179. getInfoBySpecimen(ids) {
  180. for (var i = 0; i < ids.length; i++) {
  181. post("/api/getWechatItem", {
  182. id: ids[i]
  183. }).then((res) => {
  184. if (res.state == 200) {
  185. this.infoDATA = res.data;
  186. this.infoDATAS.push(this.infoDATA);
  187. } else {
  188. uni.showToast({
  189. icon: "none",
  190. title: res.msg || "接口获取数据失败!",
  191. });
  192. }
  193. });
  194. }
  195. },
  196. },
  197. onLoad(options) {
  198. console.log(options, 'options');
  199. let id = JSON.parse(options.id);
  200. this.dataId = id;
  201. this.infoType = options.type1;
  202. this.DEPTCode = options.deptCode;
  203. this.DEPT = options.dept;
  204. if (options.type === 'specimen' || options.type === 'specimenPlan') {
  205. this.getInfoBySpecimen(id);
  206. } else {
  207. this.getInfo(id);
  208. }
  209. // #ifdef APP-PLUS
  210. webHandle("no", "app");
  211. // #endif
  212. // #ifdef H5
  213. webHandle("no", "wx");
  214. // #endif
  215. },
  216. };
  217. </script>
  218. <style lang="less">
  219. .Scanning_orderSign {
  220. padding: 0 20rpx;
  221. height: calc(100% - 100rpx);
  222. .Scanning_top {
  223. height: 340rpx;
  224. .Scanning_top_icon {
  225. width: 140rpx;
  226. height: 140rpx;
  227. margin: 0 auto;
  228. margin-top: 36rpx;
  229. border-radius: 50%;
  230. line-height: 140rpx;
  231. .cubeic-ok {
  232. font-size: 140rpx;
  233. color: #35b34a;
  234. }
  235. }
  236. .Scanning_top_text {
  237. text-align: center;
  238. .text1 {
  239. margin-top: 40rpx;
  240. font-size: 48rpx;
  241. }
  242. .text2 {
  243. margin-top: 16rpx;
  244. font-size: 36rpx;
  245. }
  246. }
  247. }
  248. .page_item {
  249. position: relative;
  250. margin-top: 16rpx;
  251. margin-bottom: 124rpx;
  252. min-height: 356rpx;
  253. background: #fff;
  254. border-radius: 8rpx;
  255. overflow: hidden;
  256. padding: 0 16rpx;
  257. border: 2rpx solid #e5e9ed;
  258. .L {
  259. width: 40rpx;
  260. height: 40rpx;
  261. border-radius: 50%;
  262. background: #f9fafb;
  263. position: relative;
  264. left: -50rpx;
  265. top: 66rpx;
  266. }
  267. .R {
  268. width: 20px;
  269. height: 20px;
  270. border-radius: 50%;
  271. background: #f9fafb;
  272. position: relative;
  273. float: right;
  274. right: -50rpx;
  275. top: 26rpx;
  276. }
  277. .starting {
  278. width: 50rpx;
  279. height: 50rpx;
  280. color: #fff;
  281. background: #49b856;
  282. display: inline-block;
  283. border-radius: 50%;
  284. text-align: center;
  285. line-height: 46rpx;
  286. font-size: 32rpx;
  287. margin-right: 6rpx;
  288. }
  289. .End {
  290. width: 50rpx;
  291. height: 50rpx;
  292. color: #fff;
  293. background: #39b199;
  294. display: inline-block;
  295. border-radius: 50%;
  296. text-align: center;
  297. line-height: 46rpx;
  298. font-size: 32rpx;
  299. margin-right: 6rpx;
  300. }
  301. .page_item_top {
  302. height: 86rpx;
  303. border-bottom: 2rpx dashed #e5e9ed;
  304. padding: 0 16rpx;
  305. .page_item_top_L {
  306. height: 100%;
  307. float: left;
  308. line-height: 88rpx;
  309. display: flex;
  310. align-items: center;
  311. .emergencys {
  312. background: #ff3b53 !important;
  313. width: 124rpx !important;
  314. }
  315. .emergency {
  316. background: #ff3b53 !important;
  317. }
  318. .emergency1 {
  319. background: #49b856 !important;
  320. }
  321. .page_item_cont_start {
  322. text-align: center;
  323. height: 44rpx;
  324. width: 104rpx;
  325. line-height: 44rpx;
  326. border-radius: 8rpx;
  327. background: #49b856;
  328. color: #fff;
  329. display: inline-block;
  330. .page_item_cont_start_txt {
  331. font-size: 28rpx;
  332. display: flex;
  333. align-items: center;
  334. justify-content: center;
  335. }
  336. }
  337. .L_time {
  338. color: #6cc076;
  339. font-size: 32rpx;
  340. }
  341. .L_text {
  342. font-size: 32rpx;
  343. display: inline-block;
  344. font-weight: 600;
  345. }
  346. }
  347. .page_item_top_R {
  348. height: 60rpx;
  349. float: right;
  350. padding-top: 20rpx;
  351. font-size: 32rpx;
  352. position: absolute;
  353. right: 50rpx;
  354. .L_iocn {
  355. display: inline-block;
  356. height: 52rpx;
  357. line-height: 48rpx;
  358. color: rgb(7, 134, 60);
  359. font-size: 36rpx;
  360. font-weight: 700;
  361. }
  362. }
  363. }
  364. .page_item_cont {
  365. min-height: 180rpx;
  366. padding: 0 16rpx;
  367. text-align: left;
  368. position: relative;
  369. .text_big {
  370. font-size: 32rpx;
  371. position: absolute;
  372. right: 16rpx;
  373. font-weight: 700;
  374. margin-top: 10rpx;
  375. }
  376. .text_big2 {
  377. font-size: 32rpx;
  378. position: absolute;
  379. right: 16rpx;
  380. font-weight: 700;
  381. }
  382. .line {
  383. height: 20rpx;
  384. width: 2rpx;
  385. border-left: 2rpx solid #e5e9ed;
  386. position: absolute;
  387. top: 82rpx;
  388. left: 40rpx;
  389. }
  390. .lines {
  391. height: 40%;
  392. width: 2rpx;
  393. border-left: 2rpx solid #e5e9ed;
  394. position: absolute;
  395. top: 23%;
  396. left: 36rpx;
  397. }
  398. .page_item_cont_T {
  399. padding-top: 28rpx;
  400. font-size: 28rpx;
  401. .page_item_cont_title {
  402. height: 100%;
  403. font-size: 32rpx;
  404. }
  405. }
  406. .page_item_cont_B {
  407. padding-top: 28rpx;
  408. margin-bottom: 28rpx;
  409. .page_item_cont_title {
  410. height: 60rpx;
  411. font-size: 32rpx;
  412. }
  413. .page_item_cont_title1 {
  414. height: 60rpx;
  415. line-height: 60rpx;
  416. font-size: 32rpx;
  417. padding-left: 64rpx;
  418. }
  419. }
  420. }
  421. .page_item_foot {
  422. border-top: 2rpx dashed #e5e9ed;
  423. border-bottom: 2rpx dashed #e5e9ed;
  424. padding: 28rpx 16rpx;
  425. text-align: left;
  426. .page_item_foot_text {
  427. font-size: 32rpx;
  428. margin-bottom: 20rpx;
  429. .text1 {
  430. color: rgb(102, 102, 102);
  431. }
  432. .text2 {
  433. float: right;
  434. font-weight: 700;
  435. }
  436. }
  437. .text_padd {
  438. padding: 0 10% 0 10%;
  439. }
  440. }
  441. .page_item_info {
  442. padding: 20rpx 16rpx;
  443. text-align: left;
  444. line-height: 60rpx;
  445. font-size: 32rpx;
  446. .page_item_info_title {
  447. font-weight: 700;
  448. }
  449. .text {
  450. float: right;
  451. font-weight: 700;
  452. text {
  453. color: #49b856;
  454. }
  455. }
  456. .page_item_list {
  457. .page_item_list_head {
  458. height: 90rpx;
  459. background-image: linear-gradient(to right, #72c172, #3bb197);
  460. display: flex;
  461. view {
  462. flex: 1;
  463. text-align: center;
  464. line-height: 90rpx;
  465. color: #fff;
  466. }
  467. }
  468. .page_item_list_cont {
  469. height: 90rpx;
  470. display: flex;
  471. view {
  472. flex: 1;
  473. text-align: center;
  474. line-height: 90rpx;
  475. color: rgb(51, 51, 51);
  476. }
  477. }
  478. }
  479. }
  480. #infos {
  481. display: none;
  482. }
  483. .page_item_infos {
  484. padding-bottom: 20rpx;
  485. border-bottom: 2rpx dashed #e5e9ed;
  486. .page_item_info2 {
  487. text-align: left;
  488. line-height: 60rpx;
  489. font-size: 32rpx;
  490. padding-left: 16rpx;
  491. .page_item_foot_text {
  492. font-size: 32rpx;
  493. margin-bottom: 20rpx;
  494. .text1 {
  495. color: rgb(102, 102, 102);
  496. }
  497. .text2 {
  498. float: right;
  499. font-weight: 700;
  500. }
  501. }
  502. }
  503. }
  504. }
  505. .foot_btn2 {
  506. position: fixed;
  507. bottom: 0;
  508. right: 20rpx;
  509. left: 20rpx;
  510. line-height: 66rpx;
  511. height: 100rpx;
  512. border-top: 2rpx solid #e5e9ed;
  513. background: #f9fafb;
  514. text-align: center;
  515. .btn2 {
  516. height: 66rpx;
  517. width: 100%;
  518. background-image: linear-gradient(to right, #72c172, #3bb197);
  519. color: #fff;
  520. border-radius: 8rpx;
  521. font-size: 32rpx;
  522. margin-top: 16rpx;
  523. }
  524. }
  525. }
  526. </style>