medicalWasteDetail.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_text">
  5. 医废详情
  6. </view>
  7. </view>
  8. <scroll-view scroll-y class="Scanning_cont">
  9. <view class="Scanning_cont_list">
  10. <view class="Scanning_cont_list_head">
  11. <view class="circle"></view>
  12. <view class="title">详情内容</view>
  13. </view>
  14. <view class="Scanning_cont_list_body">
  15. <view class="Scanning_cont_list_body_item">
  16. <view class="Scanning_cont_list_body_title">医废类型:</view>
  17. <view class="Scanning_cont_list_body_desc">{{info.clinicalWasteType ? info.clinicalWasteType.typeName : ''}}</view>
  18. </view>
  19. <view class="Scanning_cont_list_body_item">
  20. <view class="Scanning_cont_list_body_title">医废序号:</view>
  21. <view class="Scanning_cont_list_body_desc">{{info.clinicalWasteSn}}</view>
  22. </view>
  23. <view class="Scanning_cont_list_body_item">
  24. <view class="Scanning_cont_list_body_title">医废重量:</view>
  25. <view class="Scanning_cont_list_body_desc">{{info.weight}}kg</view>
  26. </view>
  27. <view class="Scanning_cont_list_body_item">
  28. <view class="Scanning_cont_list_body_title">申请科室:</view>
  29. <view class="Scanning_cont_list_body_desc">{{info.dept ? info.dept.dept : ''}}</view>
  30. </view>
  31. <view class="Scanning_cont_list_body_item">
  32. <view class="Scanning_cont_list_body_title">收取人:</view>
  33. <view class="Scanning_cont_list_body_desc">{{info.receivor ? info.receivor.name : ''}}</view>
  34. </view>
  35. <view class="Scanning_cont_list_body_item">
  36. <view class="Scanning_cont_list_body_title">收取时间:</view>
  37. <view class="Scanning_cont_list_body_desc">{{info.receiveTime | formatDate('yyyy-MM-dd hh:mm')}}</view>
  38. </view>
  39. <view class="Scanning_cont_list_body_item">
  40. <view class="Scanning_cont_list_body_title">交接人:</view>
  41. <view class="Scanning_cont_list_body_desc">{{info.handover ? info.handover.name : ''}}</view>
  42. </view>
  43. <view class="Scanning_cont_list_body_item">
  44. <view class="Scanning_cont_list_body_title">备注:</view>
  45. <view class="Scanning_cont_list_body_desc">{{info.remark}}</view>
  46. </view>
  47. </view>
  48. </view>
  49. <view class="Scanning_cont_list">
  50. <view class="Scanning_cont_list_head">
  51. <view class="circle"></view>
  52. <view class="title">操作日志</view>
  53. </view>
  54. <view class="Scanning_cont_list_log">
  55. <view class="Scanning_cont_list_log_item" v-for="(item, index) in info.wasteLogList" :key="index">
  56. <view class="Scanning_cont_list_log_title">
  57. <view class="statusText">{{item.operationType ? item.operationType.name : ''}}</view>
  58. <view class="statusIcon newicon newicon-icon_zhengzaijinx"></view>
  59. <view class="statusDate">{{item.operationTime | formatDate('MM-dd hh:mm')}}</view>
  60. <view class="statusUser">{{item.operatorName}}</view>
  61. </view>
  62. <view class="Scanning_cont_list_log_desc" :class="{noBorder: index == info.wasteLogList.length - 1}" v-if="item.operationType.value == 5 && item.correctWeight && item.correctWeight">矫正前为{{item.correctWeight}}kg,矫正后为{{item.lastWeight}}kg</view>
  63. <view class="Scanning_cont_list_log_desc" :class="{noBorder: index == info.wasteLogList.length - 1}" v-else-if="item.handoverName">交接人:{{item.handoverName}}</view>
  64. <view class="Scanning_cont_list_log_desc" :class="{noBorder: index == info.wasteLogList.length - 1}" v-else></view>
  65. </view>
  66. </view>
  67. </view>
  68. </scroll-view>
  69. <view class="foot_btn">
  70. <view class="btn" @click="goToList()"> 知道了 </view>
  71. </view>
  72. </view>
  73. </template>
  74. <script>
  75. import {
  76. get,
  77. post,
  78. SM,
  79. webHandle
  80. } from "../../../http/http.js";
  81. export default {
  82. data() {
  83. return {
  84. info: {},
  85. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  86. queryObj: {}, //路由传递过来的数据
  87. };
  88. },
  89. methods: {
  90. goToList(){
  91. uni.navigateTo({
  92. url: `/pages/receiptpage/receiptpage`,
  93. });
  94. },
  95. getInfo(){
  96. uni.showLoading({
  97. title: "加载中",
  98. mask: true,
  99. });
  100. post("/medicalWaste/details", {
  101. code: this.queryObj.qrcode,
  102. hosId: this.hosId,
  103. }).then((result) => {
  104. uni.hideLoading();
  105. if (result.status == 200) {
  106. let info = result.wasteDetails || {};
  107. info.wasteLogList = info.wasteLogList || [];
  108. this.info = info;
  109. } else {
  110. uni.showToast({
  111. icon: "none",
  112. title: result.msg || "接口获取数据失败!",
  113. });
  114. }
  115. });
  116. },
  117. },
  118. onLoad(options) {
  119. console.log(options, "result");
  120. this.queryObj = options;
  121. this.getInfo();
  122. // #ifdef APP-PLUS
  123. webHandle("no", "app");
  124. // #endif
  125. // #ifdef H5
  126. webHandle("no", "wx");
  127. // #endif
  128. },
  129. };
  130. </script>
  131. <style lang="less" scoped>
  132. .Scanning_Result {
  133. height: 100vh;
  134. display: flex;
  135. flex-direction: column;
  136. background-color: #F9FAFC;
  137. .yf /deep/ .uni-input-input[disabled]{
  138. text-overflow: ellipsis;
  139. }
  140. .Scanning_top {
  141. flex-shrink: 0;
  142. .Scanning_top_icon {
  143. padding-top: 26rpx;
  144. display: flex;
  145. flex-direction: column;
  146. justify-content: center;
  147. align-items: center;
  148. .cubeic-ok {
  149. font-size: 100rpx;
  150. color: #35b34a;
  151. }
  152. .text1 {
  153. font-size: 40rpx;
  154. font-weight: bold;
  155. }
  156. }
  157. .Scanning_top_text{
  158. text-align: center;
  159. font-size: 36rpx;
  160. font-weight: bold;
  161. padding: 26rpx 0 38rpx 0;
  162. }
  163. }
  164. .Scanning_cont {
  165. flex: 1;
  166. min-height: 0;
  167. display: flex;
  168. flex-direction: column;
  169. margin: 0 20rpx;
  170. padding: 14rpx;
  171. background-color: #fff;
  172. border: 1rpx solid #CBCBCB;
  173. border-radius: 8rpx;
  174. font-size: 28rpx;
  175. width: calc(100% - 20rpx);
  176. .Scanning_cont_list{
  177. font-weight: bold;
  178. padding: 0 6rpx;
  179. font-size: 32rpx;
  180. margin-bottom: 20rpx;
  181. .Scanning_cont_list_head{
  182. height: 65rpx;
  183. display: flex;
  184. align-items: center;
  185. border-bottom: 1rpx dashed #CCCCCC;
  186. .circle{
  187. width: 22rpx;
  188. height: 22rpx;
  189. border-radius: 50%;
  190. background-color: #49B856;
  191. margin-right: 7rpx;
  192. }
  193. .title{
  194. font-size: 28rpx;
  195. font-weight: bold;
  196. }
  197. }
  198. .Scanning_cont_list_body{
  199. padding: 0 46rpx;
  200. font-size: 28rpx;
  201. .Scanning_cont_list_body_item{
  202. margin-top: 20rpx;
  203. overflow: hidden;
  204. display: flex;
  205. .Scanning_cont_list_body_title{
  206. float: left;
  207. }
  208. .Scanning_cont_list_body_desc{
  209. float: left;
  210. flex: 1;
  211. }
  212. }
  213. }
  214. .Scanning_cont_list_log{
  215. padding: 25rpx 86rpx;
  216. font-size: 28rpx;
  217. .Scanning_cont_list_log_item{
  218. .Scanning_cont_list_log_title{
  219. display: flex;
  220. line-height: 1;
  221. .statusText{
  222. width: 2em;
  223. position: absolute;
  224. }
  225. .statusIcon{
  226. margin-left: 78rpx;
  227. margin-right: 7rpx;
  228. color: #35B24A;
  229. }
  230. .statusDate{
  231. margin-right: 20rpx;
  232. color: #A5A5A5;
  233. }
  234. .statusUser{
  235. color: #A5A5A5;
  236. }
  237. }
  238. .Scanning_cont_list_log_desc{
  239. padding: 10rpx 20rpx;
  240. height: 85rpx;
  241. border-left: 2rpx solid #35B24A;
  242. margin-left: 92rpx;
  243. &.noBorder{
  244. border-left: none;
  245. }
  246. }
  247. }
  248. }
  249. }
  250. }
  251. .foot_btn {
  252. margin: 57rpx 20rpx 10rpx;
  253. flex-shrink: 0;
  254. display: flex;
  255. justify-content: center;
  256. .btn {
  257. height: 88rpx;
  258. line-height: 1;
  259. display: flex;
  260. justify-content: center;
  261. align-items: center;
  262. flex: 1;
  263. margin-right: 32rpx;
  264. background-image: linear-gradient(to right, #72c172, #3bb197);
  265. color: #fff;
  266. border-radius: 8rpx;
  267. font-size: 34rpx;
  268. font-weight: bold;
  269. &:last-of-type{
  270. margin-right: 0;
  271. }
  272. }
  273. }
  274. }
  275. </style>