scanning_nucleicAcid.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. <template>
  2. <view class="pharmacyDetails" v-show="nucleicAcidDto.batchNo">
  3. <view class="pharmacyDetails_title">核酸信息</view>
  4. <view class="page_item_wrap">
  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. <text class="L_text">批次号:{{ nucleicAcidDto.batchNo||'-' }}</text>
  10. </view>
  11. <view class="page_item_top_R">
  12. <text class="L_iocn">{{
  13. nucleicAcidDto.state == 1 ? "已闭环" : "未闭环"
  14. }}</text>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="page_item_cont">
  19. <view class="page_item_cont_B">
  20. <view class="page_item_cont_title">
  21. <text>楼栋名称</text>
  22. <text class="text_big">
  23. <text>
  24. {{nucleicAcidDto.BuildName || "-"}}
  25. </text>
  26. </text>
  27. </view>
  28. </view>
  29. <view class="page_item_cont_C">
  30. <view class="page_item_cont_title_C">
  31. <text>工单总数</text>
  32. <text class="text_big">
  33. <text>{{ nucleicAcidDto.orderCount||'-' }}</text>
  34. </text>
  35. </view>
  36. </view>
  37. <view class="page_item_cont_C">
  38. <view class="page_item_cont_title_C">
  39. <text style="flex: 1;flex-shrink: 0;">起点科室</text>
  40. <text class="text_big" style="flex: 1;text-align:justify;overflow:hidden;">
  41. <text style="float:right;">{{
  42. nucleicAcidDto.deptNames ? nucleicAcidDto.deptNames.toString() : "-"
  43. }}</text>
  44. </text>
  45. </view>
  46. </view>
  47. </view>
  48. <view class="L"></view>
  49. <view class="R"></view>
  50. </view>
  51. <view class="L-l"></view>
  52. <view class="R-l"></view>
  53. </view>
  54. <view class="foot_btn">
  55. <view class="btn3" v-if="nucleicAcidDto.state == 0" @click="closedLoop()">闭环工单</view>
  56. <view class="btn3" @click="goBack()">知道了</view>
  57. </view>
  58. <!-- 弹窗 -->
  59. <nucleicAcidCollection v-if="changeSpeModels.disjunctor" :title="changeSpeModels.title" :content="changeSpeModels.content"
  60. :disjunctor="changeSpeModels.disjunctor" @ok="changeSpeOk" @cancel="changeSpeCancel">
  61. </nucleicAcidCollection>
  62. </view>
  63. </template>
  64. <script>
  65. import {
  66. webHandle,
  67. post
  68. } from "../../http/http.js";
  69. export default {
  70. data() {
  71. return {
  72. options:{},
  73. // 弹窗
  74. changeSpeModels: {
  75. disjunctor: false,
  76. },
  77. nucleicAcidDto: {}, //核酸信息
  78. gotoFlag: true,
  79. };
  80. },
  81. methods: {
  82. // 闭环工单 - 确定
  83. changeSpeOk(data) {
  84. console.log(data);
  85. const pathUrl = uni.getStorageSync("path");
  86. const {
  87. reason,
  88. imageValue
  89. } = data;
  90. this.changeSpeModels.disjunctor = false;
  91. uni.showLoading({
  92. mask: true,
  93. title: "加载中",
  94. });
  95. let postData = {
  96. qrcode: this.options.qrcode,
  97. remark: reason,
  98. };
  99. post("/api/closedLoopNucleicAcid", postData).then((res) => {
  100. this.gotoFlag = true;
  101. if (res.status == 200) {
  102. console.log(imageValue);
  103. if (!imageValue.length) {
  104. uni.hideLoading();
  105. uni.navigateTo({
  106. url: "../receiptpage/receiptpage",
  107. });
  108. return;
  109. }
  110. let n = 0;
  111. imageValue.forEach((v) => {
  112. // 图片上传 start
  113. console.log("压缩前");
  114. let canvasWidth = v.image.width; //图片原始长宽
  115. let canvasHeight = v.image.height;
  116. let img = new Image();
  117. img.src = v.path;
  118. let canvas = document.createElement("canvas");
  119. let ctx = canvas.getContext("2d");
  120. canvas.width = canvasWidth;
  121. canvas.height = canvasHeight;
  122. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight);
  123. canvas.toBlob(
  124. (fileSrc) => {
  125. let tp = window.URL.createObjectURL(fileSrc);
  126. console.log("压缩后");
  127. n++;
  128. uni.uploadFile({
  129. url: pathUrl +
  130. "/common/common/uploadAttachment/nucleicAcidPhotos/" +
  131. res.nucleicAcidId +
  132. "/666",
  133. filePath: tp,
  134. name: "file",
  135. formData: {
  136. filename: v.name,
  137. },
  138. success: (uploadFileRes) => {
  139. console.log(uploadFileRes);
  140. if (--n === 0) {
  141. uni.hideLoading();
  142. uni.navigateTo({
  143. url: "../receiptpage/receiptpage",
  144. });
  145. }
  146. },
  147. fail: (err) => {
  148. n--;
  149. console.error(err);
  150. uni.hideLoading();
  151. uni.showToast({
  152. icon: "none",
  153. title: "上传失败",
  154. duration: 2000,
  155. });
  156. },
  157. });
  158. },
  159. "image/jpeg",
  160. 0.3
  161. );
  162. // 图片上传 end
  163. });
  164. } else {
  165. uni.hideLoading();
  166. uni.showToast({
  167. icon: "none",
  168. title: res.msg || "接口获取数据失败!",
  169. });
  170. }
  171. });
  172. },
  173. // 闭环工单-取消
  174. changeSpeCancel() {
  175. this.gotoFlag = true;
  176. this.changeSpeModels.disjunctor = false;
  177. },
  178. goBack() {
  179. uni.navigateTo({
  180. url: "../receiptpage/receiptpage",
  181. });
  182. },
  183. // 闭环工单
  184. closedLoop() {
  185. if (!this.gotoFlag) {
  186. return;
  187. }
  188. this.gotoFlag = false;
  189. this.changeSpeModels = {
  190. title: "提示",
  191. content: `您确定要闭环${this.nucleicAcidDto.BuildName}的关联工单吗,您可填写备注和图片`,
  192. disjunctor: true,
  193. };
  194. },
  195. //获取信息
  196. showNucleicAcid(qrcode) {
  197. uni.showLoading({
  198. title: "加载中",
  199. mask: true,
  200. });
  201. post("/api/showNucleicAcid", {
  202. code:qrcode,
  203. }).then((res) => {
  204. uni.hideLoading();
  205. if (res.status == 200) {
  206. this.nucleicAcidDto = res || {};
  207. console.log(this.nucleicAcidDto)
  208. } else {
  209. uni.showToast({
  210. icon: "none",
  211. title: res.msg || "接口获取数据失败!",
  212. });
  213. }
  214. });
  215. },
  216. },
  217. onShow() {
  218. this.gotoFlag = true;
  219. },
  220. onLoad(options) {
  221. console.log(options);
  222. this.options = options;
  223. let { qrcode } = options;
  224. qrcode && this.showNucleicAcid(qrcode);
  225. // #ifdef APP-PLUS
  226. webHandle("no", "app");
  227. // #endif
  228. // #ifdef H5
  229. webHandle("no", "wx");
  230. // #endif
  231. },
  232. };
  233. </script>
  234. <style lang="less" scoped>
  235. .pharmacyDetails {
  236. background-color: rgb(249, 250, 251);
  237. padding-top: 10%;
  238. margin-bottom: 100rpx;
  239. .pharmacyDetails_title {
  240. font-size: 46rpx;
  241. font-weight: 550;
  242. text-align: center;
  243. }
  244. .page_item_wrap {
  245. position: relative;
  246. margin-top: 32rpx;
  247. .page_item {
  248. margin-top: 16rpx;
  249. margin-bottom: 124rpx;
  250. background: #fff;
  251. border-radius: 8rpx;
  252. margin: 0 20rpx;
  253. border: 2rpx solid #e5e9ed;
  254. position: relative;
  255. overflow: hidden;
  256. padding: 0 16rpx;
  257. .L {
  258. width: 40rpx;
  259. height: 40rpx;
  260. border-radius: 50%;
  261. background: #f9fafb;
  262. position: absolute;
  263. left: -20rpx;
  264. top: 68rpx;
  265. border: 2rpx solid #e5e9ed;
  266. }
  267. .R {
  268. width: 40rpx;
  269. height: 40rpx;
  270. border-radius: 50%;
  271. background: #f9fafb;
  272. position: absolute;
  273. float: right;
  274. right: -20rpx;
  275. top: 68rpx;
  276. border: 2rpx solid #e5e9ed;
  277. }
  278. .page_item_top {
  279. height: 88rpx;
  280. border-bottom: 2rpx dashed #e5e9ed;
  281. padding: 0 16rpx;
  282. .page_item_top-inner {
  283. display: flex;
  284. justify-content: space-between;
  285. align-items: center;
  286. height: 100%;
  287. .page_item_top_L {
  288. .L_text {
  289. font-size: 32rpx;
  290. font-weight: 700;
  291. }
  292. }
  293. .page_item_top_R {
  294. font-size: 32rpx;
  295. .L_iocn {
  296. color: rgb(7, 134, 60);
  297. font-size: 36rpx;
  298. font-weight: 700;
  299. }
  300. }
  301. }
  302. }
  303. .page_item_cont {
  304. min-height: 180rpx;
  305. // max-height: 424rpx;
  306. padding: 0 16rpx;
  307. text-align: left;
  308. position: relative;
  309. .text_big {
  310. font-size: 32rpx;
  311. font-weight: 700;
  312. text {
  313. font-weight: 700;
  314. line-height: 1.5;
  315. }
  316. }
  317. .line {
  318. height: 20rpx;
  319. width: 2rpx;
  320. border-left: 2rpx solid #e5e9ed;
  321. position: absolute;
  322. top: 82rpx;
  323. left: 40rpx;
  324. }
  325. .page_item_cont_T {
  326. padding-top: 28rpx;
  327. font-size: 28rpx;
  328. .page_item_cont_title {
  329. height: 100%;
  330. font-size: 32rpx;
  331. display: flex;
  332. justify-content: space-between;
  333. }
  334. }
  335. .page_item_cont_B {
  336. padding-top: 28rpx;
  337. margin-bottom: 28rpx;
  338. .page_item_cont_title {
  339. font-size: 32rpx;
  340. display: flex;
  341. justify-content: space-between;
  342. align-items: center;
  343. }
  344. }
  345. .page_item_cont_C {
  346. margin-bottom: 28rpx;
  347. .page_item_cont_title_C {
  348. font-size: 32rpx;
  349. display: flex;
  350. justify-content: space-between;
  351. align-items: center;
  352. }
  353. }
  354. #infos {
  355. display: none;
  356. }
  357. }
  358. }
  359. .L-l {
  360. width: 2rpx;
  361. height: 40rpx;
  362. background: #f9fafb;
  363. position: absolute;
  364. left: 20rpx;
  365. top: 72rpx;
  366. }
  367. .R-l {
  368. width: 2rpx;
  369. height: 40rpx;
  370. background: #f9fafb;
  371. position: absolute;
  372. right: 20rpx;
  373. top: 72rpx;
  374. }
  375. }
  376. .cube-toolbar-item {
  377. width: 710rpx;
  378. height: 68rpx;
  379. line-height: 68rpx;
  380. position: fixed;
  381. left: 20rpx;
  382. bottom: 160rpx;
  383. border-radius: 8rpx;
  384. background: linear-gradient(to right, #72c172, #3bb197);
  385. font-size: 36rpx;
  386. color: #fff;
  387. text-align: center;
  388. }
  389. .btn-wrap {
  390. display: flex;
  391. justify-content: space-between;
  392. position: fixed;
  393. left: 20rpx;
  394. bottom: 160rpx;
  395. }
  396. .cube-toolbar-item1 {
  397. width: 350rpx;
  398. height: 68rpx;
  399. line-height: 68rpx;
  400. border-radius: 8rpx;
  401. margin: 0 5rpx;
  402. background: linear-gradient(to right, #72c172, #3bb197);
  403. font-size: 36rpx;
  404. color: #fff;
  405. text-align: center;
  406. }
  407. .foot_btn {
  408. background-color: #fff;
  409. position: fixed;
  410. bottom: 0;
  411. width: 100%;
  412. line-height: 88rpx;
  413. height: 100rpx;
  414. margin: 40rpx 16rpx 0;
  415. display: flex;
  416. justify-content: center;
  417. .btn3 {
  418. flex: 1;
  419. height: 88rpx;
  420. background-image: linear-gradient(to right, #72c172, #3bb197);
  421. color: #fff;
  422. border-radius: 8rpx;
  423. font-size: 32rpx;
  424. margin-top: 16rpx;
  425. margin-right: 16rpx;
  426. text-align: center;
  427. &:last-of-type {
  428. margin-right: 0;
  429. }
  430. }
  431. }
  432. }
  433. </style>