quiltWashingGetEndCheck.vue 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  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_list">
  14. <view class="Scanning_cont_list_item Scanning_cont_list_head">
  15. <view class="name">
  16. 科室名称<text class="red">({{dataList.length}})</text>
  17. </view>
  18. <view class="value">
  19. <view>
  20. 被服总数<text class="red">({{total}})</text>
  21. </view>
  22. </view>
  23. </view>
  24. <scroll-view scroll-y="true" class="Scanning_cont_list_scroll">
  25. <view class="Scanning_cont_list_item" v-for="(item, j) in dataList" :key="item.id">
  26. <view class="name">
  27. {{item.dept}}
  28. </view>
  29. <view class="value">
  30. <view>
  31. {{item.count}}
  32. </view>
  33. </view>
  34. </view>
  35. </scroll-view>
  36. </view>
  37. </view>
  38. <view class="foot_btn">
  39. <view class="btn" @click="onClick()"> 核对完成 </view>
  40. <view class="btn" @click="goBack()"> 取消 </view>
  41. </view>
  42. <!-- 弹窗 -->
  43. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  44. @ok="ok1" @cancel="cancel1" :operate="models1.operate"></showModel>
  45. </view>
  46. </template>
  47. <script>
  48. import {
  49. get,
  50. post,
  51. SM,
  52. webHandle
  53. } from "../../../http/http.js";
  54. export default {
  55. data() {
  56. return {
  57. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  58. queryObj: {}, //路由传递过来的数据
  59. dataList: [],
  60. total: 0,
  61. // 弹窗model
  62. models1: {
  63. disjunctor: false,
  64. },
  65. };
  66. },
  67. methods: {
  68. goBack(){
  69. uni.navigateBack();
  70. },
  71. //确定
  72. ok1() {
  73. this.models1.disjunctor = false;
  74. uni.showLoading({
  75. title: "加载中",
  76. mask: true,
  77. });
  78. post("/transflow/complete", {
  79. type: 'clothingGet',
  80. orderId: 0,
  81. orderIds: this.queryObj.orderIds,
  82. }).then((res) => {
  83. uni.hideLoading();
  84. if (res.state == 200) {
  85. uni.showModal({
  86. title: "提示",
  87. content: "操作成功",
  88. showCancel: false,
  89. success: (result) => {
  90. if (result.confirm) {
  91. console.log("用户点击确定");
  92. uni.navigateTo({
  93. url: `../../receiptpage/receiptpage`,
  94. });
  95. }
  96. },
  97. });
  98. }else{
  99. uni.showToast({
  100. icon: "none",
  101. title: result.msg || "接口获取数据失败!",
  102. });
  103. }
  104. });
  105. },
  106. //取消
  107. cancel1() {
  108. this.models1.disjunctor = false;
  109. },
  110. // 被服回收弹窗
  111. showModel1() {
  112. this.models1 = {
  113. disjunctor: true,
  114. title: "提示",
  115. content: `您确认核对完整吗?`,
  116. icon: "warn",
  117. operate: {
  118. ok: "确定",
  119. cancel: "取消",
  120. },
  121. };
  122. },
  123. onClick(){
  124. this.showModel1();
  125. },
  126. getInfo(){
  127. uni.showLoading({
  128. title: "加载中",
  129. mask: true,
  130. });
  131. post("/transflow/scanInfo", {
  132. type: 'clothingGet',
  133. hosId: this.hosId,
  134. id: 0,
  135. orderIds: this.queryObj.orderIds,
  136. }).then((result) => {
  137. uni.hideLoading();
  138. if (result.state == 200) {
  139. this.dataList = result.data.countList || [];
  140. this.total = this.dataList.reduce((prev, current) => prev + current.count, 0);
  141. } else {
  142. uni.showToast({
  143. icon: "none",
  144. title: result.msg || "接口获取数据失败!",
  145. });
  146. }
  147. });
  148. },
  149. },
  150. onLoad(options) {
  151. console.log(options, "result");
  152. this.queryObj = options;
  153. this.getInfo();
  154. // #ifdef APP-PLUS
  155. webHandle("no", "app");
  156. // #endif
  157. // #ifdef H5
  158. webHandle("no", "wx");
  159. // #endif
  160. },
  161. };
  162. </script>
  163. <style lang="less" scoped>
  164. .Scanning_Result {
  165. height: 100vh;
  166. display: flex;
  167. flex-direction: column;
  168. background-color: #fafbfd;
  169. .Scanning_top {
  170. flex-shrink: 0;
  171. .Scanning_top_icon {
  172. padding-top: 26rpx;
  173. display: flex;
  174. flex-direction: column;
  175. justify-content: center;
  176. align-items: center;
  177. .cubeic-ok {
  178. font-size: 140rpx;
  179. color: #35b34a;
  180. }
  181. .text1 {
  182. margin-top: 30rpx;
  183. font-size: 48rpx;
  184. font-weight: bold;
  185. }
  186. }
  187. .Scanning_top_text{
  188. text-align: center;
  189. font-size: 28rpx;
  190. font-weight: bold;
  191. padding: 8rpx 0 23rpx 0;
  192. }
  193. }
  194. .Scanning_cont {
  195. flex: 1;
  196. min-height: 0;
  197. display: flex;
  198. flex-direction: column;
  199. width: 710rpx;
  200. margin: 0 20rpx;
  201. background-color: #fff;
  202. .Scanning_cont_head{
  203. flex-shrink: 0;
  204. height: 78rpx;
  205. display: flex;
  206. border-top: 1rpx solid #EEEEEE;
  207. border-bottom: 1rpx solid #EEEEEE;
  208. .Scanning_cont_head_item{
  209. flex: 1;
  210. font-size: 28rpx;
  211. font-weight: bold;
  212. display: flex;
  213. justify-content: center;
  214. align-items: center;
  215. position: relative;
  216. &.active{
  217. color: #49B856;
  218. &::before{
  219. content: '';
  220. width: 70rpx;
  221. height: 10rpx;
  222. background-color: #49B856;
  223. position: absolute;
  224. left: 50%;
  225. bottom: 0;
  226. transform: translateX(-50%);
  227. border-radius: 6rpx;
  228. }
  229. }
  230. &::after{
  231. content: '';
  232. width: 2rpx;
  233. height: 44rpx;
  234. background-color: #D1D1D1;
  235. position: absolute;
  236. right: 0;
  237. top: 50%;
  238. transform: translateY(-50%);
  239. }
  240. &:last-of-type::after{
  241. opacity: 0;
  242. }
  243. }
  244. }
  245. .Scanning_cont_list{
  246. flex: 1;
  247. min-height: 0;
  248. display: flex;
  249. flex-direction: column;
  250. .Scanning_cont_list_scroll{
  251. flex: 1;
  252. min-height: 0;
  253. }
  254. .Scanning_cont_list_item{
  255. height: 70rpx;
  256. display: flex;
  257. align-items: center;
  258. font-size: 28rpx;
  259. border-bottom: 1rpx solid #CCCCCC;
  260. &.Scanning_cont_list_head{
  261. font-weight: bold;
  262. font-size: 28rpx;
  263. border-bottom: none;
  264. flex-shrink: 0;
  265. }
  266. .name,
  267. .value{
  268. padding: 0 40rpx;
  269. flex: 1;
  270. }
  271. .value {
  272. view{
  273. width: 10em;
  274. text-align: center;
  275. }
  276. }
  277. }
  278. }
  279. }
  280. .foot_btn {
  281. flex-shrink: 0;
  282. line-height: 66rpx;
  283. display: flex;
  284. justify-content: center;
  285. .btn {
  286. height: 66rpx;
  287. flex: 1;
  288. margin-right: 1%;
  289. background-image: linear-gradient(to right, #72c172, #3bb197);
  290. color: #fff;
  291. border-radius: 8rpx;
  292. font-size: 28rpx;
  293. text-align: center;
  294. &:last-of-type{
  295. margin-right: 0;
  296. }
  297. }
  298. }
  299. }
  300. </style>