specimenChecking.vue 22 KB

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