scanning.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  1. <template>
  2. <view class="Scanning">
  3. <view class="Scanning_top footerOtherMargin">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok icon_transport transport-duigou"></text>
  6. </view>
  7. <view class="Scanning_top_text">
  8. <view class="text1"> 扫描完成 </view>
  9. <view class="text2" v-if="queryObj.content" 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. </view>
  40. </view>
  41. <view class="foot_btn1 footerPadding">
  42. <view class="btn1" @click="Scanning_again()"> 继续配送 </view>
  43. <view class="btn2" @click="Scanning_complete(dataId)" v-if="
  44. infoType == 'plan-spe-ddd-1' ||
  45. infoType == 'plan-spe-dsd-1' ||
  46. infoType == 'spe-ddd-1' ||
  47. infoType == 'spe-dsd-1'
  48. ">
  49. 完成工单
  50. </view>
  51. <view class="btn2" @click="Scanning_complete1(dataId)" v-if="
  52. infoType == 'plan-spe-ddd-2' ||
  53. infoType == 'plan-spe-dsd-2' ||
  54. infoType == 'plan-spe-dsd-3' ||
  55. infoType == 'spe-ddd-2' ||
  56. infoType == 'spe-dsd-2' ||
  57. infoType == 'spe-dsd-3'
  58. ">
  59. 完成工单
  60. </view>
  61. </view>
  62. <!-- 弹窗 -->
  63. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  64. @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
  65. </view>
  66. </template>
  67. <script>
  68. import showModel from "../../components/showModel/showModel.vue";
  69. import {
  70. get,
  71. post,
  72. SM,
  73. webHandle
  74. } from "../../http/http.js";
  75. export default {
  76. data() {
  77. return {
  78. // 弹窗model
  79. models: {
  80. disjunctor: false,
  81. },
  82. wcId: [], //完成工单id
  83. modelFlag: "", //弹窗标识
  84. infoDATA: [],
  85. infoType: "",
  86. DEPTCode: "",
  87. DEPT: "",
  88. dataId: "",
  89. speNum: 0,
  90. queryObj: {}, //路由传递过来的参数
  91. };
  92. },
  93. methods: {
  94. // 继续配送
  95. Scanning_again(id) {
  96. uni.navigateTo({
  97. url: "../receiptpage/receiptpage",
  98. });
  99. },
  100. // 确定
  101. ok() {
  102. this.models.disjunctor = false;
  103. uni.showLoading({
  104. title: "加载中",
  105. mask: true,
  106. });
  107. if (this.modelFlag == "complete1") {
  108. //一对多、多对多完成工单
  109. let data = {
  110. type: this.infoType,
  111. ids: this.wcId,
  112. };
  113. let id = this.wcId;
  114. if (this.queryObj.type === "specimenPlan") {
  115. //标本轮巡
  116. post("/workerOrder/finishPlanSpes", data).then((res) => {
  117. uni.hideLoading();
  118. if (res.status == 200) {
  119. uni.navigateTo({
  120. url: `../scanning_orderSign/scanning_orderSign?type=${
  121. this.queryObj.type
  122. }&type1=${this.queryObj.type1}&deptCode=${
  123. this.queryObj.code
  124. }&id=${encodeURIComponent(JSON.stringify(id))}`,
  125. });
  126. } else {
  127. uni.showToast({
  128. icon: "none",
  129. title: "请求失败!",
  130. });
  131. }
  132. });
  133. } else {
  134. post("/workerOrder/finishSpes", data).then((res) => {
  135. uni.hideLoading();
  136. if (res.status == 200) {
  137. uni.navigateTo({
  138. url: `../scanning_orderSign/scanning_orderSign?type=${
  139. this.queryObj.type
  140. }&type1=${this.queryObj.type1}&deptCode=${
  141. this.queryObj.code
  142. }&id=${encodeURIComponent(JSON.stringify(id))}`,
  143. });
  144. } else {
  145. uni.showToast({
  146. icon: "none",
  147. title: "请求失败!",
  148. });
  149. }
  150. });
  151. }
  152. } else if (this.modelFlag == "complete") {
  153. //一对一完成工单
  154. let id = this.wcId;
  155. post("/workerOrder/finishSpeOrder", id).then((res) => {
  156. uni.hideLoading();
  157. if (res.status == 200) {
  158. uni.navigateTo({
  159. url: `../scanning_orderSign/scanning_orderSign?type=${
  160. this.queryObj.type
  161. }&type1=${this.queryObj.type1}&deptCode=${
  162. this.queryObj.code
  163. }&id=${encodeURIComponent(JSON.stringify(id))}`,
  164. });
  165. } else {
  166. uni.showToast({
  167. icon: "none",
  168. title: "请求失败!",
  169. });
  170. }
  171. });
  172. }
  173. },
  174. // 取消
  175. cancel() {
  176. this.models.disjunctor = false;
  177. },
  178. //一对多、多对多完成工单
  179. Scanning_complete1(id) {
  180. this.wcId = id;
  181. this.modelFlag = "complete1"; //弹窗标识
  182. this.models = {
  183. disjunctor: true,
  184. title: "提示",
  185. content: "是否确定标本配送完成?",
  186. icon: "warn",
  187. operate: {
  188. ok: "确定",
  189. cancel: "取消",
  190. },
  191. };
  192. },
  193. //一对一完成工单
  194. Scanning_complete(id) {
  195. this.wcId = id;
  196. this.modelFlag = "complete"; //弹窗标识
  197. this.models = {
  198. disjunctor: true,
  199. title: "提示",
  200. content: "是否确定标本配送完成?",
  201. icon: "warn",
  202. operate: {
  203. ok: "确定",
  204. cancel: "取消",
  205. },
  206. };
  207. },
  208. },
  209. onLoad(options) {
  210. console.log(options, 'options')
  211. this.queryObj = options;
  212. let id = JSON.parse(options.id);
  213. this.dataId = id;
  214. this.infoType = options.type1;
  215. this.DEPTCode = options.deptCode;
  216. this.DEPT = options.dept;
  217. if (options.speNum) {
  218. this.speNum = options.speNum;
  219. }
  220. // #ifdef APP-PLUS
  221. webHandle("no", "app");
  222. // #endif
  223. // #ifdef H5
  224. webHandle("no", "wx");
  225. // #endif
  226. },
  227. };
  228. </script>
  229. <style lang="less">
  230. .Scanning {
  231. padding: 0 20rpx;
  232. .Scanning_top {
  233. height: 340rpx;
  234. .Scanning_top_icon {
  235. width: 140rpx;
  236. height: 140rpx;
  237. margin: 0 auto;
  238. margin-top: 36rpx;
  239. border-radius: 50%;
  240. line-height: 140rpx;
  241. .cubeic-ok {
  242. font-size: 140rpx;
  243. color: #35b34a;
  244. }
  245. }
  246. .Scanning_top_text {
  247. text-align: center;
  248. .text1 {
  249. margin-top: 40rpx;
  250. font-size: 48rpx;
  251. }
  252. .text2 {
  253. margin-top: 16rpx;
  254. font-size: 36rpx;
  255. }
  256. }
  257. }
  258. .page_item {
  259. margin-top: 16rpx;
  260. margin-bottom: 124rpx;
  261. min-height: 356rpx;
  262. background: #fff;
  263. border-radius: 8rpx;
  264. overflow: hidden;
  265. padding: 0 16rpx;
  266. border: 2rpx solid #e5e9ed;
  267. .L {
  268. width: 40rpx;
  269. height: 40rpx;
  270. border-radius: 50%;
  271. background: #f9fafb;
  272. position: relative;
  273. left: -50rpx;
  274. top: 66rpx;
  275. }
  276. .R {
  277. width: 40rpx;
  278. height: 40rpx;
  279. border-radius: 50%;
  280. background: #f9fafb;
  281. position: relative;
  282. float: right;
  283. right: -50rpx;
  284. top: 26rpx;
  285. }
  286. .starting {
  287. width: 50rpx;
  288. height: 50rpx;
  289. color: #fff;
  290. background: #49b856;
  291. display: inline-block;
  292. border-radius: 50%;
  293. text-align: center;
  294. line-height: 46rpx;
  295. font-size: 32rpx;
  296. margin-right: 6rpx;
  297. }
  298. .End {
  299. width: 50rpx;
  300. height: 50rpx;
  301. color: #fff;
  302. background: #39b199;
  303. display: inline-block;
  304. border-radius: 50%;
  305. text-align: center;
  306. line-height: 46rpx;
  307. font-size: 32rpx;
  308. margin-right: 6rpx;
  309. }
  310. .page_item_top {
  311. height: 86rpx;
  312. border-bottom: 2rpx dashed #e5e9ed;
  313. padding: 0 16rpx;
  314. .page_item_top_L {
  315. height: 100%;
  316. float: left;
  317. line-height: 88rpx;
  318. .emergencys {
  319. background: #ff3b53 !important;
  320. width: 124rpx !important;
  321. }
  322. .emergency {
  323. background: #ff3b53 !important;
  324. }
  325. .emergency1 {
  326. background: #49b856 !important;
  327. }
  328. .page_item_cont_start {
  329. text-align: center;
  330. height: 44rpx;
  331. width: 104rpx;
  332. line-height: 44rpx;
  333. border-radius: 8rpx;
  334. background: #49b856;
  335. color: #fff;
  336. display: inline-block;
  337. }
  338. .L_time {
  339. color: #6cc076;
  340. font-size: 32rpx;
  341. }
  342. .L_text {
  343. font-size: 32rpx;
  344. display: inline-block;
  345. font-weight: 700;
  346. }
  347. }
  348. .page_item_top_R {
  349. height: 60rpx;
  350. float: right;
  351. padding-top: 20rpx;
  352. font-size: 32rpx;
  353. position: absolute;
  354. right: 50rpx;
  355. .L_iocn {
  356. display: inline-block;
  357. height: 52rpx;
  358. line-height: 48rpx;
  359. color: rgb(7, 134, 60);
  360. font-size: 36rpx;
  361. font-weight: 700;
  362. }
  363. }
  364. }
  365. .page_item_cont {
  366. min-height: 180rpx;
  367. max-height: 424rpx;
  368. padding: 0 16rpx;
  369. text-align: left;
  370. position: relative;
  371. .text_big {
  372. font-size: 32rpx;
  373. position: absolute;
  374. right: 16rpx;
  375. font-weight: 700;
  376. margin-top: 10rpx;
  377. }
  378. .text_big2 {
  379. font-size: 32rpx;
  380. position: absolute;
  381. right: 16rpx;
  382. font-weight: 700;
  383. }
  384. .line {
  385. height: 20rpx;
  386. width: 2rpx;
  387. border-left: 2rpx solid #e5e9ed;
  388. position: absolute;
  389. top: 82rpx;
  390. left: 40rpx;
  391. }
  392. .lines {
  393. height: 40%;
  394. width: 2rpx;
  395. border-left: 2rpx solid #e5e9ed;
  396. position: absolute;
  397. top: 23%;
  398. left: 36rpx;
  399. }
  400. .page_item_cont_T {
  401. padding-top: 28rpx;
  402. font-size: 28rpx;
  403. .page_item_cont_title {
  404. height: 100%;
  405. font-size: 32rpx;
  406. }
  407. }
  408. .page_item_cont_B {
  409. padding-top: 28rpx;
  410. margin-bottom: 28rpx;
  411. .page_item_cont_title {
  412. height: 60rpx;
  413. font-size: 32rpx;
  414. }
  415. .page_item_cont_title1 {
  416. height: 60rpx;
  417. line-height: 60rpx;
  418. font-size: 32rpx;
  419. padding-left: 64rpx;
  420. }
  421. }
  422. }
  423. .page_item_foot {
  424. border-top: 2rpx dashed #e5e9ed;
  425. border-bottom: 2rpx dashed #e5e9ed;
  426. padding: 28rpx 16rpx;
  427. text-align: left;
  428. .page_item_foot_text {
  429. font-size: 32rpx;
  430. margin-bottom: 20rpx;
  431. .text1 {
  432. color: rgb(102, 102, 102);
  433. }
  434. .text2 {
  435. float: right;
  436. font-weight: 700;
  437. }
  438. }
  439. .text_padd {
  440. padding: 0 10% 0 10%;
  441. }
  442. }
  443. #infos {
  444. display: none;
  445. }
  446. .page_item_infos {
  447. padding-bottom: 20rpx;
  448. border-bottom: 2rpx dashed #e5e9ed;
  449. .page_item_info2 {
  450. text-align: left;
  451. line-height: 60rpx;
  452. font-size: 32rpx;
  453. padding-left: 16rpx;
  454. .page_item_foot_text {
  455. font-size: 32rpx;
  456. margin-bottom: 20rpx;
  457. .text1 {
  458. color: rgb(102, 102, 102);
  459. }
  460. .text2 {
  461. float: right;
  462. font-weight: 700;
  463. }
  464. }
  465. }
  466. }
  467. }
  468. .foot_btn1 {
  469. position: fixed;
  470. bottom: 0;
  471. right: 20rpx;
  472. left: 20rpx;
  473. line-height: 66rpx;
  474. height: 100rpx;
  475. border-top: 2rpx solid #e5e9ed;
  476. background: #f9fafb;
  477. text-align: center;
  478. view {
  479. height: 66rpx;
  480. width: 45%;
  481. background-image: linear-gradient(to right, #72c172, #3bb197);
  482. color: #fff;
  483. border-radius: 8rpx;
  484. font-size: 32rpx;
  485. margin-top: 16rpx;
  486. }
  487. .btn1 {
  488. float: left;
  489. }
  490. .btn2 {
  491. float: right;
  492. }
  493. }
  494. }
  495. </style>