medicalWasteBindCheck.vue 8.1 KB

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