handViewBlood.vue 9.8 KB

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