medicalWasteSignInList.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. <template>
  2. <view class="pharmacyDetails">
  3. <view class="pharmacyDetails_title">医废列表</view>
  4. <view class="page_item footerOtherMargin">
  5. <view class="page_item_wrap" v-for="(v, i) in list" :key="v.id">
  6. <medicalWasteListItem :i="i" :item="v"></medicalWasteListItem>
  7. <view class="L-l"></view>
  8. <view class="R-l"></view>
  9. </view>
  10. </view>
  11. <view class="foot_btn2 footerPadding">
  12. <view class="btn2" @click="goBack">返回</view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. import {
  18. post,
  19. webHandle
  20. } from "../../../http/http.js";
  21. export default {
  22. data() {
  23. return {
  24. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  25. queryObj: {}, //路由传递过来的数据
  26. id: undefined,
  27. list: [],
  28. };
  29. },
  30. methods: {
  31. // 返回
  32. goBack() {
  33. uni.navigateBack();
  34. },
  35. // 获取信息
  36. getList() {
  37. let postData = {
  38. hosId: this.hosId,
  39. };
  40. if(this.queryObj.type === 'dept'){
  41. postData.deptId = +this.queryObj.id;
  42. } else if(this.queryObj.type === 'waste'){
  43. postData.clinicalWasteTypeId = +this.queryObj.id;
  44. }
  45. uni.showLoading({
  46. title: "加载中",
  47. mask: true,
  48. });
  49. post("/medicalWaste/info", postData).then((res) => {
  50. uni.hideLoading();
  51. if (res.status == 200) {
  52. this.list = res.list || [];
  53. }
  54. });
  55. },
  56. },
  57. onLoad(options) {
  58. console.log(options);
  59. this.queryObj = options;
  60. this.getList();
  61. // #ifdef APP-PLUS
  62. webHandle("no", "app");
  63. // #endif
  64. // #ifdef H5
  65. webHandle("no", "wx");
  66. // #endif
  67. },
  68. };
  69. </script>
  70. <style lang="less" scoped>
  71. .pharmacyDetails {
  72. background-color: rgb(249, 250, 251);
  73. padding-top: 50rpx;
  74. height: 100%;
  75. box-sizing: border-box;
  76. .pharmacyDetails_title {
  77. font-size: 46rpx;
  78. font-weight: 550;
  79. text-align: center;
  80. }
  81. .page_item_wrap {
  82. position: relative;
  83. margin-top: 32rpx;
  84. .page_item {
  85. margin-top: 16rpx;
  86. margin-bottom: 124rpx;
  87. background: #fff;
  88. border-radius: 8rpx;
  89. margin: 0 20rpx;
  90. border: 2rpx solid #e5e9ed;
  91. position: relative;
  92. overflow: hidden;
  93. padding: 0 16rpx;
  94. .L {
  95. width: 40rpx;
  96. height: 40rpx;
  97. border-radius: 50%;
  98. background: #f9fafb;
  99. position: absolute;
  100. left: -20rpx;
  101. top: 68rpx;
  102. border: 2rpx solid #e5e9ed;
  103. }
  104. .R {
  105. width: 40rpx;
  106. height: 40rpx;
  107. border-radius: 50%;
  108. background: #f9fafb;
  109. position: absolute;
  110. float: right;
  111. right: -20rpx;
  112. top: 68rpx;
  113. border: 2rpx solid #e5e9ed;
  114. }
  115. .page_item_top {
  116. height: 88rpx;
  117. border-bottom: 2rpx dashed #e5e9ed;
  118. padding: 0 16rpx;
  119. .page_item_top-inner {
  120. display: flex;
  121. justify-content: space-between;
  122. align-items: center;
  123. height: 100%;
  124. .page_item_top_L {
  125. .L_text {
  126. font-size: 32rpx;
  127. font-weight: 700;
  128. }
  129. }
  130. .page_item_top_R {
  131. font-size: 32rpx;
  132. .L_iocn {
  133. color: rgb(7, 134, 60);
  134. font-size: 36rpx;
  135. font-weight: 700;
  136. }
  137. }
  138. }
  139. }
  140. .page_item_cont {
  141. min-height: 90rpx;
  142. padding: 0 16rpx;
  143. text-align: left;
  144. position: relative;
  145. .text_big {
  146. font-size: 32rpx;
  147. font-weight: 700;
  148. margin-top: 10rpx;
  149. p {
  150. font-weight: 700;
  151. line-height: 1.5;
  152. }
  153. }
  154. .line {
  155. height: 20rpx;
  156. width: 2rpx;
  157. border-left: 2rpx solid #e5e9ed;
  158. position: absolute;
  159. top: 82rpx;
  160. left: 40rpx;
  161. }
  162. .page_item_cont_T {
  163. padding-top: 28rpx;
  164. padding-bottom: 28rpx;
  165. font-size: 28rpx;
  166. .page_item_cont_title {
  167. height: 100%;
  168. font-size: 32rpx;
  169. display: flex;
  170. justify-content: space-between;
  171. align-items: center;
  172. }
  173. }
  174. .page_item_cont_B {
  175. padding-top: 28rpx;
  176. margin-bottom: 28rpx;
  177. .page_item_cont_title {
  178. font-size: 32rpx;
  179. display: flex;
  180. justify-content: space-between;
  181. align-items: center;
  182. }
  183. }
  184. .page_item_cont_C {
  185. margin-bottom: 28rpx;
  186. .page_item_cont_title_C {
  187. font-size: 32rpx;
  188. display: flex;
  189. justify-content: space-between;
  190. align-items: center;
  191. }
  192. }
  193. #infos {
  194. display: none;
  195. }
  196. }
  197. }
  198. .L-l {
  199. width: 2rpx;
  200. height: 40rpx;
  201. background: #f9fafb;
  202. position: absolute;
  203. left: 20rpx;
  204. top: 72rpx;
  205. }
  206. .R-l {
  207. width: 2rpx;
  208. height: 40rpx;
  209. background: #f9fafb;
  210. position: absolute;
  211. right: 20rpx;
  212. top: 72rpx;
  213. }
  214. }
  215. .cube-toolbar-item {
  216. width: 710rpx;
  217. height: 68rpx;
  218. line-height: 68rpx;
  219. position: fixed;
  220. left: 20rpx;
  221. bottom: 160rpx;
  222. border-radius: 8rpx;
  223. background: linear-gradient(to right, #72c172, #3bb197);
  224. font-size: 36rpx;
  225. color: #fff;
  226. text-align: center;
  227. }
  228. .btn-wrap {
  229. display: flex;
  230. justify-content: space-between;
  231. position: fixed;
  232. left: 20rpx;
  233. bottom: 160rpx;
  234. }
  235. .cube-toolbar-item1 {
  236. width: 350rpx;
  237. height: 68rpx;
  238. line-height: 68rpx;
  239. border-radius: 8rpx;
  240. margin: 0 5rpx;
  241. background: linear-gradient(to right, #72c172, #3bb197);
  242. font-size: 36rpx;
  243. color: #fff;
  244. text-align: center;
  245. }
  246. .foot_btn2 {
  247. position: fixed;
  248. bottom: 0;
  249. right: 20rpx;
  250. left: 20rpx;
  251. line-height: 66rpx;
  252. height: 100rpx;
  253. border-top: 2rpx solid #e5e9ed;
  254. background: #f9fafb;
  255. display: flex;
  256. justify-content: space-between;
  257. .btn2 {
  258. height: 66rpx;
  259. width: 100%;
  260. margin: 0 1%;
  261. background-image: linear-gradient(to right, #72c172, #3bb197);
  262. color: #fff;
  263. border-radius: 8rpx;
  264. font-size: 32rpx;
  265. margin-top: 16rpx;
  266. text-align: center;
  267. }
  268. .btn3 {
  269. height: 66rpx;
  270. width: 48%;
  271. margin: 0 1%;
  272. background-image: linear-gradient(to right, #72c172, #3bb197);
  273. color: #fff;
  274. border-radius: 8rpx;
  275. font-size: 32rpx;
  276. margin-top: 16rpx;
  277. text-align: center;
  278. }
  279. }
  280. }
  281. </style>