selectNum.vue 5.7 KB

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