medicalWasteBindCheck.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  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. <text>回收医废科室为“{{queryObj.deptName}}”,总重量为{{weightTotal}}kg,{{countTotal}}袋医废。</text>
  9. <text>请扫描人员工牌或科室码交接。</text>
  10. </view>
  11. </view>
  12. <view class="Scanning_cont">
  13. <view class="Scanning_cont_head">
  14. <view>医废类型</view>
  15. <view>医废袋数</view>
  16. <view>医废重量</view>
  17. </view>
  18. <scroll-view scroll-y style="flex: 1;min-height: 0;">
  19. <view class="Scanning_cont_list" v-for="item in infoList" :key="item.id">
  20. <view>{{item.name}}</view>
  21. <view>{{item.wasteCount}}袋</view>
  22. <view>{{item.wasteWeight}}kg</view>
  23. </view>
  24. </scroll-view>
  25. </view>
  26. <view class="foot_btn">
  27. <view class="btn" @click="scanDeptOrUser()"> 扫一扫 </view>
  28. </view>
  29. <!-- 弹窗 -->
  30. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content" @know="know1" :operate="models1.operate"></showModel>
  31. </view>
  32. </template>
  33. <script>
  34. import {
  35. get,
  36. post,
  37. SM,
  38. webHandle
  39. } from "../../../http/http.js";
  40. import Big from 'big.js';
  41. export default {
  42. data() {
  43. return {
  44. countTotal: 0,
  45. weightTotal: 0,
  46. SMFlag: true,
  47. infoList: [],
  48. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  49. queryObj: {}, //路由传递过来的数据
  50. // 弹窗model
  51. models1: {
  52. disjunctor: false,
  53. },
  54. };
  55. },
  56. onShow() {
  57. this.SMFlag = true;
  58. },
  59. methods: {
  60. // 扫科室或人
  61. scanDeptOrUser() {
  62. if (!this.SMFlag) {
  63. return;
  64. }
  65. this.SMFlag = false;
  66. SM().then((content) => {
  67. uni.showLoading({
  68. title: "加载中",
  69. mask: true,
  70. });
  71. //检验二维码的有效性(扫码前必须验证)
  72. post("/dept/scanning", {
  73. content,
  74. })
  75. .then((result) => {
  76. this.SMFlag = true;
  77. // 200检测通过,201没有有效期也通过。
  78. if (result.state == 200 || result.state == 201) {
  79. let data = {
  80. code: result.code, //二维码
  81. };
  82. post("/medicalWaste/checkComplete", {
  83. code: result.code,
  84. deptId: +this.queryObj.deptId,
  85. hosId: this.hosId,
  86. clinicalWasteTypeIds: this.infoList.map(v => v.id).toString(),
  87. })
  88. .then((res) => {
  89. uni.hideLoading();
  90. if (res.status == 200 && res.data) {
  91. this.showModel1(res.data, res.type);
  92. } else {
  93. uni.showToast({
  94. icon: "none",
  95. title: res.msg || "接口获取数据失败!",
  96. });
  97. }
  98. });
  99. } else {
  100. uni.hideLoading();
  101. uni.showToast({
  102. icon: "none",
  103. title: result.info || "接口获取数据失败!",
  104. });
  105. }
  106. })
  107. }).catch(err => {
  108. this.SMFlag = true;
  109. });
  110. },
  111. getInfo(){
  112. uni.showLoading({
  113. title: "加载中",
  114. mask: true,
  115. });
  116. post("/medicalWaste/checkComplete", {
  117. deptId: +this.queryObj.deptId,
  118. hosId: this.hosId
  119. }).then((result) => {
  120. uni.hideLoading();
  121. if (result.status == 200) {
  122. this.infoList = result.data || [];
  123. this.countTotal = this.infoList.reduce((pre, cur) => pre + cur.wasteCount, 0);
  124. this.weightTotal = this.infoList.reduce((pre, cur) => Big(pre).plus(cur.wasteWeight), 0);
  125. } else {
  126. uni.showToast({
  127. icon: "none",
  128. title: result.msg || "接口获取数据失败!",
  129. });
  130. }
  131. });
  132. },
  133. //知道了
  134. know1() {
  135. this.models1.disjunctor = false;
  136. uni.navigateTo({
  137. url: `/pages/receiptpage/receiptpage`,
  138. });
  139. },
  140. // 被服送回弹窗
  141. showModel1(data, type) {
  142. let content = '';
  143. if(type === 'dept'){
  144. content = `您与<strong class="red">${data.dept}</strong>成功交接,总重量为<strong class="red">${this.weightTotal}kg</strong>,<strong class="red">${this.countTotal}袋</strong>医废`;
  145. }else if(type === 'user'){
  146. content = `您与<strong class="red">${data.name}</strong>,<strong class="red">${data.dept?data.dept.dept:''}</strong>成功交接,总重量为<strong class="red">${this.weightTotal}kg</strong>,<strong class="red">${this.countTotal}袋</strong>医废`;
  147. }
  148. this.models1 = {
  149. disjunctor: true,
  150. title: "提示",
  151. content,
  152. icon: "warn",
  153. operate: {
  154. know: "知道了",
  155. },
  156. };
  157. },
  158. },
  159. onLoad(options) {
  160. console.log(options, "result");
  161. this.queryObj = options;
  162. this.getInfo();
  163. // #ifdef APP-PLUS
  164. webHandle("no", "app");
  165. // #endif
  166. // #ifdef H5
  167. webHandle("no", "wx");
  168. // #endif
  169. },
  170. };
  171. </script>
  172. <style lang="less" scoped>
  173. .Scanning_Result {
  174. height: 100vh;
  175. display: flex;
  176. flex-direction: column;
  177. background-color: #fff;
  178. .yf /deep/ .uni-input-input[disabled]{
  179. text-overflow: ellipsis;
  180. }
  181. .Scanning_top {
  182. flex-shrink: 0;
  183. .Scanning_top_icon {
  184. padding-top: 26rpx;
  185. display: flex;
  186. flex-direction: column;
  187. justify-content: center;
  188. align-items: center;
  189. .cubeic-ok {
  190. font-size: 100rpx;
  191. color: #35b34a;
  192. }
  193. .text1 {
  194. font-size: 40rpx;
  195. font-weight: bold;
  196. }
  197. }
  198. .Scanning_top_text{
  199. font-size: 34rpx;
  200. font-weight: bold;
  201. padding: 26rpx 32rpx 38rpx 32rpx;
  202. display: flex;
  203. flex-direction: column;
  204. line-height: 1.5;
  205. text{
  206. word-break: break-all;
  207. }
  208. }
  209. }
  210. .Scanning_cont {
  211. flex: 1;
  212. min-height: 0;
  213. display: flex;
  214. flex-direction: column;
  215. width: 710rpx;
  216. margin: 0 20rpx;
  217. padding: 6rpx;
  218. font-size: 28rpx;
  219. line-height: 1;
  220. .Scanning_cont_head{
  221. font-weight: bold;
  222. height: 92rpx;
  223. background: #FBFCFE;
  224. box-shadow: 0rpx 3rpx 6rpx 1rpx rgba(0,0,0,0.16);
  225. display: flex;
  226. align-items: center;
  227. font-size: 32rpx;
  228. view{
  229. flex: 1;
  230. flex-shrink: 0;
  231. text-align: center;
  232. text-overflow: ellipsis;
  233. overflow: hidden;
  234. white-space: nowrap;
  235. }
  236. }
  237. .Scanning_cont_list{
  238. font-weight: bold;
  239. padding: 27rpx 0;
  240. border-bottom: 1rpx solid #D9D9D9;
  241. display: flex;
  242. align-items: center;
  243. font-size: 32rpx;
  244. view{
  245. flex: 1;
  246. flex-shrink: 0;
  247. text-align: center;
  248. text-overflow: ellipsis;
  249. overflow: hidden;
  250. white-space: nowrap;
  251. line-height: normal;
  252. }
  253. }
  254. }
  255. .foot_btn {
  256. margin: 57rpx 30rpx 10rpx;
  257. flex-shrink: 0;
  258. display: flex;
  259. justify-content: center;
  260. .btn {
  261. height: 88rpx;
  262. line-height: 1;
  263. display: flex;
  264. justify-content: center;
  265. align-items: center;
  266. flex: 1;
  267. margin-right: 32rpx;
  268. background-image: linear-gradient(to right, #72c172, #3bb197);
  269. color: #fff;
  270. border-radius: 8rpx;
  271. font-size: 34rpx;
  272. font-weight: bold;
  273. &:last-of-type{
  274. margin-right: 0;
  275. }
  276. }
  277. }
  278. }
  279. </style>