quiltWashingSendSignIn.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  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.endDeptName}},请核对填写以下物品数量
  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 class="value">
  29. <view>
  30. 送回数量
  31. </view>
  32. </view>
  33. </view>
  34. <scroll-view scroll-y="true" class="Scanning_cont_list_scroll" v-if="dataList[parentIndex]">
  35. <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}">
  36. <view class="name">
  37. {{item.name}}
  38. </view>
  39. <view class="value">
  40. <view>
  41. {{item.clothesWashingDTO ? item.clothesWashingDTO.recyclingNum : ''}}
  42. </view>
  43. </view>
  44. <view class="value">
  45. <view>
  46. {{item.clothesWashingDTO ? item.clothesWashingDTO.sendBackNum : ''}}
  47. </view>
  48. </view>
  49. </view>
  50. </scroll-view>
  51. </view>
  52. </view>
  53. <view class="foot_btn">
  54. <view class="btn" @click="onClick()"> 核对完成 </view>
  55. </view>
  56. </view>
  57. </template>
  58. <script>
  59. import {
  60. get,
  61. post,
  62. SM,
  63. webHandle
  64. } from "../../../http/http.js";
  65. export default {
  66. data() {
  67. return {
  68. SMFlag: true,
  69. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  70. queryObj: {}, //路由传递过来的数据
  71. dataList: [],
  72. parentIndex: 0,
  73. };
  74. },
  75. methods: {
  76. onClick(){
  77. this.quiltScan();
  78. },
  79. // 扫描工牌-被服洗涤
  80. quiltScan() {
  81. if (!this.SMFlag) {
  82. return;
  83. }
  84. this.SMFlag = false;
  85. SM().then((content) => {
  86. uni.showLoading({
  87. title: "加载中",
  88. mask: true,
  89. });
  90. //检验二维码的有效性(扫码前必须验证)
  91. post("/dept/scanning", {
  92. content,
  93. })
  94. .then((result) => {
  95. let accountCode = result.code;
  96. this.SMFlag = true;
  97. // 200检测通过,201没有有效期也通过。
  98. if (result.state == 200 || result.state == 201) {
  99. let data = {
  100. code: accountCode, //二维码
  101. };
  102. post("/transflow/checkComplete", {
  103. type: 'clothingSend',
  104. orderId: this.queryObj.orderId,
  105. code: accountCode,
  106. })
  107. .then((res) => {
  108. uni.hideLoading();
  109. if (res.data && res.data.state == 200) {
  110. uni.navigateTo({
  111. url: `../../receiptpage/receiptpage`,
  112. });
  113. } else {
  114. uni.navigateTo({
  115. url: `../../scanning_Result/scanning_Result?status=${res.data ? res.data.state : ''}&msg=${res.data ? res.data.msg : ''}&qrcode=${accountCode}`,
  116. });
  117. }
  118. });
  119. } else {
  120. uni.hideLoading();
  121. uni.showToast({
  122. icon: "none",
  123. title: result.info || "接口获取数据失败!",
  124. });
  125. }
  126. })
  127. }).catch(err => {
  128. this.SMFlag = true;
  129. });
  130. },
  131. clickRow(data){
  132. uni.navigateTo({
  133. url: `../quiltWashingException/quiltWashingException?clothesTypeId=${data.id}&clothesTypeName=${data.name}&batchId=${data.clothesWashingDTO.batchId}&relatedDept=${data.clothesWashingDTO.relatedDept}`,
  134. });
  135. },
  136. getInfo(){
  137. uni.showLoading({
  138. title: "加载中",
  139. mask: true,
  140. });
  141. post("/transflow/scanInfo", {
  142. type: 'clothingSend',
  143. hosId: this.hosId,
  144. endDeptId: this.queryObj.endDeptId,
  145. orderId: this.queryObj.orderId,
  146. id: 0,
  147. }).then((result) => {
  148. uni.hideLoading();
  149. if (result.state == 200) {
  150. let dataList = result.data.treeList || [];
  151. dataList.forEach(v => {
  152. v.children = v.children.sort((a, b) => b.clothesWashingDTO.exception - a.clothesWashingDTO.exception)
  153. })
  154. console.log(dataList);
  155. this.dataList = dataList.slice(0, 3);
  156. } else {
  157. uni.showToast({
  158. icon: "none",
  159. title: result.msg || "接口获取数据失败!",
  160. });
  161. }
  162. });
  163. },
  164. },
  165. onLoad(options) {
  166. console.log(options, "result");
  167. this.queryObj = options;
  168. this.getInfo();
  169. // #ifdef APP-PLUS
  170. webHandle("no", "app");
  171. // #endif
  172. // #ifdef H5
  173. webHandle("no", "wx");
  174. // #endif
  175. },
  176. };
  177. </script>
  178. <style lang="less" scoped>
  179. .Scanning_Result {
  180. height: 100vh;
  181. display: flex;
  182. flex-direction: column;
  183. background-color: #fafbfd;
  184. .Scanning_top {
  185. flex-shrink: 0;
  186. .Scanning_top_icon {
  187. padding-top: 26rpx;
  188. display: flex;
  189. justify-content: center;
  190. align-items: center;
  191. .cubeic-ok {
  192. font-size: 58rpx;
  193. color: #35b34a;
  194. }
  195. .text1 {
  196. font-size: 48rpx;
  197. font-weight: bold;
  198. }
  199. }
  200. .Scanning_top_text{
  201. text-align: center;
  202. font-size: 28rpx;
  203. font-weight: bold;
  204. padding: 8rpx 0 23rpx 0;
  205. }
  206. }
  207. .Scanning_cont {
  208. flex: 1;
  209. min-height: 0;
  210. display: flex;
  211. flex-direction: column;
  212. width: 710rpx;
  213. margin: 0 20rpx;
  214. background-color: #fff;
  215. .Scanning_cont_head{
  216. flex-shrink: 0;
  217. height: 78rpx;
  218. display: flex;
  219. border-top: 1rpx solid #EEEEEE;
  220. border-bottom: 1rpx solid #EEEEEE;
  221. .Scanning_cont_head_item{
  222. flex: 1;
  223. font-size: 32rpx;
  224. font-weight: bold;
  225. display: flex;
  226. justify-content: center;
  227. align-items: center;
  228. position: relative;
  229. &.active{
  230. color: #49B856;
  231. &::before{
  232. content: '';
  233. width: 70rpx;
  234. height: 10rpx;
  235. background-color: #49B856;
  236. position: absolute;
  237. left: 50%;
  238. bottom: 0;
  239. transform: translateX(-50%);
  240. border-radius: 6rpx;
  241. }
  242. }
  243. &::after{
  244. content: '';
  245. width: 2rpx;
  246. height: 44rpx;
  247. background-color: #D1D1D1;
  248. position: absolute;
  249. right: 0;
  250. top: 50%;
  251. transform: translateY(-50%);
  252. }
  253. &:last-of-type::after{
  254. opacity: 0;
  255. }
  256. }
  257. }
  258. .Scanning_cont_list{
  259. flex: 1;
  260. min-height: 0;
  261. display: flex;
  262. flex-direction: column;
  263. .Scanning_cont_list_scroll{
  264. flex: 1;
  265. min-height: 0;
  266. }
  267. .Scanning_cont_list_item{
  268. height: 70rpx;
  269. display: flex;
  270. align-items: center;
  271. font-size: 28rpx;
  272. border: 1rpx solid #272727;
  273. border-top: none;
  274. &.Scanning_cont_list_head{
  275. font-weight: bold;
  276. font-size: 28rpx;
  277. border-top: 1rpx solid #272727;
  278. flex-shrink: 0;
  279. }
  280. .name,
  281. .value{
  282. padding: 0 10rpx;
  283. flex: 1;
  284. display: flex;
  285. align-items: center;
  286. height: 100%;
  287. border-right: 1rpx solid #272727;
  288. }
  289. .value {
  290. view{
  291. width: 4em;
  292. text-align: center;
  293. }
  294. }
  295. }
  296. }
  297. }
  298. .foot_btn {
  299. flex-shrink: 0;
  300. line-height: 66rpx;
  301. display: flex;
  302. justify-content: center;
  303. .btn {
  304. height: 66rpx;
  305. flex: 1;
  306. margin-right: 1%;
  307. background-image: linear-gradient(to right, #72c172, #3bb197);
  308. color: #fff;
  309. border-radius: 8rpx;
  310. font-size: 28rpx;
  311. text-align: center;
  312. &:last-of-type{
  313. margin-right: 0;
  314. }
  315. }
  316. }
  317. }
  318. </style>