specimenChecking.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695
  1. <template>
  2. <view class="specimenChecking">
  3. <view class="title">请您确认一下科室标本数量!</view>
  4. <view class="page_item_wrap" v-for="item in list" :key="item[0]" @click="gotoDetail(item)">
  5. <view class="page_item">
  6. <view class="page_item_top">
  7. <view class="page_item_top-inner">
  8. <view class="page_item_top_L">
  9. <view class="L_text">{{item[1]}}</view>
  10. </view>
  11. <view class="page_item_top_R">
  12. <view class="L_iocn"></view>
  13. </view>
  14. </view>
  15. </view>
  16. <view class="page_item_cont">
  17. <view class="page_item_cont_T">
  18. <view class="page_item_cont_title">
  19. <view>
  20. 标本数量
  21. </view>
  22. <view class="text_big">{{item[2]}}</view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="L"></view>
  27. <view class="R"></view>
  28. </view>
  29. <view class="L-l"></view>
  30. <view class="R-l"></view>
  31. </view>
  32. <view class="foot_btn2">
  33. <view class="btn2" @click="createOrder">确认数量并建单</view>
  34. <view class="btn2" @click="goto()">知道了</view>
  35. </view>
  36. <!-- 修改标本数量弹窗 -->
  37. <changeSpeNum v-if="changeSpeModels.disjunctor" :operate="{ok:'确认数量',check:'详细核对',cancel:'取消'}" :title="changeSpeModels.title" :content="changeSpeModels.content"
  38. :disjunctor="changeSpeModels.disjunctor" @ok="changeSpeOk" @check="changeSpeCheck" @cancel="changeSpeCancel" :num="speNumChange">
  39. </changeSpeNum>
  40. </view>
  41. </template>
  42. <script>
  43. import {
  44. get,
  45. post,
  46. webHandle
  47. } from "../../http/http.js";
  48. export default {
  49. data() {
  50. return {
  51. list: [],
  52. msg: {}, //页面展示信息
  53. // 修改标本数量弹窗model
  54. changeSpeModels: {
  55. disjunctor: false,
  56. },
  57. speNumChange: 0,
  58. changeSpeObj: {},
  59. };
  60. },
  61. methods: {
  62. // 数量核对 start
  63. // 修改标本数量-核对
  64. changeSpeCheck(){
  65. this.changeSpeModels.disjunctor = false;
  66. uni.navigateTo({
  67. url: `../../pages/specimenCheckingDetail/specimenCheckingDetail?infoDATA=${encodeURIComponent(JSON.stringify(this.changeSpeObj.infoDATA))}&id=${this.changeSpeObj.id}&endDepts=${this.changeSpeObj.endDepts}`,
  68. });
  69. },
  70. // 修改标本数量-确认
  71. changeSpeOk(data) {
  72. console.log(data);
  73. const pathUrl = uni.getStorageSync("path");
  74. const {
  75. speNum,
  76. reason,
  77. imageValue
  78. } = data;
  79. this.changeSpeModels.disjunctor = false;
  80. uni.showLoading({
  81. mask: true,
  82. title: "加载中",
  83. });
  84. let postData = {
  85. checkDept: this.changeSpeObj.endDepts, //终点科室
  86. transDeptId: this.changeSpeObj.infoDATA.startDept,
  87. gdId: this.changeSpeObj.infoDATA.uuid,
  88. deptId: this.changeSpeObj.id == "undefined" ?
  89. this.changeSpeObj.infoDATA.startDept : this.changeSpeObj.id,
  90. specimensNum: speNum,
  91. modifyReason: reason,
  92. };
  93. post("/api/updateCheckDeptSpecimensNum", postData).then((res) => {
  94. if (res.status == 200) {
  95. console.log(imageValue);
  96. if (!imageValue.length) {
  97. uni.hideLoading();
  98. uni.showModal({
  99. title: "提示",
  100. content: "修改成功!",
  101. showCancel: false,
  102. success: (result) => {
  103. if (result.confirm) {
  104. console.log("用户点击确定");
  105. if (this.changeSpeObj.t == "big") {
  106. if (this.changeSpeObj.gdState == 4) {
  107. // 待到达
  108. uni.navigateTo({
  109. url: `../../pages/receiptpage/receiptpage`,
  110. });
  111. } else if (this.changeSpeObj.gdState == 5) {
  112. // 待送达
  113. if (res.type1 === "plan-spe-ddd-2") {} else {
  114. let content = `本工单已签到<strong class="red">${
  115. res.scanSet ? res.scanSet.join("、") : ""
  116. }</strong>,剩余需签到科室<strong class="red">${
  117. res.notScanSet ? res.notScanSet.join("、") : ""
  118. }</strong>,您确定完成工单吗?`;
  119. uni.navigateTo({
  120. url: `../scanning/scanning?type=${res.type}&type1=${
  121. res.type1
  122. }&id=${encodeURIComponent(
  123. JSON.stringify([res.gdid])
  124. )}&content=${content}`,
  125. });
  126. }
  127. }
  128. } else if (this.changeSpeObj.t == "small") {
  129. if (this.changeSpeObj.id == "undefined") {
  130. //快捷建单建单进入
  131. uni.navigateTo({
  132. url: `../../pages/receiptpage/receiptpage`,
  133. });
  134. } else {
  135. if (this.changeSpeObj.gdState == 4) {
  136. // 待到达
  137. uni.navigateTo({
  138. url: `../../pages/receiptpage/receiptpage`,
  139. });
  140. } else if (this.changeSpeObj.gdState == 5) {
  141. // 待送达
  142. if (res.type1 === "plan-spe-ddd-2") {} else {
  143. let content = `本工单已签到<strong class="red">${
  144. res.scanSet ? res.scanSet.join("、") : ""
  145. }</strong>,剩余需签到科室<strong class="red">${
  146. res.notScanSet ? res.notScanSet.join("、") : ""
  147. }</strong>,您确定完成工单吗?`;
  148. uni.navigateTo({
  149. url: `../scanning/scanning?type=${res.type}&type1=${
  150. res.type1
  151. }&id=${encodeURIComponent(
  152. JSON.stringify([res.gdid])
  153. )}&content=${content}`,
  154. });
  155. }
  156. }
  157. }
  158. } else {
  159. uni.navigateTo({
  160. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  161. JSON.stringify(this.changeSpeObj.infoDATA)
  162. )}`,
  163. });
  164. }
  165. } else if (result.cancel) {
  166. console.log("用户点击取消");
  167. }
  168. },
  169. });
  170. return;
  171. }
  172. let n = 0;
  173. imageValue.forEach((v) => {
  174. // 图片上传 start
  175. console.log("压缩前");
  176. let canvasWidth = v.image.width; //图片原始长宽
  177. let canvasHeight = v.image.height;
  178. let img = new Image();
  179. img.src = v.path;
  180. let canvas = document.createElement("canvas");
  181. let ctx = canvas.getContext("2d");
  182. canvas.width = canvasWidth;
  183. canvas.height = canvasHeight;
  184. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight);
  185. canvas.toBlob(
  186. (fileSrc) => {
  187. let tp = window.URL.createObjectURL(fileSrc);
  188. console.log("压缩后");
  189. n++;
  190. uni.uploadFile({
  191. url: pathUrl +
  192. "/common/common/uploadAttachment/specimenPhotos/" +
  193. res.deptSpecimensNumId +
  194. "/666",
  195. filePath: tp,
  196. name: "file",
  197. formData: {
  198. filename: v.cloudPath,
  199. },
  200. success: (uploadFileRes) => {
  201. console.log(uploadFileRes);
  202. if (--n === 0) {
  203. uni.hideLoading();
  204. uni.showModal({
  205. title: "提示",
  206. content: "修改成功!",
  207. showCancel: false,
  208. success: (result) => {
  209. if (result.confirm) {
  210. console.log("用户点击确定", this.changeSpeObj.t);
  211. if (this.changeSpeObj.t == "big") {
  212. if (this.changeSpeObj.gdState == 4) {
  213. // 待到达
  214. uni.navigateTo({
  215. url: `../../pages/receiptpage/receiptpage`,
  216. });
  217. } else if (this.changeSpeObj.gdState == 5) {
  218. // 待送达
  219. if (res.type1 === "plan-spe-ddd-2") {} else {
  220. let content = `本工单已签到<strong class="red">${
  221. res.scanSet ? res.scanSet.join("、") : ""
  222. }</strong>,剩余需签到科室<strong class="red">${
  223. res.notScanSet ? res.notScanSet.join("、") : ""
  224. }</strong>,您确定完成工单吗?`;
  225. uni.navigateTo({
  226. url: `../scanning/scanning?type=${res.type}&type1=${
  227. res.type1
  228. }&id=${encodeURIComponent(
  229. JSON.stringify([res.gdid])
  230. )}&content=${content}`,
  231. });
  232. }
  233. }
  234. } else if (this.changeSpeObj.t == "small") {
  235. if (this.changeSpeObj.id == "undefined") {
  236. //快捷建单建单进入
  237. uni.navigateTo({
  238. url: `../../pages/receiptpage/receiptpage`,
  239. });
  240. } else {
  241. if (this.changeSpeObj.gdState == 4) {
  242. // 待到达
  243. uni.navigateTo({
  244. url: `../../pages/receiptpage/receiptpage`,
  245. });
  246. } else if (this.changeSpeObj.gdState == 5) {
  247. // 待送达
  248. if (res.type1 === "plan-spe-ddd-2") {} else {
  249. let content = `本工单已签到<strong class="red">${
  250. res.scanSet ? res.scanSet.join("、") : ""
  251. }</strong>,剩余需签到科室<strong class="red">${
  252. res.notScanSet ? res.notScanSet.join("、") : ""
  253. }</strong>,您确定完成工单吗?`;
  254. uni.navigateTo({
  255. url: `../scanning/scanning?type=${res.type}&type1=${
  256. res.type1
  257. }&id=${encodeURIComponent(
  258. JSON.stringify([res.gdid])
  259. )}&content=${content}`,
  260. });
  261. }
  262. }
  263. }
  264. } else {
  265. uni.navigateTo({
  266. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  267. JSON.stringify(this.changeSpeObj.infoDATA)
  268. )}`,
  269. });
  270. }
  271. } else if (result.cancel) {
  272. console.log("用户点击取消");
  273. }
  274. },
  275. });
  276. }
  277. },
  278. fail: (err) => {
  279. n--;
  280. console.error(err);
  281. uni.hideLoading();
  282. uni.showToast({
  283. icon: "none",
  284. title: "上传失败",
  285. duration: 2000,
  286. });
  287. },
  288. });
  289. },
  290. "image/jpeg",
  291. 0.3
  292. );
  293. // 图片上传 end
  294. });
  295. } else {
  296. uni.hideLoading();
  297. uni.showToast({
  298. icon: "none",
  299. title: "请求失败!",
  300. });
  301. }
  302. });
  303. },
  304. // 修改标本数量-取消
  305. changeSpeCancel() {
  306. this.changeSpeModels.disjunctor = false;
  307. },
  308. // 修改标本数量弹窗
  309. showChangeSpe() {
  310. this.changeSpeModels = {
  311. title: "修改标本数量",
  312. disjunctor: true,
  313. };
  314. },
  315. // 数量核对 end
  316. // 获取列表
  317. getList() {
  318. uni.showLoading({
  319. mask: true,
  320. title: '加载中'
  321. })
  322. let postData = {
  323. startDept: this.msg.startDept,
  324. targetDept: this.msg.targetDept,
  325. uuid: this.msg.uuid
  326. }; //起点科室id,选择的科室ids
  327. post(`/api/getDeptSpecimensNum`, postData).then((res) => {
  328. uni.hideLoading();
  329. uni.stopPullDownRefresh();
  330. if (res.status == 200) {
  331. this.list = res.data;
  332. } else {
  333. uni.showToast({
  334. icon: "none",
  335. title: "请求失败!",
  336. });
  337. }
  338. });
  339. },
  340. // 跳转到详情页
  341. gotoDetail(item) {
  342. this.speNumChange = item[2];
  343. this.changeSpeObj = {
  344. infoDATA: this.msg,
  345. id: item[0],
  346. endDepts:this.msg.targetDept,
  347. }
  348. this.showChangeSpe();
  349. },
  350. // 知道了
  351. goto() {
  352. uni.navigateTo({
  353. url: `../../pages/receiptpage/receiptpage`,
  354. });
  355. },
  356. // 确认数量并建单
  357. createOrder() {
  358. uni.showModal({
  359. title: '提示',
  360. content: "您确认建单吗?",
  361. success: (res) => {
  362. if (res.confirm) {
  363. console.log('用户点击确定');
  364. uni.showLoading({
  365. mask: true,
  366. title: '加载中'
  367. })
  368. get(`/workerOrder/createQuickOrder/${this.msg.id}`, {}).then((res) => {
  369. console.log(res)
  370. uni.hideLoading();
  371. if (res.status == 200) {
  372. if (res.type === 'plan-spe-ddd-2') {
  373. //需要扫描标本
  374. uni.navigateTo({
  375. url: `../../pages/scanning_code/scanning_code?type=${res.associationTypeName}&type1=${res.type}&id=${res.id}&deptCode=${res.deptCode}&dept=${res.deptName}&accountObj=undefined&endDepts=${this.msg.targetDept}`,
  376. });
  377. } else {
  378. uni.navigateTo({
  379. url: "../receiptpage/receiptpage",
  380. });
  381. }
  382. } else {
  383. uni.showToast({
  384. icon: "none",
  385. title: "请求失败!",
  386. });
  387. }
  388. });
  389. } else if (res.cancel) {
  390. console.log('用户点击取消');
  391. }
  392. }
  393. });
  394. },
  395. },
  396. onLoad(options) {
  397. console.log(options, "快捷建单");
  398. this.msg = JSON.parse(options.infoDATA);
  399. this.getList();
  400. // #ifdef APP-PLUS
  401. webHandle("no", "app");
  402. // #endif
  403. // #ifdef H5
  404. webHandle("no", "wx");
  405. // #endif
  406. },
  407. onPullDownRefresh() {
  408. this.getList();
  409. },
  410. };
  411. </script>
  412. <style lang="less" scoped>
  413. .specimenChecking {
  414. padding-bottom: 100rpx;
  415. .title {
  416. font-size: 48rpx;
  417. margin-top: 24rpx;
  418. margin-bottom: 24rpx;
  419. text-align: center;
  420. }
  421. .page_item_wrap {
  422. width: 100%;
  423. height: auto;
  424. box-sizing: border-box;
  425. position: relative;
  426. margin-bottom: 16rpx;
  427. .page_item {
  428. margin-top: 16rpx;
  429. margin-bottom: 124rpx;
  430. background: #fff;
  431. border-radius: 8rpx;
  432. margin: 0 20rpx;
  433. border: 2rpx solid #e5e9ed;
  434. position: relative;
  435. overflow: hidden;
  436. padding: 0 16rpx;
  437. .L {
  438. width: 40rpx;
  439. height: 40rpx;
  440. border-radius: 50%;
  441. background: #f9fafb;
  442. position: absolute;
  443. left: -20rpx;
  444. top: 68rpx;
  445. border: 2rpx solid #e5e9ed;
  446. }
  447. .R {
  448. width: 40rpx;
  449. height: 40rpx;
  450. border-radius: 50%;
  451. background: #f9fafb;
  452. position: absolute;
  453. float: right;
  454. right: -20rpx;
  455. top: 68rpx;
  456. border: 2rpx solid #e5e9ed;
  457. }
  458. .starting {
  459. width: 50rpx;
  460. height: 50rpx;
  461. color: #fff;
  462. background: #49b856;
  463. display: inline-block;
  464. border-radius: 50%;
  465. text-align: center;
  466. line-height: 46rpx;
  467. font-size: 32rpx;
  468. margin-right: 6rpx;
  469. }
  470. .End {
  471. width: 50rpx;
  472. height: 50rpx;
  473. color: #fff;
  474. background: #39b199;
  475. display: inline-block;
  476. border-radius: 50%;
  477. text-align: center;
  478. line-height: 46rpx;
  479. font-size: 32rpx;
  480. margin-right: 6rpx;
  481. }
  482. .page_item_top {
  483. height: 88rpx;
  484. border-bottom: 2rpx dashed #e5e9ed;
  485. padding: 0 16rpx;
  486. .page_item_top-inner {
  487. display: flex;
  488. justify-content: space-between;
  489. align-items: center;
  490. height: 100%;
  491. .page_item_top_L {
  492. .emergencys {
  493. background: #ff3b53 !important;
  494. width: 124rpx !important;
  495. }
  496. .emergency {
  497. background: #ff3b53 !important;
  498. }
  499. .emergency1 {
  500. background: #49b856 !important;
  501. }
  502. .page_item_cont_start {
  503. text-align: center;
  504. height: 44rpx;
  505. width: 104rpx;
  506. line-height: 44rpx;
  507. border-radius: 8rpx;
  508. background: #49b856;
  509. color: #fff;
  510. display: inline-block;
  511. }
  512. .L_time {
  513. color: #6cc076;
  514. font-size: 32rpx;
  515. }
  516. .L_text {
  517. font-size: 32rpx;
  518. font-weight: 700;
  519. }
  520. }
  521. .page_item_top_R {
  522. font-size: 32rpx;
  523. .L_iocn {
  524. color: rgb(7, 134, 60);
  525. font-size: 36rpx;
  526. font-weight: 700;
  527. }
  528. }
  529. }
  530. }
  531. .page_item_cont {
  532. min-height: 90rpx;
  533. padding: 0 16rpx;
  534. text-align: left;
  535. position: relative;
  536. .text_big {
  537. font-size: 32rpx;
  538. font-weight: 700;
  539. margin-top: 10rpx;
  540. p {
  541. font-weight: 700;
  542. line-height: 1.5;
  543. }
  544. }
  545. .page_item_cont_T {
  546. padding-top: 28rpx;
  547. font-size: 28rpx;
  548. .page_item_cont_title {
  549. height: 100%;
  550. font-size: 32rpx;
  551. display: flex;
  552. justify-content: space-between;
  553. }
  554. }
  555. .page_item_cont_B {
  556. padding-top: 28rpx;
  557. margin-bottom: 28rpx;
  558. .page_item_cont_title {
  559. font-size: 32rpx;
  560. display: flex;
  561. justify-content: space-between;
  562. }
  563. .page_item_cont_title1 {
  564. height: 60rpx;
  565. line-height: 60rpx;
  566. font-size: 32rpx;
  567. padding-left: 64rpx;
  568. }
  569. }
  570. }
  571. .page_item_foot {
  572. border-top: 2rpx dashed #e5e9ed;
  573. border-bottom: 2rpx dashed #e5e9ed;
  574. padding: 28rpx 16rpx;
  575. text-align: left;
  576. .page_item_foot_text {
  577. font-size: 32rpx;
  578. margin-bottom: 20rpx;
  579. .text1 {
  580. color: rgb(102, 102, 102);
  581. }
  582. .text2 {
  583. float: right;
  584. font-weight: 700;
  585. }
  586. }
  587. }
  588. #infos {
  589. display: none;
  590. }
  591. .page_item_infos {
  592. padding-bottom: 20rpx;
  593. border-bottom: 2rpx dashed #e5e9ed;
  594. .page_item_info2 {
  595. text-align: left;
  596. line-height: 60rpx;
  597. font-size: 32rpx;
  598. padding-left: 16rpx;
  599. .page_item_foot_text {
  600. font-size: 32rpx;
  601. margin-bottom: 20rpx;
  602. .text1 {
  603. color: rgb(102, 102, 102);
  604. }
  605. .text2 {
  606. float: right;
  607. font-weight: 700;
  608. }
  609. }
  610. }
  611. }
  612. }
  613. .L-l {
  614. width: 2rpx;
  615. height: 40rpx;
  616. background: #f9fafb;
  617. position: absolute;
  618. left: 20rpx;
  619. top: 72rpx;
  620. }
  621. .R-l {
  622. width: 2rpx;
  623. height: 40rpx;
  624. background: #f9fafb;
  625. position: absolute;
  626. right: 20rpx;
  627. top: 72rpx;
  628. }
  629. }
  630. .foot_btn2 {
  631. position: fixed;
  632. bottom: 0;
  633. width: 100vw;
  634. padding: 0 20rpx;
  635. box-sizing: border-box;
  636. line-height: 66rpx;
  637. height: 100rpx;
  638. border-top: 2rpx solid #e5e9ed;
  639. background: #f9fafb;
  640. text-align: center;
  641. display: flex;
  642. justify-content: center;
  643. align-items: center;
  644. .btn2 {
  645. height: 66rpx;
  646. flex: 1;
  647. margin: 16rpx 16rpx 0;
  648. background-image: linear-gradient(to right, #72c172, #3bb197);
  649. color: #fff;
  650. border-radius: 8rpx;
  651. font-size: 32rpx;
  652. }
  653. }
  654. }
  655. </style>