quiltWashingSendSignIn.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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.showModal({
  111. title: "提示",
  112. content: "操作成功",
  113. showCancel: false,
  114. success: (result) => {
  115. if (result.confirm) {
  116. console.log("用户点击确定");
  117. uni.navigateTo({
  118. url: `../../receiptpage/receiptpage`,
  119. });
  120. }
  121. },
  122. });
  123. } else {
  124. uni.navigateTo({
  125. url: `../../scanning_Result/scanning_Result?status=${res.data ? res.data.state : ''}&msg=${res.data ? res.data.msg : ''}&qrcode=${accountCode}`,
  126. });
  127. }
  128. });
  129. } else {
  130. uni.hideLoading();
  131. uni.showToast({
  132. icon: "none",
  133. title: result.info || "接口获取数据失败!",
  134. });
  135. }
  136. })
  137. }).catch(err => {
  138. this.SMFlag = true;
  139. });
  140. },
  141. clickRow(data){
  142. uni.navigateTo({
  143. url: `../quiltWashingException/quiltWashingException?clothesTypeId=${data.id}&clothesTypeName=${data.name}&batchId=${data.clothesWashingDTO.batchId}&relatedDept=${data.clothesWashingDTO.relatedDept}`,
  144. });
  145. },
  146. getInfo(){
  147. uni.showLoading({
  148. title: "加载中",
  149. mask: true,
  150. });
  151. post("/transflow/scanInfo", {
  152. type: 'clothingSend',
  153. hosId: this.hosId,
  154. endDeptId: this.queryObj.endDeptId,
  155. orderId: this.queryObj.orderId,
  156. id: 0,
  157. }).then((result) => {
  158. uni.hideLoading();
  159. if (result.state == 200) {
  160. let dataList = result.data.treeList || [];
  161. dataList.forEach(v => {
  162. v.children = v.children.sort((a, b) => b.clothesWashingDTO.exception - a.clothesWashingDTO.exception)
  163. })
  164. console.log(dataList);
  165. this.dataList = dataList.slice(0, 3);
  166. } else {
  167. uni.showToast({
  168. icon: "none",
  169. title: result.msg || "接口获取数据失败!",
  170. });
  171. }
  172. });
  173. },
  174. },
  175. onLoad(options) {
  176. console.log(options, "result");
  177. this.queryObj = options;
  178. this.getInfo();
  179. // #ifdef APP-PLUS
  180. webHandle("no", "app");
  181. // #endif
  182. // #ifdef H5
  183. webHandle("no", "wx");
  184. // #endif
  185. },
  186. };
  187. </script>
  188. <style lang="less" scoped>
  189. .Scanning_Result {
  190. height: 100vh;
  191. display: flex;
  192. flex-direction: column;
  193. background-color: #fafbfd;
  194. .Scanning_top {
  195. flex-shrink: 0;
  196. .Scanning_top_icon {
  197. padding-top: 26rpx;
  198. display: flex;
  199. justify-content: center;
  200. align-items: center;
  201. .cubeic-ok {
  202. font-size: 58rpx;
  203. color: #35b34a;
  204. }
  205. .text1 {
  206. font-size: 48rpx;
  207. font-weight: bold;
  208. }
  209. }
  210. .Scanning_top_text{
  211. text-align: center;
  212. font-size: 28rpx;
  213. font-weight: bold;
  214. padding: 8rpx 0 23rpx 0;
  215. }
  216. }
  217. .Scanning_cont {
  218. flex: 1;
  219. min-height: 0;
  220. display: flex;
  221. flex-direction: column;
  222. width: 710rpx;
  223. margin: 0 20rpx;
  224. background-color: #fff;
  225. .Scanning_cont_head{
  226. flex-shrink: 0;
  227. height: 78rpx;
  228. display: flex;
  229. border-top: 1rpx solid #EEEEEE;
  230. border-bottom: 1rpx solid #EEEEEE;
  231. .Scanning_cont_head_item{
  232. flex: 1;
  233. font-size: 28rpx;
  234. font-weight: bold;
  235. display: flex;
  236. justify-content: center;
  237. align-items: center;
  238. position: relative;
  239. &.active{
  240. color: #49B856;
  241. &::before{
  242. content: '';
  243. width: 70rpx;
  244. height: 10rpx;
  245. background-color: #49B856;
  246. position: absolute;
  247. left: 50%;
  248. bottom: 0;
  249. transform: translateX(-50%);
  250. border-radius: 6rpx;
  251. }
  252. }
  253. &::after{
  254. content: '';
  255. width: 2rpx;
  256. height: 44rpx;
  257. background-color: #D1D1D1;
  258. position: absolute;
  259. right: 0;
  260. top: 50%;
  261. transform: translateY(-50%);
  262. }
  263. &:last-of-type::after{
  264. opacity: 0;
  265. }
  266. }
  267. }
  268. .Scanning_cont_list{
  269. flex: 1;
  270. min-height: 0;
  271. display: flex;
  272. flex-direction: column;
  273. .Scanning_cont_list_scroll{
  274. flex: 1;
  275. min-height: 0;
  276. }
  277. .Scanning_cont_list_item{
  278. height: 70rpx;
  279. display: flex;
  280. align-items: center;
  281. font-size: 28rpx;
  282. border-bottom: 1rpx solid #CCCCCC;
  283. &.Scanning_cont_list_head{
  284. font-weight: bold;
  285. font-size: 28rpx;
  286. border-bottom: none;
  287. flex-shrink: 0;
  288. }
  289. .name,
  290. .value{
  291. padding: 0 10rpx;
  292. flex: 1;
  293. }
  294. .value {
  295. view{
  296. width: 4em;
  297. text-align: center;
  298. }
  299. }
  300. }
  301. }
  302. }
  303. .foot_btn {
  304. flex-shrink: 0;
  305. line-height: 66rpx;
  306. display: flex;
  307. justify-content: center;
  308. .btn {
  309. height: 66rpx;
  310. flex: 1;
  311. margin-right: 1%;
  312. background-image: linear-gradient(to right, #72c172, #3bb197);
  313. color: #fff;
  314. border-radius: 8rpx;
  315. font-size: 28rpx;
  316. text-align: center;
  317. &:last-of-type{
  318. margin-right: 0;
  319. }
  320. }
  321. }
  322. }
  323. </style>