quiltWashingSendsendHandover.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  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>领取,以下为前<strong class="red">{{differenceInDays}}</strong>天内<strong class="red">{{batchNum}}</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. import dayjs from 'dayjs';
  69. export default {
  70. data() {
  71. return {
  72. batchIds: '',
  73. startTime: '',
  74. endTime: '',
  75. differenceInDays: '',
  76. batchNum: '',
  77. SMFlag: true,
  78. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  79. queryObj: {}, //路由传递过来的数据
  80. dataList: [],
  81. parentIndex: 0,
  82. // 弹窗model
  83. models1: {
  84. disjunctor: false,
  85. },
  86. dept: null,
  87. handover: null,
  88. };
  89. },
  90. methods: {
  91. clickRow(data){
  92. uni.navigateTo({
  93. url: `../quiltWashingException/quiltWashingException?clothesTypeId=${data.id}&clothesTypeName=${data.name}&batchId=${data.clothesWashingDTO.batchId}&relatedDept=${data.clothesWashingDTO.relatedDept}`,
  94. });
  95. },
  96. //确定
  97. ok1() {
  98. this.models1.disjunctor = false;
  99. // let bussList = this.dataList.map(v => v.children).flat().map(v => v.clothesWashingDTO).map(v => ({...v, exception: 0}));
  100. uni.showLoading({
  101. title: "加载中",
  102. mask: true,
  103. });
  104. post("/transflow/checkComplete", {
  105. type: 'clothingSend',
  106. receiveAndHandover: true,
  107. deptId: this.dept ? this.dept.id : undefined,
  108. handoverId: this.handover ? this.handover.id : undefined,
  109. hosId: this.hosId,
  110. orderId: 0,
  111. // bussList,
  112. index: this.dataList[0].children[0].clothesWashingDTO.index,
  113. batchIds: this.batchIds,
  114. }).then((res) => {
  115. uni.hideLoading();
  116. if (res.data && res.data.state == 200) {
  117. uni.showModal({
  118. title: "提示",
  119. content: "操作成功",
  120. showCancel: false,
  121. success: (result) => {
  122. if (result.confirm) {
  123. console.log("用户点击确定");
  124. uni.navigateTo({
  125. url: `../../receiptpage/receiptpage`,
  126. });
  127. }
  128. },
  129. });
  130. }else{
  131. uni.showToast({
  132. icon: "none",
  133. title: res.data ? res.data.msg : "接口获取数据失败!",
  134. });
  135. }
  136. });
  137. },
  138. //取消
  139. cancel1() {
  140. this.models1.disjunctor = false;
  141. },
  142. // 被服送回弹窗
  143. showModel1() {
  144. let bussList = this.dataList.map(v => v.children).flat();
  145. let num = bussList.reduce((prev, current) => prev + current.clothesWashingDTO.sendBackNum, 0);
  146. let content = `您确认与<strong class="red">${this.handover ? this.handover.name : ''}</strong>交接,<strong class="red">${dayjs(this.startTime).format('YYYY年MM月DD日')}</strong>至<strong class="red">${dayjs(this.endTime,).format('YYYY年MM月DD日')}</strong>范围内<strong class="red">${this.batchNum}</strong>批次<strong class="red">${num}</strong>件被服?`;
  147. this.models1 = {
  148. disjunctor: true,
  149. title: "提示",
  150. content,
  151. icon: "warn",
  152. operate: {
  153. ok: "确定",
  154. cancel: "取消",
  155. },
  156. };
  157. },
  158. goBack(){
  159. uni.navigateBack();
  160. },
  161. onClick(){
  162. this.showModel1();
  163. },
  164. getInfo(){
  165. uni.showLoading({
  166. title: "加载中",
  167. mask: true,
  168. });
  169. post("/transflow/extra", {
  170. type: 'clothingSend',
  171. receiveAndHandover: true ,
  172. code: this.queryObj.quiltCode
  173. }).then((result) => {
  174. uni.hideLoading();
  175. if (result.data && result.data.state == 200) {
  176. this.dept = result.data.dept;
  177. this.batchNum = result.data.batchNum;
  178. this.startTime = result.data.startTime;
  179. this.endTime = result.data.endTime;
  180. this.batchIds = result.data.batchIds;
  181. this.differenceInDays = dayjs(result.data.endTime).diff(result.data.startTime, 'day');
  182. this.handover = result.data.handover;
  183. let dataList = result.data.treeList || [];
  184. dataList.forEach(v => {
  185. v.children = v.children.sort((a, b) => b.clothesWashingDTO.exception - a.clothesWashingDTO.exception)
  186. })
  187. console.log(dataList);
  188. this.dataList = dataList.slice(0, 3);
  189. } else {
  190. uni.showToast({
  191. icon: "none",
  192. title: result.data ? result.data.msg : "接口获取数据失败!",
  193. });
  194. }
  195. });
  196. },
  197. },
  198. onLoad(options) {
  199. console.log(options, "result");
  200. this.queryObj = options;
  201. this.getInfo();
  202. // #ifdef APP-PLUS
  203. webHandle("no", "app");
  204. // #endif
  205. // #ifdef H5
  206. webHandle("no", "wx");
  207. // #endif
  208. },
  209. };
  210. </script>
  211. <style lang="less" scoped>
  212. .Scanning_Result {
  213. height: 100vh;
  214. display: flex;
  215. flex-direction: column;
  216. background-color: #fafbfd;
  217. .Scanning_top {
  218. flex-shrink: 0;
  219. .Scanning_top_icon {
  220. padding-top: 26rpx;
  221. display: flex;
  222. justify-content: center;
  223. align-items: center;
  224. .cubeic-ok {
  225. font-size: 58rpx;
  226. color: #35b34a;
  227. }
  228. .text1 {
  229. font-size: 40rpx;
  230. font-weight: bold;
  231. }
  232. }
  233. .Scanning_top_text{
  234. text-align: center;
  235. font-size: 30rpx;
  236. font-weight: bold;
  237. padding: 8rpx 0 23rpx 0;
  238. }
  239. }
  240. .Scanning_cont {
  241. flex: 1;
  242. min-height: 0;
  243. display: flex;
  244. flex-direction: column;
  245. width: 710rpx;
  246. margin: 0 20rpx;
  247. background-color: #fff;
  248. .Scanning_cont_head{
  249. flex-shrink: 0;
  250. height: 78rpx;
  251. display: flex;
  252. border: 1rpx solid #EEEEEE;
  253. .Scanning_cont_head_item{
  254. flex: 1;
  255. font-size: 32rpx;
  256. font-weight: bold;
  257. display: flex;
  258. justify-content: center;
  259. align-items: center;
  260. position: relative;
  261. &.active{
  262. color: #49B856;
  263. &::before{
  264. content: '';
  265. width: 70rpx;
  266. height: 10rpx;
  267. background-color: #49B856;
  268. position: absolute;
  269. left: 50%;
  270. bottom: 0;
  271. transform: translateX(-50%);
  272. border-radius: 6rpx;
  273. }
  274. }
  275. &::after{
  276. content: '';
  277. width: 2rpx;
  278. height: 44rpx;
  279. background-color: #D1D1D1;
  280. position: absolute;
  281. right: 0;
  282. top: 50%;
  283. transform: translateY(-50%);
  284. }
  285. &:last-of-type::after{
  286. opacity: 0;
  287. }
  288. }
  289. }
  290. .Scanning_cont_list{
  291. flex: 1;
  292. min-height: 0;
  293. display: flex;
  294. flex-direction: column;
  295. .Scanning_cont_list_scroll{
  296. flex: 1;
  297. min-height: 0;
  298. }
  299. .Scanning_cont_list_item{
  300. height: 70rpx;
  301. display: flex;
  302. align-items: center;
  303. font-size: 28rpx;
  304. border: 1rpx solid #272727;
  305. border-top: none;
  306. &.Scanning_cont_list_head{
  307. font-weight: bold;
  308. font-size: 28rpx;
  309. border-top: 1rpx solid #272727;
  310. flex-shrink: 0;
  311. }
  312. .name,
  313. .value{
  314. padding: 0 40rpx;
  315. flex: 1;
  316. display: flex;
  317. align-items: center;
  318. height: 100%;
  319. border-right: 1rpx solid #272727;
  320. }
  321. .value {
  322. flex: 1;
  323. view{
  324. width: 4em;
  325. text-align: center;
  326. }
  327. }
  328. }
  329. }
  330. }
  331. .foot_btn {
  332. margin: 57rpx 30rpx 0;
  333. flex-shrink: 0;
  334. line-height: 88rpx;
  335. display: flex;
  336. justify-content: center;
  337. .btn {
  338. height: 88rpx;
  339. flex: 1;
  340. margin-right: 1%;
  341. background-image: linear-gradient(to right, #72c172, #3bb197);
  342. color: #fff;
  343. border-radius: 8rpx;
  344. font-size: 34rpx;
  345. font-weight: bold;
  346. text-align: center;
  347. &:last-of-type{
  348. margin-right: 0;
  349. }
  350. }
  351. }
  352. }
  353. </style>