quiltWashingGetSignIn.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  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. <!-- 弹窗 -->
  53. <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
  54. @ok="ok2" @cancel="cancel2" :operate="models2.operate"></showModel>
  55. </view>
  56. </template>
  57. <script>
  58. import {
  59. get,
  60. post,
  61. SM,
  62. webHandle
  63. } from "../../../http/http.js";
  64. export default {
  65. data() {
  66. return {
  67. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  68. queryObj: {}, //路由传递过来的数据
  69. // 填写数字弹窗model
  70. numModels: {
  71. disjunctor: false,
  72. },
  73. dataList: [],
  74. parentIndex: 0,
  75. coopData: {},
  76. // 弹窗model
  77. models1: {
  78. disjunctor: false,
  79. },
  80. // 弹窗model
  81. models2: {
  82. disjunctor: false,
  83. },
  84. };
  85. },
  86. methods: {
  87. //确定
  88. ok2() {
  89. this.models2.disjunctor = false;
  90. let bussList = this.dataList.map(v => v.children).flat().map(v => v.clothesWashingDTO).map(v => ({...v, exception: 0, recyclingNum: 0,}));
  91. uni.showLoading({
  92. title: "加载中",
  93. mask: true,
  94. });
  95. post("/transflow/createOrTakeOrder", {
  96. type: 'clothingGet',
  97. id: 0,
  98. startDeptId: this.queryObj.startDeptId,
  99. hosId: this.hosId,
  100. bussList,
  101. orderId: this.queryObj.orderId,
  102. }).then((res) => {
  103. uni.hideLoading();
  104. if (res.state == 200) {
  105. uni.navigateTo({
  106. url: `../../receiptpage/receiptpage`,
  107. });
  108. }else{
  109. uni.showToast({
  110. icon: "none",
  111. title: res.msg || "接口获取数据失败!",
  112. });
  113. }
  114. });
  115. },
  116. //取消
  117. cancel2() {
  118. this.models2.disjunctor = false;
  119. },
  120. // 弹窗
  121. showModel2() {
  122. this.models2 = {
  123. disjunctor: true,
  124. title: "提示",
  125. content: `<strong class="red">${this.queryObj.startDeptName}</strong>无需填写回收数量,您确认吗?`,
  126. icon: "warn",
  127. operate: {
  128. ok: "确定",
  129. cancel: "取消",
  130. },
  131. };
  132. },
  133. //确定
  134. ok1() {
  135. this.models1.disjunctor = false;
  136. let bussList = this.dataList.map(v => v.children).flat().map(v => v.clothesWashingDTO).map(v => ({...v, exception: 0}));
  137. uni.showLoading({
  138. title: "加载中",
  139. mask: true,
  140. });
  141. post("/transflow/createOrTakeOrder", {
  142. type: 'clothingGet',
  143. id: 0,
  144. startDeptId: this.queryObj.startDeptId,
  145. hosId: this.hosId,
  146. bussList,
  147. orderId: this.queryObj.orderId,
  148. }).then((res) => {
  149. uni.hideLoading();
  150. if (res.state == 200) {
  151. uni.navigateTo({
  152. url: `../../receiptpage/receiptpage`,
  153. });
  154. }else{
  155. uni.showToast({
  156. icon: "none",
  157. title: res.msg || "接口获取数据失败!",
  158. });
  159. }
  160. });
  161. },
  162. //取消
  163. cancel1() {
  164. this.models1.disjunctor = false;
  165. },
  166. // 被服回收弹窗
  167. showModel1() {
  168. let bussList = this.dataList.map(v => v.children).flat();
  169. let num = bussList.reduce((prev, current) => prev + current.clothesWashingDTO.recyclingNum, 0);
  170. let content = '';
  171. if(this.queryObj.name){
  172. 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>,您确认交接吗?`;
  173. }else{
  174. content = `<strong class="red">${this.queryObj.startDeptName}</strong>已交接<strong class="red">${num}件</strong>被服,您确认交接吗?`;
  175. }
  176. this.models1 = {
  177. disjunctor: true,
  178. title: "提示",
  179. content,
  180. icon: "warn",
  181. operate: {
  182. ok: "确定",
  183. cancel: "取消",
  184. },
  185. };
  186. },
  187. // 填写数量-确认
  188. numOk(data) {
  189. console.log(data);
  190. this.numModels.disjunctor = false;
  191. this.updateNum(data);
  192. },
  193. // 填写数量-取消
  194. numCancel() {
  195. this.numModels.disjunctor = false;
  196. },
  197. onClick(){
  198. this.showModel1();
  199. },
  200. clickRow(data){
  201. this.coopData = data;
  202. this.numModels = {
  203. disjunctor: true,
  204. content: `请输入被服数量`,
  205. dataName: data.name,
  206. };
  207. },
  208. updateNum(data){
  209. this.dataList[this.parentIndex].children.forEach(v => {
  210. if(v.id == this.coopData.id){
  211. v.clothesWashingDTO && (v.clothesWashingDTO.recyclingNum = data.num);
  212. }
  213. })
  214. },
  215. getInfo(){
  216. uni.showLoading({
  217. title: "加载中",
  218. mask: true,
  219. });
  220. post("/transflow/scanInfo", {
  221. type: 'clothingGet',
  222. hosId: this.hosId,
  223. startDeptId: this.queryObj.startDeptId,
  224. code: this.queryObj.quiltCode,
  225. orderId: this.queryObj.orderId,
  226. }).then((result) => {
  227. uni.hideLoading();
  228. if (result.state == 200) {
  229. let dataList = result.data.treeList || [];
  230. this.dataList = dataList.slice(0, 3);
  231. } else {
  232. uni.showToast({
  233. icon: "none",
  234. title: result.msg || "接口获取数据失败!",
  235. });
  236. }
  237. });
  238. },
  239. getNoFillInQuantityIds(){
  240. uni.showLoading({
  241. title: "加载中",
  242. mask: true,
  243. });
  244. post("/simple/data/fetchDataList/taskTypeConfig", {
  245. "idx": 0,
  246. "sum": 10,
  247. "taskTypeConfig": {
  248. "taskTypeDTO": {
  249. "hosId": {
  250. "id": this.hosId
  251. },
  252. "ordinaryField": {
  253. "key": "ordinary_field",
  254. "value": "clothingGet"
  255. }
  256. }
  257. }
  258. }).then((result) => {
  259. uni.hideLoading();
  260. if (result.status == 200) {
  261. let dataList = result.list || [];
  262. if(dataList.length){
  263. let flag = dataList[0].noFillInQuantityIds.split(',').includes(this.queryObj.startDeptId);
  264. if(flag){
  265. this.showModel2();
  266. }
  267. }
  268. } else {
  269. uni.showToast({
  270. icon: "none",
  271. title: result.msg || "接口获取数据失败!",
  272. });
  273. }
  274. });
  275. },
  276. },
  277. onLoad(options) {
  278. console.log(options, "result");
  279. this.queryObj = options;
  280. this.getInfo();
  281. this.getNoFillInQuantityIds();
  282. // #ifdef APP-PLUS
  283. webHandle("no", "app");
  284. // #endif
  285. // #ifdef H5
  286. webHandle("no", "wx");
  287. // #endif
  288. },
  289. };
  290. </script>
  291. <style lang="less" scoped>
  292. .Scanning_Result {
  293. height: 100vh;
  294. display: flex;
  295. flex-direction: column;
  296. background-color: #fafbfd;
  297. .Scanning_top {
  298. flex-shrink: 0;
  299. .Scanning_top_icon {
  300. padding-top: 26rpx;
  301. display: flex;
  302. justify-content: center;
  303. align-items: center;
  304. .cubeic-ok {
  305. font-size: 58rpx;
  306. color: #35b34a;
  307. }
  308. .text1 {
  309. font-size: 48rpx;
  310. font-weight: bold;
  311. }
  312. }
  313. .Scanning_top_text{
  314. text-align: center;
  315. font-size: 28rpx;
  316. font-weight: bold;
  317. padding: 8rpx 0 23rpx 0;
  318. }
  319. }
  320. .Scanning_cont {
  321. flex: 1;
  322. min-height: 0;
  323. display: flex;
  324. flex-direction: column;
  325. width: 710rpx;
  326. margin: 0 20rpx;
  327. background-color: #fff;
  328. .Scanning_cont_head{
  329. flex-shrink: 0;
  330. height: 78rpx;
  331. display: flex;
  332. border-top: 1rpx solid #EEEEEE;
  333. border-bottom: 1rpx solid #EEEEEE;
  334. .Scanning_cont_head_item{
  335. flex: 1;
  336. font-size: 32rpx;
  337. font-weight: bold;
  338. display: flex;
  339. justify-content: center;
  340. align-items: center;
  341. position: relative;
  342. &.active{
  343. color: #49B856;
  344. &::before{
  345. content: '';
  346. width: 70rpx;
  347. height: 10rpx;
  348. background-color: #49B856;
  349. position: absolute;
  350. left: 50%;
  351. bottom: 0;
  352. transform: translateX(-50%);
  353. border-radius: 6rpx;
  354. }
  355. }
  356. &::after{
  357. content: '';
  358. width: 2rpx;
  359. height: 44rpx;
  360. background-color: #D1D1D1;
  361. position: absolute;
  362. right: 0;
  363. top: 50%;
  364. transform: translateY(-50%);
  365. }
  366. &:last-of-type::after{
  367. opacity: 0;
  368. }
  369. }
  370. }
  371. .Scanning_cont_list{
  372. flex: 1;
  373. min-height: 0;
  374. display: flex;
  375. flex-direction: column;
  376. .Scanning_cont_list_scroll{
  377. flex: 1;
  378. min-height: 0;
  379. }
  380. .Scanning_cont_list_item{
  381. height: 70rpx;
  382. display: flex;
  383. align-items: center;
  384. font-size: 28rpx;
  385. border: 1rpx solid #272727;
  386. border-top: none;
  387. &.Scanning_cont_list_head{
  388. font-weight: bold;
  389. font-size: 28rpx;
  390. border-top: 1rpx solid #272727;
  391. flex-shrink: 0;
  392. }
  393. .name,
  394. .value{
  395. padding: 0 40rpx;
  396. flex: 1;
  397. display: flex;
  398. align-items: center;
  399. height: 100%;
  400. border-right: 1rpx solid #272727;
  401. }
  402. .value {
  403. view{
  404. width: 4em;
  405. text-align: center;
  406. }
  407. }
  408. }
  409. }
  410. }
  411. .foot_btn {
  412. flex-shrink: 0;
  413. line-height: 66rpx;
  414. display: flex;
  415. justify-content: center;
  416. .btn {
  417. height: 66rpx;
  418. flex: 1;
  419. margin-right: 1%;
  420. background-image: linear-gradient(to right, #72c172, #3bb197);
  421. color: #fff;
  422. border-radius: 8rpx;
  423. font-size: 28rpx;
  424. text-align: center;
  425. &:last-of-type{
  426. margin-right: 0;
  427. }
  428. }
  429. }
  430. }
  431. </style>