medicalWasteSignIn.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  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 class="text1"> 签到成功 </view>
  7. </view>
  8. <view class="Scanning_top_text">
  9. 您已到达{{queryObj.deptName}},请确认以下信息
  10. </view>
  11. </view>
  12. <view class="Scanning_cont">
  13. <view class="Scanning_cont_head">
  14. <view class="Scanning_cont_head_item" :class="{active: parentIndex == i}" v-for="(item, i) in tabNames" :key="item.id" @click="tabClick(i)">
  15. {{item.name}}
  16. </view>
  17. </view>
  18. <view class="Scanning_cont_list">
  19. <view class="Scanning_cont_list_item Scanning_cont_list_head">
  20. <view class="name">
  21. {{parentIndex === 0 ? '科室名称' : '类型名称'}}<text class="red">({{nameTotal}})</text>
  22. </view>
  23. <view class="value">
  24. <view>
  25. 袋数<text class="red">({{countTotal}})</text>
  26. </view>
  27. </view>
  28. <view class="value">
  29. <view>
  30. 重量<text class="red">({{weightTotal}})</text>
  31. </view>
  32. </view>
  33. </view>
  34. <scroll-view scroll-y="true" class="Scanning_cont_list_scroll" v-if="dataList[parentIndex]">
  35. <view class="Scanning_cont_list_item" @click="clickRow(item, parentIndex === 0 ? 'dept' : 'waste')" v-for="(item, j) in dataList[parentIndex]" :key="j">
  36. <view class="name">
  37. {{item.name}}
  38. </view>
  39. <view class="value">
  40. <view>
  41. {{item.wasteCount}}
  42. </view>
  43. </view>
  44. <view class="value">
  45. <view>
  46. {{item.wasteWeight}}
  47. </view>
  48. </view>
  49. </view>
  50. </scroll-view>
  51. </view>
  52. </view>
  53. <view class="foot_btn">
  54. <view class="btn" @click="goBack()"> 取消 </view>
  55. <view class="btn" @click="onClick()" v-if="gdIds"> 确认交接 </view>
  56. </view>
  57. <!-- 弹窗 -->
  58. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  59. @ok="ok1" @cancel="cancel1" :operate="models1.operate"></showModel>
  60. </view>
  61. </template>
  62. <script>
  63. import {
  64. get,
  65. post,
  66. SM,
  67. webHandle
  68. } from "../../../http/http.js";
  69. import Big from 'big.js';
  70. export default {
  71. data() {
  72. return {
  73. gdIds: '',
  74. tabNames: [
  75. {id: -1, name: '科室交接'},
  76. {id: -2, name: '医废类型交接'},
  77. ],
  78. SMFlag: true,
  79. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  80. queryObj: {}, //路由传递过来的数据
  81. dataList: [[],[]],
  82. parentIndex: 0,
  83. nameTotal: 0,
  84. countTotal: 0,
  85. weightTotal: 0,
  86. // 弹窗model
  87. models1: {
  88. disjunctor: false,
  89. },
  90. };
  91. },
  92. methods: {
  93. //确定
  94. ok1() {
  95. this.models1.disjunctor = false;
  96. uni.showLoading({
  97. title: "加载中",
  98. mask: true,
  99. });
  100. post("/medicalWaste/complete", {
  101. endDeptId: +this.queryObj.deptId,
  102. gdIds: this.gdIds,
  103. hosId: this.hosId,
  104. }).then((res) => {
  105. uni.hideLoading();
  106. if (res.status == 200) {
  107. uni.showModal({
  108. title: "提示",
  109. content: "操作成功",
  110. showCancel: false,
  111. success: (result) => {
  112. if (result.confirm) {
  113. console.log("用户点击确定");
  114. uni.navigateTo({
  115. url: `/pages/receiptpage/receiptpage`,
  116. });
  117. }
  118. },
  119. });
  120. }else{
  121. uni.showToast({
  122. icon: "none",
  123. title: res.msg || "接口获取数据失败!",
  124. });
  125. }
  126. });
  127. },
  128. //取消
  129. cancel1() {
  130. this.models1.disjunctor = false;
  131. },
  132. // 被服回收弹窗
  133. showModel1() {
  134. this.models1 = {
  135. disjunctor: true,
  136. title: "提示",
  137. content: `您确认交接吗?`,
  138. icon: "warn",
  139. operate: {
  140. ok: "确定",
  141. cancel: "取消",
  142. },
  143. };
  144. },
  145. tabClick(i){
  146. this.parentIndex = i;
  147. this.nameTotal = this.dataList[i].length;
  148. this.countTotal = this.dataList[i].reduce((pre, cur) => Big(pre).plus(cur.wasteCount), 0);
  149. this.weightTotal = this.dataList[i].reduce((pre, cur) => Big(pre).plus(cur.wasteWeight), 0);
  150. },
  151. goBack(){
  152. uni.navigateBack();
  153. },
  154. onClick(){
  155. this.showModel1();
  156. },
  157. clickRow(data, type){
  158. uni.navigateTo({
  159. url: `/pages/medicalWaste/medicalWasteSignInList/medicalWasteSignInList?id=${data.id}&type=${type}`,
  160. });
  161. },
  162. getInfo(){
  163. uni.showLoading({
  164. title: "加载中",
  165. mask: true,
  166. });
  167. post("/medicalWaste/complete", {
  168. code: this.queryObj.code,
  169. hosId: this.hosId,
  170. }).then((result) => {
  171. uni.hideLoading();
  172. if (result.status == 200) {
  173. this.$set(this.dataList,'0',result.deptData || []);
  174. this.$set(this.dataList,'1',result.wasteTypeData || []);
  175. this.gdIds = result.gdIds;
  176. this.nameTotal = this.dataList[this.parentIndex].length;
  177. this.countTotal = this.dataList[this.parentIndex].reduce((pre, cur) => Big(pre).plus(cur.wasteCount), 0);
  178. this.weightTotal = this.dataList[this.parentIndex].reduce((pre, cur) => Big(pre).plus(cur.wasteWeight), 0);
  179. } else {
  180. uni.showToast({
  181. icon: "none",
  182. title: result.msg || "接口获取数据失败!",
  183. });
  184. }
  185. });
  186. },
  187. },
  188. onLoad(options) {
  189. console.log(options, "result");
  190. this.queryObj = options;
  191. this.getInfo();
  192. // #ifdef APP-PLUS
  193. webHandle("no", "app");
  194. // #endif
  195. // #ifdef H5
  196. webHandle("no", "wx");
  197. // #endif
  198. },
  199. };
  200. </script>
  201. <style lang="less" scoped>
  202. .Scanning_Result {
  203. height: 100vh;
  204. display: flex;
  205. flex-direction: column;
  206. background-color: #fafbfd;
  207. .Scanning_top {
  208. flex-shrink: 0;
  209. .Scanning_top_icon {
  210. padding-top: 26rpx;
  211. display: flex;
  212. justify-content: center;
  213. align-items: center;
  214. .cubeic-ok {
  215. font-size: 58rpx;
  216. color: #35b34a;
  217. }
  218. .text1 {
  219. font-size: 48rpx;
  220. font-weight: bold;
  221. }
  222. }
  223. .Scanning_top_text{
  224. text-align: center;
  225. font-size: 28rpx;
  226. font-weight: bold;
  227. padding: 8rpx 0 23rpx 0;
  228. }
  229. }
  230. .Scanning_cont {
  231. flex: 1;
  232. min-height: 0;
  233. display: flex;
  234. flex-direction: column;
  235. width: 710rpx;
  236. margin: 0 20rpx;
  237. background-color: #fff;
  238. .Scanning_cont_head{
  239. flex-shrink: 0;
  240. height: 78rpx;
  241. display: flex;
  242. border-top: 1rpx solid #EEEEEE;
  243. border-bottom: 1rpx solid #EEEEEE;
  244. .Scanning_cont_head_item{
  245. flex: 1;
  246. font-size: 32rpx;
  247. font-weight: bold;
  248. display: flex;
  249. justify-content: center;
  250. align-items: center;
  251. position: relative;
  252. &.active{
  253. color: #49B856;
  254. &::before{
  255. content: '';
  256. width: 70rpx;
  257. height: 10rpx;
  258. background-color: #49B856;
  259. position: absolute;
  260. left: 50%;
  261. bottom: 8rpx;
  262. transform: translateX(-50%);
  263. border-radius: 6rpx;
  264. }
  265. }
  266. &::after{
  267. content: '';
  268. width: 2rpx;
  269. height: 44rpx;
  270. background-color: #D1D1D1;
  271. position: absolute;
  272. right: 0;
  273. top: 50%;
  274. transform: translateY(-50%);
  275. }
  276. &:last-of-type::after{
  277. opacity: 0;
  278. }
  279. }
  280. }
  281. .Scanning_cont_list{
  282. flex: 1;
  283. min-height: 0;
  284. display: flex;
  285. flex-direction: column;
  286. .Scanning_cont_list_scroll{
  287. flex: 1;
  288. min-height: 0;
  289. }
  290. .Scanning_cont_list_item{
  291. height: 70rpx;
  292. display: flex;
  293. align-items: center;
  294. font-size: 28rpx;
  295. border-bottom: 1rpx solid #ccc;
  296. &.Scanning_cont_list_head{
  297. font-weight: bold;
  298. font-size: 28rpx;
  299. border-bottom: none;
  300. flex-shrink: 0;
  301. }
  302. .name,
  303. .value{
  304. padding: 0 10rpx;
  305. flex: 1;
  306. text-align: center;
  307. line-height: 70rpx;
  308. height: 100%;
  309. // border-right: 1rpx solid #272727;
  310. .red{
  311. color: red;
  312. }
  313. }
  314. .value {
  315. view{
  316. // width: 4em;
  317. text-align: center;
  318. }
  319. }
  320. }
  321. }
  322. }
  323. .foot_btn {
  324. margin: 57rpx 20rpx 10rpx;
  325. flex-shrink: 0;
  326. display: flex;
  327. justify-content: center;
  328. .btn {
  329. height: 88rpx;
  330. line-height: 1;
  331. display: flex;
  332. justify-content: center;
  333. align-items: center;
  334. flex: 1;
  335. margin-right: 32rpx;
  336. background-image: linear-gradient(to right, #72c172, #3bb197);
  337. color: #fff;
  338. border-radius: 8rpx;
  339. font-size: 34rpx;
  340. font-weight: bold;
  341. &:last-of-type{
  342. margin-right: 0;
  343. }
  344. }
  345. }
  346. }
  347. </style>