quiltWashingSendsendHandover.vue 9.9 KB

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