medicalWasteBindCheck.vue 8.8 KB

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