quiltWashingSendHandover.vue 9.8 KB

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