scanning.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638
  1. <template>
  2. <view class="Scanning">
  3. <view class="Scanning_top footerOtherMargin">
  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 class="text2" v-if="queryObj.content && queryObj.type !== 'specimenPlan'" v-html="queryObj.content"></view>
  10. <view class="text2" v-if="!queryObj.content">
  11. 您已在
  12. <text style="font-weight: 600; color: rgb(73, 184, 86)" v-if="
  13. infoType == 'plan-spe-ddd-1' ||
  14. infoType == 'plan-spe-ddd-2' ||
  15. infoType == 'spe-ddd-1' ||
  16. infoType == 'spe-ddd-2' ||
  17. infoType == 'drug-ddd-2' ||
  18. infoType == 'jp-ddd-2'
  19. ">{{ infoDATA.startDept.dept }}</text>
  20. <text style="font-weight: 600; color: rgb(73, 184, 86)"
  21. v-if="infoType == 'drug-dsd-2' || infoType == 'jp-dsd-2'">{{ infoDATA.endDepts[0].dept }}</text>
  22. <text style="font-weight: 600; color: rgb(73, 184, 86)" v-if="
  23. infoType == 'plan-spe-dsd-2' ||
  24. infoType == 'plan-spe-dsd-3' ||
  25. infoType == 'plan-spe-dsd-1' ||
  26. infoType == 'spe-dsd-2' ||
  27. infoType == 'spe-dsd-3' ||
  28. infoType == 'spe-dsd-1' ||
  29. infoType == 'ins-zxz-1' ||
  30. infoType == 'ins-dsd-1' ||
  31. infoType == 'trans-dsd-1' ||
  32. (infoType == 'qt-ddd-1' && infoDATA.gdState.value == '5') ||
  33. infoDATA.gdState.value == '6' ||
  34. infoDATA.gdState.value == '8'
  35. ">{{ DEPT }}</text>
  36. <text>扫描<text style="color: #ff3b53">{{ speNum }}</text> 个标本,
  37. 确认是否继续配送或是完成工单。</text>
  38. </view>
  39. <template v-if="queryObj.type === 'specimenPlan'">
  40. <table class="speTable">
  41. <tr>
  42. <td>科室名称</td>
  43. <td>数量</td>
  44. <td>状态</td>
  45. </tr>
  46. <tr v-for="spe in infoList" :key="spe.deptId">
  47. <td class="maxWidth">{{spe.deptName}}</td>
  48. <td>{{spe.speNum}}</td>
  49. <td>
  50. <text v-if="spe.deptState=== 'ysd'" class="green">已到达</text>
  51. <text v-if="spe.deptState=== 'wsd'" class="red">未到达</text>
  52. </td>
  53. </tr>
  54. </table>
  55. </template>
  56. </view>
  57. </view>
  58. <view class="foot_btn1 footerPadding">
  59. <view class="btn1" @click="Scanning_again()"> 继续配送 </view>
  60. <view class="btn2" @click="Scanning_complete(dataId)" v-if="
  61. infoType == 'plan-spe-ddd-1' ||
  62. infoType == 'plan-spe-dsd-1' ||
  63. infoType == 'spe-ddd-1' ||
  64. infoType == 'spe-dsd-1'
  65. ">
  66. 完成工单
  67. </view>
  68. <view class="btn2" @click="Scanning_complete1(dataId)" v-if="
  69. infoType == 'plan-spe-ddd-2' ||
  70. infoType == 'plan-spe-dsd-2' ||
  71. infoType == 'plan-spe-dsd-3' ||
  72. infoType == 'spe-ddd-2' ||
  73. infoType == 'spe-dsd-2' ||
  74. infoType == 'spe-dsd-3'
  75. ">
  76. 完成工单
  77. </view>
  78. </view>
  79. <!-- 弹窗 -->
  80. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  81. @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
  82. <!-- 弹窗 -->
  83. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  84. @ok="ok1" @cancel="cancel1" :operate="models1.operate"></showModel>
  85. </view>
  86. </template>
  87. <script>
  88. import showModel from "../../components/showModel/showModel.vue";
  89. import {
  90. get,
  91. post,
  92. SM,
  93. webHandle
  94. } from "../../http/http.js";
  95. export default {
  96. data() {
  97. return {
  98. infoList:[],
  99. // 弹窗model
  100. models: {
  101. disjunctor: false,
  102. },
  103. // 弹窗model
  104. models1: {
  105. disjunctor: false,
  106. },
  107. wcId: [], //完成工单id
  108. modelFlag: "", //弹窗标识
  109. infoDATA: [],
  110. infoType: "",
  111. DEPTCode: "",
  112. DEPT: "",
  113. dataId: "",
  114. speNum: 0,
  115. queryObj: {}, //路由传递过来的参数
  116. };
  117. },
  118. methods: {
  119. // 获取标本轮巡核对信息
  120. getInfo() {
  121. uni.showLoading({
  122. title: "加载中",
  123. mask: true,
  124. });
  125. let postData = {
  126. uuid: this.dataId[0]
  127. };
  128. post(`/api/getDeptSpecimensNum`, postData).then((res) => {
  129. uni.hideLoading();
  130. if (res.status == 200) {
  131. this.infoList = res.data;
  132. } else {
  133. uni.showToast({
  134. icon: "none",
  135. title: res.msg || "接口获取数据失败!",
  136. });
  137. }
  138. });
  139. },
  140. // 继续配送
  141. Scanning_again(id) {
  142. this.models1 = {
  143. disjunctor: true,
  144. title: "提示",
  145. content: `是否确定<span class="red">继续配送</span>?`,
  146. icon: "warn",
  147. operate: {
  148. ok: "确定",
  149. cancel: "取消",
  150. },
  151. };
  152. },
  153. // 确定
  154. ok1() {
  155. this.models1.disjunctor = false;
  156. uni.navigateTo({
  157. url: "../receiptpage/receiptpage",
  158. });
  159. },
  160. // 取消
  161. cancel1() {
  162. this.models1.disjunctor = false;
  163. },
  164. // 确定
  165. ok() {
  166. this.models.disjunctor = false;
  167. uni.showLoading({
  168. title: "加载中",
  169. mask: true,
  170. });
  171. if (this.modelFlag == "complete1") {
  172. //一对多、多对多完成工单
  173. let data = {
  174. type: this.infoType,
  175. ids: this.wcId,
  176. };
  177. let id = this.wcId;
  178. if (this.queryObj.type === "specimenPlan") {
  179. //标本轮巡
  180. post("/workerOrder/finishPlanSpes", data).then((res) => {
  181. uni.hideLoading();
  182. if (res.status == 200) {
  183. uni.navigateTo({
  184. url: `../scanning_orderSign/scanning_orderSign?type=${
  185. this.queryObj.type
  186. }&type1=${this.queryObj.type1}&deptCode=${
  187. this.queryObj.code
  188. }&id=${encodeURIComponent(JSON.stringify(id))}`,
  189. });
  190. } else {
  191. uni.showToast({
  192. icon: "none",
  193. title: res.msg || "接口获取数据失败!",
  194. });
  195. }
  196. });
  197. } else {
  198. post("/workerOrder/finishSpes", data).then((res) => {
  199. uni.hideLoading();
  200. if (res.status == 200) {
  201. uni.navigateTo({
  202. url: `../scanning_orderSign/scanning_orderSign?type=${
  203. this.queryObj.type
  204. }&type1=${this.queryObj.type1}&deptCode=${
  205. this.queryObj.code
  206. }&id=${encodeURIComponent(JSON.stringify(id))}`,
  207. });
  208. } else {
  209. uni.showToast({
  210. icon: "none",
  211. title: res.msg || "接口获取数据失败!",
  212. });
  213. }
  214. });
  215. }
  216. } else if (this.modelFlag == "complete") {
  217. //一对一完成工单
  218. let id = this.wcId;
  219. post("/workerOrder/finishSpeOrder", id).then((res) => {
  220. uni.hideLoading();
  221. if (res.status == 200) {
  222. uni.navigateTo({
  223. url: `../scanning_orderSign/scanning_orderSign?type=${
  224. this.queryObj.type
  225. }&type1=${this.queryObj.type1}&deptCode=${
  226. this.queryObj.code
  227. }&id=${encodeURIComponent(JSON.stringify(id))}`,
  228. });
  229. } else {
  230. uni.showToast({
  231. icon: "none",
  232. title: res.msg || "接口获取数据失败!",
  233. });
  234. }
  235. });
  236. }
  237. },
  238. // 取消
  239. cancel() {
  240. this.models.disjunctor = false;
  241. },
  242. //一对多、多对多完成工单
  243. Scanning_complete1(id) {
  244. this.wcId = id;
  245. this.modelFlag = "complete1"; //弹窗标识
  246. this.models = {
  247. disjunctor: true,
  248. title: "提示",
  249. content: `是否确定标本<span class="red">配送完成</span>?`,
  250. icon: "warn",
  251. operate: {
  252. ok: "确定",
  253. cancel: "取消",
  254. },
  255. };
  256. },
  257. //一对一完成工单
  258. Scanning_complete(id) {
  259. this.wcId = id;
  260. this.modelFlag = "complete"; //弹窗标识
  261. this.models = {
  262. disjunctor: true,
  263. title: "提示",
  264. content: `是否确定标本<span class="red">配送完成</span>?`,
  265. icon: "warn",
  266. operate: {
  267. ok: "确定",
  268. cancel: "取消",
  269. },
  270. };
  271. },
  272. },
  273. onShow() {
  274. let that = this
  275. // #ifdef APP-PLUS
  276. uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
  277. // uni.$on('scan', function(data) {
  278. // that.pdaChange(data)
  279. // })
  280. // #endif
  281. },
  282. onLoad(options) {
  283. console.log(options, 'options')
  284. this.queryObj = options;
  285. let id = JSON.parse(options.id);
  286. this.dataId = id;
  287. this.infoType = options.type1;
  288. this.DEPTCode = options.deptCode;
  289. this.DEPT = options.dept;
  290. if (options.speNum) {
  291. this.speNum = options.speNum;
  292. }
  293. if(this.queryObj.type === 'specimenPlan'){
  294. this.getInfo();
  295. }
  296. // #ifdef APP-PLUS
  297. webHandle("no", "app");
  298. // #endif
  299. // #ifdef H5
  300. webHandle("no", "wx");
  301. // #endif
  302. },
  303. };
  304. </script>
  305. <style lang="less" scoped>
  306. .Scanning {
  307. padding: 0 20rpx;
  308. // 标本轮巡核对 start
  309. .speTable {
  310. margin: 32rpx 0;
  311. width: 100%;
  312. border-collapse: collapse;
  313. .green{
  314. color: green;
  315. }
  316. .red{
  317. color: red;
  318. }
  319. .maxWidth{
  320. width: 60%;
  321. }
  322. td{
  323. border: 2rpx solid #666;
  324. }
  325. }
  326. // 标本轮巡核对 end
  327. .Scanning_top {
  328. height: 340rpx;
  329. .Scanning_top_icon {
  330. width: 140rpx;
  331. height: 140rpx;
  332. margin: 0 auto;
  333. margin-top: 36rpx;
  334. border-radius: 50%;
  335. line-height: 140rpx;
  336. .cubeic-ok {
  337. font-size: 140rpx;
  338. color: #35b34a;
  339. }
  340. }
  341. .Scanning_top_text {
  342. text-align: center;
  343. .text1 {
  344. margin-top: 40rpx;
  345. font-size: 48rpx;
  346. }
  347. .text2 {
  348. margin-top: 16rpx;
  349. font-size: 36rpx;
  350. }
  351. }
  352. }
  353. .page_item {
  354. margin-top: 16rpx;
  355. margin-bottom: 124rpx;
  356. min-height: 356rpx;
  357. background: #fff;
  358. border-radius: 8rpx;
  359. overflow: hidden;
  360. padding: 0 16rpx;
  361. border: 2rpx solid #e5e9ed;
  362. .L {
  363. width: 40rpx;
  364. height: 40rpx;
  365. border-radius: 50%;
  366. background: #f9fafb;
  367. position: relative;
  368. left: -50rpx;
  369. top: 66rpx;
  370. }
  371. .R {
  372. width: 40rpx;
  373. height: 40rpx;
  374. border-radius: 50%;
  375. background: #f9fafb;
  376. position: relative;
  377. float: right;
  378. right: -50rpx;
  379. top: 26rpx;
  380. }
  381. .starting {
  382. width: 50rpx;
  383. height: 50rpx;
  384. color: #fff;
  385. background: #49b856;
  386. display: inline-block;
  387. border-radius: 50%;
  388. text-align: center;
  389. line-height: 46rpx;
  390. font-size: 32rpx;
  391. margin-right: 6rpx;
  392. }
  393. .End {
  394. width: 50rpx;
  395. height: 50rpx;
  396. color: #fff;
  397. background: #39b199;
  398. display: inline-block;
  399. border-radius: 50%;
  400. text-align: center;
  401. line-height: 46rpx;
  402. font-size: 32rpx;
  403. margin-right: 6rpx;
  404. }
  405. .page_item_top {
  406. height: 86rpx;
  407. border-bottom: 2rpx dashed #e5e9ed;
  408. padding: 0 16rpx;
  409. .page_item_top_L {
  410. height: 100%;
  411. float: left;
  412. line-height: 88rpx;
  413. .emergencys {
  414. background: #ff3b53 !important;
  415. width: 124rpx !important;
  416. }
  417. .emergency {
  418. background: #ff3b53 !important;
  419. }
  420. .emergency1 {
  421. background: #49b856 !important;
  422. }
  423. .page_item_cont_start {
  424. text-align: center;
  425. height: 44rpx;
  426. width: 104rpx;
  427. line-height: 44rpx;
  428. border-radius: 8rpx;
  429. background: #49b856;
  430. color: #fff;
  431. display: inline-block;
  432. }
  433. .L_time {
  434. color: #6cc076;
  435. font-size: 32rpx;
  436. }
  437. .L_text {
  438. font-size: 32rpx;
  439. display: inline-block;
  440. font-weight: 700;
  441. }
  442. }
  443. .page_item_top_R {
  444. height: 60rpx;
  445. float: right;
  446. padding-top: 20rpx;
  447. font-size: 32rpx;
  448. position: absolute;
  449. right: 50rpx;
  450. .L_iocn {
  451. display: inline-block;
  452. height: 52rpx;
  453. line-height: 48rpx;
  454. color: rgb(7, 134, 60);
  455. font-size: 36rpx;
  456. font-weight: 700;
  457. }
  458. }
  459. }
  460. .page_item_cont {
  461. min-height: 180rpx;
  462. max-height: 424rpx;
  463. padding: 0 16rpx;
  464. text-align: left;
  465. position: relative;
  466. .text_big {
  467. font-size: 32rpx;
  468. position: absolute;
  469. right: 16rpx;
  470. font-weight: 700;
  471. margin-top: 10rpx;
  472. }
  473. .text_big2 {
  474. font-size: 32rpx;
  475. position: absolute;
  476. right: 16rpx;
  477. font-weight: 700;
  478. }
  479. .line {
  480. height: 20rpx;
  481. width: 2rpx;
  482. border-left: 2rpx solid #e5e9ed;
  483. position: absolute;
  484. top: 82rpx;
  485. left: 40rpx;
  486. }
  487. .lines {
  488. height: 40%;
  489. width: 2rpx;
  490. border-left: 2rpx solid #e5e9ed;
  491. position: absolute;
  492. top: 23%;
  493. left: 36rpx;
  494. }
  495. .page_item_cont_T {
  496. padding-top: 28rpx;
  497. font-size: 28rpx;
  498. .page_item_cont_title {
  499. height: 100%;
  500. font-size: 32rpx;
  501. }
  502. }
  503. .page_item_cont_B {
  504. padding-top: 28rpx;
  505. margin-bottom: 28rpx;
  506. .page_item_cont_title {
  507. height: 60rpx;
  508. font-size: 32rpx;
  509. }
  510. .page_item_cont_title1 {
  511. height: 60rpx;
  512. line-height: 60rpx;
  513. font-size: 32rpx;
  514. padding-left: 64rpx;
  515. }
  516. }
  517. }
  518. .page_item_foot {
  519. border-top: 2rpx dashed #e5e9ed;
  520. border-bottom: 2rpx dashed #e5e9ed;
  521. padding: 28rpx 16rpx;
  522. text-align: left;
  523. .page_item_foot_text {
  524. font-size: 32rpx;
  525. margin-bottom: 20rpx;
  526. .text1 {
  527. color: rgb(102, 102, 102);
  528. }
  529. .text2 {
  530. float: right;
  531. font-weight: 700;
  532. }
  533. }
  534. .text_padd {
  535. padding: 0 10% 0 10%;
  536. }
  537. }
  538. #infos {
  539. display: none;
  540. }
  541. .page_item_infos {
  542. padding-bottom: 20rpx;
  543. border-bottom: 2rpx dashed #e5e9ed;
  544. .page_item_info2 {
  545. text-align: left;
  546. line-height: 60rpx;
  547. font-size: 32rpx;
  548. padding-left: 16rpx;
  549. .page_item_foot_text {
  550. font-size: 32rpx;
  551. margin-bottom: 20rpx;
  552. .text1 {
  553. color: rgb(102, 102, 102);
  554. }
  555. .text2 {
  556. float: right;
  557. font-weight: 700;
  558. }
  559. }
  560. }
  561. }
  562. }
  563. .foot_btn1 {
  564. position: fixed;
  565. bottom: 0;
  566. right: 20rpx;
  567. left: 20rpx;
  568. line-height: 66rpx;
  569. height: 100rpx;
  570. border-top: 2rpx solid #e5e9ed;
  571. background: #f9fafb;
  572. text-align: center;
  573. view {
  574. height: 66rpx;
  575. width: 45%;
  576. background-image: linear-gradient(to right, #72c172, #3bb197);
  577. color: #fff;
  578. border-radius: 8rpx;
  579. font-size: 32rpx;
  580. margin-top: 16rpx;
  581. }
  582. .btn1 {
  583. float: left;
  584. }
  585. .btn2 {
  586. float: right;
  587. }
  588. }
  589. }
  590. </style>