checkboxModal.vue 5.9 KB

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