changeHospital.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. <template>
  2. <view class="changeHospital" v-show="disjunctor">
  3. <view class="changeHospital__wrap">
  4. <view class="changeHospital__header" v-if="title">
  5. {{ title }}
  6. </view>
  7. <view class="changeHospital__article">
  8. <view class="uni-list-cell">
  9. <view class="uni-list-cell-left">
  10. 当前选择
  11. </view>
  12. <view class="uni-list-cell-db">
  13. <picker @change="bindPickerChange" :value="index" :range="hospitals" range-key="hosName">
  14. <view class="uni-input">{{hospitals[index].hosName}}</view>
  15. </picker>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="changeHospital__footer">
  20. <view v-if="operate.ok" class="changeHospital__ok" @click="ok" hover-class="seimin-btn-hover">
  21. {{ operate.ok || "" }}
  22. </view>
  23. <view v-if="operate.cancel" class="changeHospital__cancel" @click="cancel" hover-class="seimin-btn-hover">
  24. {{ operate.cancel || "" }}
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. import {
  32. post
  33. } from "../../http/http.js";
  34. export default {
  35. data() {
  36. return {
  37. index: 0,
  38. hospitals: [],
  39. userData: null,
  40. };
  41. },
  42. watch: {
  43. disjunctor(newValue) {
  44. if (newValue && this.operate.know == "知道了") {
  45. this.time = 5;
  46. this.timer = setInterval(() => {
  47. this.time--;
  48. if (this.time <= 0) {
  49. clearInterval(this.timer);
  50. this.know();
  51. }
  52. }, 1000);
  53. }
  54. },
  55. },
  56. props: {
  57. // 显示隐藏
  58. disjunctor: {
  59. type: Boolean,
  60. default: false,
  61. },
  62. // 标题
  63. title: {
  64. type: String,
  65. default: "提示",
  66. },
  67. // 操作按钮文字
  68. operate: {
  69. type: Object,
  70. default: () => {
  71. return {
  72. ok: "确认",
  73. cancel: "取消",
  74. };
  75. },
  76. },
  77. },
  78. methods: {
  79. //修改picker的值
  80. bindPickerChange: function(e) {
  81. this.index = e.target.value
  82. },
  83. // 确定
  84. ok() {
  85. this.$emit("ok", this.hospitals[this.index].id);
  86. },
  87. // 取消
  88. cancel() {
  89. this.$emit("cancel");
  90. },
  91. },
  92. created() {
  93. this.userData = uni.getStorageSync('userData');
  94. this.hospitals = this.userData.infoPermission.hospitals;
  95. this.index = this.hospitals.findIndex(item => item.id == this.userData.user.currentHospital.id);
  96. }
  97. };
  98. </script>
  99. <style lang="less">
  100. .changeHospital {
  101. position: fixed;
  102. left: 0;
  103. right: 0;
  104. top: 0;
  105. bottom: 0;
  106. background-color: rgba(0, 0, 0, 0.2);
  107. z-index: 999;
  108. .uni-list-cell {
  109. width: 90%;
  110. display: flex;
  111. flex-direction: row;
  112. justify-content: space-evenly;
  113. align-items: center;
  114. text-align: center;
  115. .uni-list-cell-left {
  116. flex: 2;
  117. }
  118. .uni-list-cell-db {
  119. border: 1px solid #e5e9ed;
  120. background-color: #fff;
  121. padding: 16rpx 0;
  122. flex: 5;
  123. }
  124. }
  125. .changeHospital__wrap {
  126. width: 90vw;
  127. position: absolute;
  128. left: 50%;
  129. top: 50%;
  130. transform: translate(-50%, -50%);
  131. background-color: #fff;
  132. border-radius: 12rpx;
  133. .changeHospital__header {
  134. font-size: 36rpx;
  135. color: 000;
  136. height: 84rpx;
  137. display: flex;
  138. justify-content: center;
  139. align-items: center;
  140. }
  141. .changeHospital__article {
  142. width: 90%;
  143. margin: 40rpx auto 25rpx;
  144. padding: 48rpx 0;
  145. background-color: rgb(249, 250, 251);
  146. border: 2rpx solid rgb(229, 233, 237);
  147. border-radius: 12rpx;
  148. box-sizing: border-box;
  149. display: flex;
  150. flex-direction: column;
  151. justify-content: center;
  152. align-items: center;
  153. &.p0 {
  154. padding: 0;
  155. }
  156. .changeHospital__icon {
  157. font-size: 138rpx;
  158. margin-bottom: 32rpx;
  159. &.changeHospital__icon--success {
  160. color: rgb(52, 179, 73);
  161. }
  162. &.changeHospital__icon--warn {
  163. color: rgb(245, 165, 35);
  164. }
  165. &.changeHospital__icon--error {
  166. color: rgb(255, 58, 82);
  167. }
  168. }
  169. .changeHospital__content {
  170. font-size: 36rpx;
  171. }
  172. .changeHospital__info {
  173. font-size: 32rpx;
  174. color: rgb(102, 102, 102);
  175. }
  176. .specialCloseFlag {
  177. width: 90%;
  178. height: 100%;
  179. padding: 16rpx;
  180. }
  181. .radio-wrap {
  182. .radio-item {
  183. margin-top: 16rpx;
  184. /deep/ .uni-radio-input-checked {
  185. background-color: #49b856 !important;
  186. border-color: #49b856 !important;
  187. }
  188. }
  189. }
  190. }
  191. .changeHospital__footer {
  192. box-sizing: border-box;
  193. height: 100rpx;
  194. border-top: 2rpx solid rgb(229, 233, 237);
  195. display: flex;
  196. align-items: center;
  197. view {
  198. height: 100%;
  199. display: flex;
  200. align-items: center;
  201. justify-content: center;
  202. font-size: 36rpx;
  203. color: rgb(102, 102, 102);
  204. position: relative;
  205. &:nth-of-type(2)::before {
  206. content: "";
  207. position: absolute;
  208. left: 0;
  209. bottom: 0;
  210. width: 2rpx;
  211. height: 87rpx;
  212. background-color: rgb(229, 233, 237);
  213. }
  214. }
  215. .changeHospital__ok {
  216. flex: 1;
  217. color: rgb(73, 184, 86);
  218. }
  219. .changeHospital__cancel {
  220. flex: 1;
  221. }
  222. .changeHospital__know {
  223. flex: 1;
  224. color: rgb(73, 184, 86);
  225. }
  226. }
  227. }
  228. }
  229. </style>