handViewPatient.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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. {{name}}:
  11. </view>
  12. <view class="uni-list-cell-db">
  13. <input class="uni-input" auto-focus="true" :placeholder="'请填写'+name" v-model="account"
  14. @input="bindPickerChange($event)" />
  15. </view>
  16. </view>
  17. <view class="uni-list-cell">
  18. <view class="uni-list-cell-left">
  19. 患者姓名:
  20. </view>
  21. <view class="uni-list-cell-db-text">
  22. <text v-show="!loading">{{patientDTO.patientName||'无'}}</text>
  23. <view class="sk-circle" v-show="loading">
  24. <view class="sk-circle-dot"></view>
  25. <view class="sk-circle-dot"></view>
  26. <view class="sk-circle-dot"></view>
  27. <view class="sk-circle-dot"></view>
  28. <view class="sk-circle-dot"></view>
  29. <view class="sk-circle-dot"></view>
  30. <view class="sk-circle-dot"></view>
  31. <view class="sk-circle-dot"></view>
  32. <view class="sk-circle-dot"></view>
  33. <view class="sk-circle-dot"></view>
  34. <view class="sk-circle-dot"></view>
  35. <view class="sk-circle-dot"></view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="changeHospital__footer">
  41. <view v-if="operate.ok" class="changeHospital__ok" @click="ok" hover-class="seimin-btn-hover">
  42. {{ operate.ok || "" }}
  43. </view>
  44. <view v-if="operate.cancel" class="changeHospital__cancel" @click="cancel" hover-class="seimin-btn-hover">
  45. {{ operate.cancel || "" }}
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. import {
  53. post
  54. } from "../../http/http.js";
  55. export default {
  56. data() {
  57. return {
  58. cValue: '', //当前输入的内容
  59. loading: false,
  60. userData: null,
  61. hosId: null,
  62. timer: null,
  63. patientDTO: {}, //发药单对象
  64. account: '',
  65. };
  66. },
  67. watch: {
  68. disjunctor(newValue) {
  69. if (newValue && this.operate.know == "知道了") {
  70. this.time = 5;
  71. this.timer = setInterval(() => {
  72. this.time--;
  73. if (this.time <= 0) {
  74. clearInterval(this.timer);
  75. this.know();
  76. }
  77. }, 1000);
  78. }
  79. },
  80. },
  81. props: {
  82. // 显示隐藏
  83. disjunctor: {
  84. type: Boolean,
  85. default: false,
  86. },
  87. // 标题
  88. title: {
  89. type: String,
  90. default: "提示",
  91. },
  92. // 操作按钮文字
  93. operate: {
  94. type: Object,
  95. default: () => {
  96. return {
  97. ok: "确认",
  98. cancel: "取消",
  99. };
  100. },
  101. },
  102. name: {
  103. type: String,
  104. default: '患者住院号'
  105. }
  106. },
  107. methods: {
  108. //修改picker的值
  109. bindPickerChange(e) {
  110. this.patientDTO = {};
  111. this.loading = true;
  112. this.cValue = e.target.value;
  113. clearTimeout(this.timer);
  114. if (this.cValue.length <= 4) {
  115. this.patientDTO = {};
  116. this.loading = false;
  117. return;
  118. }
  119. this.timer = setTimeout(() => {
  120. let nAccount = e.target.value;
  121. post("/patient/patientByCode ", {
  122. "code": e.target.value,
  123. }).then(result => {
  124. if (result.status == 200) {
  125. if (this.cValue === nAccount) {
  126. if (result.data) {
  127. //有值
  128. this.patientDTO = result.data;
  129. } else {
  130. // 没值
  131. this.patientDTO = {};
  132. }
  133. this.loading = false;
  134. }
  135. } else {
  136. this.patientDTO = {};
  137. this.loading = false;
  138. }
  139. }).catch(err=>{
  140. this.patientDTO = {};
  141. this.loading = false;
  142. })
  143. }, 500)
  144. },
  145. // 确定
  146. ok() {
  147. this.$emit("ok", this.patientDTO);
  148. },
  149. // 取消
  150. cancel() {
  151. this.$emit("cancel");
  152. },
  153. },
  154. created() {
  155. this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
  156. }
  157. };
  158. </script>
  159. <style lang="less" scoped>
  160. .changeHospital {
  161. position: fixed;
  162. left: 0;
  163. right: 0;
  164. top: 0;
  165. bottom: 0;
  166. background-color: rgba(0, 0, 0, 0.2);
  167. z-index: 999;
  168. .uni-list-cell {
  169. width: 90%;
  170. display: flex;
  171. flex-direction: row;
  172. justify-content: space-evenly;
  173. align-items: center;
  174. text-align: center;
  175. margin-top: 32rpx;
  176. .uni-list-cell-left {
  177. flex: 3;
  178. font-size: 32rpx;
  179. color: #666;
  180. }
  181. .uni-list-cell-db {
  182. border: 1px solid #e5e9ed;
  183. background-color: #fff;
  184. padding: 16rpx 0;
  185. flex: 5;
  186. }
  187. .uni-list-cell-db-text {
  188. flex: 5;
  189. text-align: left;
  190. }
  191. }
  192. .changeHospital__wrap {
  193. width: 90vw;
  194. position: absolute;
  195. left: 50%;
  196. top: 50%;
  197. transform: translate(-50%, -50%);
  198. background-color: #fff;
  199. border-radius: 12rpx;
  200. color: #666;
  201. .changeHospital__header {
  202. font-size: 36rpx;
  203. color: #000;
  204. height: 84rpx;
  205. display: flex;
  206. justify-content: center;
  207. align-items: center;
  208. }
  209. .changeHospital__article {
  210. width: 90%;
  211. margin: 0 auto 25rpx;
  212. padding: 48rpx 0;
  213. background-color: rgb(249, 250, 251);
  214. border: 2rpx solid rgb(229, 233, 237);
  215. border-radius: 12rpx;
  216. box-sizing: border-box;
  217. display: flex;
  218. flex-direction: column;
  219. justify-content: center;
  220. align-items: center;
  221. &.p0 {
  222. padding: 0;
  223. }
  224. .changeHospital__icon {
  225. font-size: 138rpx;
  226. margin-bottom: 32rpx;
  227. &.changeHospital__icon--success {
  228. color: rgb(52, 179, 73);
  229. }
  230. &.changeHospital__icon--warn {
  231. color: rgb(245, 165, 35);
  232. }
  233. &.changeHospital__icon--error {
  234. color: rgb(255, 58, 82);
  235. }
  236. }
  237. .changeHospital__content {
  238. font-size: 36rpx;
  239. }
  240. .changeHospital__info {
  241. font-size: 32rpx;
  242. color: rgb(102, 102, 102);
  243. }
  244. .specialCloseFlag {
  245. width: 90%;
  246. height: 100%;
  247. padding: 16rpx;
  248. }
  249. .radio-wrap {
  250. .radio-item {
  251. margin-top: 16rpx;
  252. /deep/ .uni-radio-input-checked {
  253. background-color: #49b856 !important;
  254. border-color: #49b856 !important;
  255. }
  256. }
  257. }
  258. }
  259. .changeHospital__footer {
  260. box-sizing: border-box;
  261. height: 100rpx;
  262. border-top: 2rpx solid rgb(229, 233, 237);
  263. display: flex;
  264. align-items: center;
  265. view {
  266. height: 100%;
  267. display: flex;
  268. align-items: center;
  269. justify-content: center;
  270. font-size: 36rpx;
  271. color: rgb(102, 102, 102);
  272. position: relative;
  273. &:nth-of-type(2)::before {
  274. content: "";
  275. position: absolute;
  276. left: 0;
  277. bottom: 0;
  278. width: 2rpx;
  279. height: 87rpx;
  280. background-color: rgb(229, 233, 237);
  281. }
  282. }
  283. .changeHospital__ok {
  284. flex: 1;
  285. color: rgb(73, 184, 86);
  286. }
  287. .changeHospital__cancel {
  288. flex: 1;
  289. }
  290. .changeHospital__know {
  291. flex: 1;
  292. color: rgb(73, 184, 86);
  293. }
  294. }
  295. }
  296. }
  297. </style>