quiltWashingException.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-close icon_transport transport-chaoshi"></text>
  6. <view class="text1"> {{queryObj.clothesTypeName}}-异常详情 </view>
  7. </view>
  8. </view>
  9. <view class="Scanning_cont">
  10. <view class="Scanning_cont_list">
  11. <scroll-view scroll-y="true" class="Scanning_cont_list_scroll">
  12. <view class="Scanning_cont_list_item" v-for="(item, j) in dataList" :key="item.id">
  13. <view class="row">
  14. <view class="row_item">
  15. 调整数量:<text class="red">{{item.changeNum}}</text>
  16. </view>
  17. <view class="row_item">
  18. 原因:<text class="red">{{item.clothesExceptionRe ? item.clothesExceptionRe.name : ''}}</text>
  19. </view>
  20. </view>
  21. <view class="row">
  22. <view class="row_item">
  23. 备注:{{item.remarks}}
  24. </view>
  25. </view>
  26. <view class="row">
  27. <view class="row_item">
  28. 调整人:{{item.changerDTO ? item.changerDTO.name : ''}}
  29. </view>
  30. <view class="row_item">
  31. 调整时间:{{item.changeTime | formatDate('yyyy-MM-dd hh:mm:ss')}}
  32. </view>
  33. </view>
  34. </view>
  35. </scroll-view>
  36. </view>
  37. </view>
  38. <view class="foot_btn">
  39. <view class="btn" @click="goBack()"> 返回 </view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. import {
  45. get,
  46. post,
  47. SM,
  48. webHandle
  49. } from "../../../http/http.js";
  50. export default {
  51. data() {
  52. return {
  53. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  54. queryObj: {}, //路由传递过来的数据
  55. dataList: [],
  56. // 弹窗model
  57. models1: {
  58. disjunctor: false,
  59. },
  60. };
  61. },
  62. methods: {
  63. goBack(){
  64. uni.navigateBack();
  65. },
  66. getInfo(){
  67. uni.showLoading({
  68. title: "加载中",
  69. mask: true,
  70. });
  71. post("/simple/data/fetchDataList/clothesException", {
  72. "idx": 0,
  73. "sum": 9999,
  74. "clothesException": {
  75. "hosId": this.hosId,
  76. "batchId": this.queryObj.batchId,
  77. "clothesType": {
  78. id: this.queryObj.clothesTypeId,
  79. },
  80. "clothesDept": this.queryObj.relatedDept,
  81. }
  82. }).then((result) => {
  83. uni.hideLoading();
  84. if (result.status == 200) {
  85. this.dataList = result.list || [];
  86. } else {
  87. uni.showToast({
  88. icon: "none",
  89. title: result.msg || "接口获取数据失败!",
  90. });
  91. }
  92. });
  93. },
  94. },
  95. onLoad(options) {
  96. console.log(options, "result");
  97. this.queryObj = options;
  98. this.getInfo();
  99. // #ifdef APP-PLUS
  100. webHandle("no", "app");
  101. // #endif
  102. // #ifdef H5
  103. webHandle("no", "wx");
  104. // #endif
  105. },
  106. };
  107. </script>
  108. <style lang="less" scoped>
  109. .Scanning_Result {
  110. height: 100vh;
  111. display: flex;
  112. flex-direction: column;
  113. background-color: #fff;
  114. .Scanning_top {
  115. flex-shrink: 0;
  116. .Scanning_top_icon {
  117. padding-top: 26rpx;
  118. display: flex;
  119. justify-content: center;
  120. align-items: center;
  121. .cubeic-ok {
  122. font-size: 140rpx;
  123. color: #35b34a;
  124. }
  125. .cubeic-close {
  126. font-size: 48rpx;
  127. color: #ff3b53;
  128. }
  129. .text1 {
  130. font-size: 48rpx;
  131. font-weight: bold;
  132. }
  133. }
  134. }
  135. .Scanning_cont {
  136. flex: 1;
  137. min-height: 0;
  138. display: flex;
  139. flex-direction: column;
  140. width: 710rpx;
  141. margin: 0 20rpx;
  142. .Scanning_cont_list{
  143. flex: 1;
  144. min-height: 0;
  145. display: flex;
  146. flex-direction: column;
  147. .Scanning_cont_list_scroll{
  148. flex: 1;
  149. min-height: 0;
  150. }
  151. .Scanning_cont_list_item{
  152. margin-top: 15rpx;
  153. padding: 30rpx;
  154. font-size: 28rpx;
  155. background-color: #FAFBFD;
  156. .row{
  157. display: flex;
  158. justify-content: space-between;
  159. margin-top: 20rpx;
  160. }
  161. }
  162. }
  163. }
  164. .foot_btn {
  165. flex-shrink: 0;
  166. line-height: 66rpx;
  167. display: flex;
  168. justify-content: center;
  169. .btn {
  170. height: 66rpx;
  171. flex: 1;
  172. margin-right: 1%;
  173. background-image: linear-gradient(to right, #72c172, #3bb197);
  174. color: #fff;
  175. border-radius: 8rpx;
  176. font-size: 28rpx;
  177. text-align: center;
  178. &:last-of-type{
  179. margin-right: 0;
  180. }
  181. }
  182. }
  183. }
  184. </style>