quiltWashingGetSignIn.vue 9.5 KB

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