medicalWasteSelect.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">
  5. <view class="text1"> 医废类型选择 </view>
  6. </view>
  7. <view class="Scanning_top_text">
  8. 医废出库需要指定医废类型,请您选择以下医废类型
  9. </view>
  10. </view>
  11. <view class="Scanning_cont">
  12. <view class="Scanning_cont_list">
  13. <scroll-view scroll-y="true" class="Scanning_cont_list_scroll">
  14. <checkbox-group @change="checkboxChange">
  15. <label class="Scanning_cont_list_item" v-for="item in list" :key="item.id">
  16. <view>
  17. <checkbox :value="item.id" :checked="item.checked" />
  18. </view>
  19. <view>{{item.typeName}}</view>
  20. </label>
  21. </checkbox-group>
  22. </scroll-view>
  23. </view>
  24. </view>
  25. <view class="foot_btn">
  26. <view class="btn" @click="goBack()"> 取消 </view>
  27. <view class="btn" @click="nextOk()"> 确定 </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. import {
  33. get,
  34. post,
  35. SM,
  36. webHandle
  37. } from "../../../http/http.js";
  38. export default {
  39. data() {
  40. return {
  41. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  42. queryObj: {}, //路由传递过来的数据
  43. list: [],
  44. };
  45. },
  46. methods: {
  47. nextOk(){
  48. let clinicalWasteTypeIds = this.list.filter(v => v.checked).map(v => v.id).toString();
  49. if(!clinicalWasteTypeIds){
  50. uni.showModal({
  51. title: "提示",
  52. content: "请选择医废类型!",
  53. showCancel: false,
  54. success: function(res) {
  55. if (res.confirm) {
  56. console.log("用户点击确定");
  57. } else if (res.cancel) {
  58. console.log("用户点击取消");
  59. }
  60. },
  61. });
  62. }else{
  63. uni.navigateTo({
  64. url: `/pages/medicalWaste/medicalWasteSignOut/medicalWasteSignOut?clinicalWasteTypeIds=${clinicalWasteTypeIds}`,
  65. });
  66. }
  67. },
  68. goBack(){
  69. uni.navigateBack();
  70. },
  71. checkboxChange: function (e) {
  72. var list = this.list,
  73. values = e.detail.value;
  74. for (var i = 0, lenI = list.length; i < lenI; ++i) {
  75. const item = list[i]
  76. if(values.includes(item.id)){
  77. this.$set(item,'checked',true)
  78. }else{
  79. this.$set(item,'checked',false)
  80. }
  81. }
  82. },
  83. getInfo(){
  84. uni.showLoading({
  85. title: "加载中",
  86. mask: true,
  87. });
  88. post("/simple/data/fetchDataList/clinicalWasteType", {
  89. "idx": 0,
  90. "sum": 9999,
  91. "clinicalWasteType": {
  92. hosId: this.hosId,
  93. }
  94. }).then((result) => {
  95. uni.hideLoading();
  96. if (result.status == 200) {
  97. this.list = result.list || [];
  98. } else {
  99. uni.showToast({
  100. icon: "none",
  101. title: result.msg || "接口获取数据失败!",
  102. });
  103. }
  104. });
  105. },
  106. },
  107. onLoad(options) {
  108. console.log(options, "result");
  109. this.queryObj = options;
  110. this.getInfo();
  111. // #ifdef APP-PLUS
  112. webHandle("no", "app");
  113. // #endif
  114. // #ifdef H5
  115. webHandle("no", "wx");
  116. // #endif
  117. },
  118. };
  119. </script>
  120. <style lang="less" scoped>
  121. .Scanning_Result {
  122. height: 100vh;
  123. display: flex;
  124. flex-direction: column;
  125. background-color: #fff;
  126. /deep/ uni-checkbox .uni-checkbox-input{
  127. color: #35b34a!important;
  128. width: 30rpx!important;
  129. height: 30rpx!important;
  130. }
  131. .Scanning_top {
  132. flex-shrink: 0;
  133. .Scanning_top_icon {
  134. padding-top: 26rpx;
  135. display: flex;
  136. justify-content: center;
  137. align-items: center;
  138. .cubeic-ok {
  139. font-size: 58rpx;
  140. color: #35b34a;
  141. }
  142. .text1 {
  143. font-size: 40rpx;
  144. font-weight: bold;
  145. }
  146. }
  147. .Scanning_top_text{
  148. text-align: center;
  149. font-size: 30rpx;
  150. font-weight: bold;
  151. padding: 8rpx 0 23rpx 0;
  152. }
  153. }
  154. .Scanning_cont {
  155. flex: 1;
  156. min-height: 0;
  157. display: flex;
  158. flex-direction: column;
  159. margin: 0 45rpx;
  160. .Scanning_cont_head{
  161. flex-shrink: 0;
  162. height: 78rpx;
  163. display: flex;
  164. border-top: 1rpx solid #EEEEEE;
  165. border-bottom: 1rpx solid #EEEEEE;
  166. .Scanning_cont_head_item{
  167. flex: 1;
  168. font-size: 32rpx;
  169. font-weight: bold;
  170. display: flex;
  171. justify-content: center;
  172. align-items: center;
  173. position: relative;
  174. &.active{
  175. color: #49B856;
  176. &::before{
  177. content: '';
  178. width: 70rpx;
  179. height: 10rpx;
  180. background-color: #49B856;
  181. position: absolute;
  182. left: 50%;
  183. bottom: 0;
  184. transform: translateX(-50%);
  185. border-radius: 6rpx;
  186. }
  187. }
  188. &::after{
  189. content: '';
  190. width: 2rpx;
  191. height: 44rpx;
  192. background-color: #D1D1D1;
  193. position: absolute;
  194. right: 0;
  195. top: 50%;
  196. transform: translateY(-50%);
  197. }
  198. &:last-of-type::after{
  199. opacity: 0;
  200. }
  201. }
  202. }
  203. .Scanning_cont_list{
  204. flex: 1;
  205. min-height: 0;
  206. display: flex;
  207. flex-direction: column;
  208. .Scanning_cont_list_scroll{
  209. flex: 1;
  210. min-height: 0;
  211. border: 1rpx solid #E9E9E9;
  212. }
  213. .Scanning_cont_list_item{
  214. height: 100rpx;
  215. display: flex;
  216. justify-content: center;
  217. align-items: center;
  218. font-size: 30rpx;
  219. border-bottom: 2rpx solid #D3D3D3;
  220. border-top: none;
  221. background: #FBFCFE;
  222. &:last-of-type{
  223. border-bottom: 1rpx solid #E9E9E9;
  224. }
  225. &.Scanning_cont_list_head{
  226. font-weight: bold;
  227. font-size: 28rpx;
  228. border-top: 1rpx solid #272727;
  229. flex-shrink: 0;
  230. }
  231. .name,
  232. .value{
  233. padding: 0 45rpx;
  234. flex: 1;
  235. display: flex;
  236. justify-content: center;
  237. align-items: center;
  238. height: 100%;
  239. // border-right: 1rpx solid #272727;
  240. }
  241. .value {
  242. view{
  243. width: 4em;
  244. text-align: center;
  245. }
  246. }
  247. }
  248. }
  249. }
  250. .foot_btn {
  251. margin: 57rpx 20rpx 10rpx;
  252. flex-shrink: 0;
  253. display: flex;
  254. justify-content: center;
  255. .btn {
  256. height: 88rpx;
  257. line-height: 1;
  258. display: flex;
  259. justify-content: center;
  260. align-items: center;
  261. flex: 1;
  262. margin-right: 32rpx;
  263. background-image: linear-gradient(to right, #72c172, #3bb197);
  264. color: #fff;
  265. border-radius: 8rpx;
  266. font-size: 34rpx;
  267. font-weight: bold;
  268. &:last-of-type{
  269. margin-right: 0;
  270. }
  271. }
  272. }
  273. }
  274. </style>