handViewSpecimen.vue 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  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.specimenDesc||'无'}}</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.stype ? spe.stype.name : "无" }}</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. this.spe = {};
  157. this.loading = true;
  158. this.cValue = e.target.value;
  159. clearTimeout(this.timer);
  160. if (this.cValue.length <= 4) {
  161. this.spe = {};
  162. this.loading = false;
  163. return;
  164. }
  165. this.timer = setTimeout(() => {
  166. let nAccount = e.target.value;
  167. post("/simple/data/fetchDataList/specimen", {
  168. "idx": 0,
  169. "sum": 1,
  170. "specimen": {
  171. "searchType": 1, //只有这里需要
  172. "hosId": this.hosId,
  173. "scode": e.target.value,
  174. "wxSign": "1",
  175. }
  176. }).then(result => {
  177. if (result.status == 200) {
  178. if (this.cValue === nAccount) {
  179. if (result.list && result.list.length) {
  180. //有值
  181. this.spe = result.list[0];
  182. } else {
  183. // 没值
  184. this.spe = {};
  185. }
  186. this.loading = false;
  187. }
  188. } else {
  189. this.spe = {};
  190. this.loading = false;
  191. }
  192. }).catch(err => {
  193. this.spe = {};
  194. this.loading = false;
  195. })
  196. }, 500)
  197. },
  198. // 确定
  199. ok() {
  200. this.$emit("ok", this.spe);
  201. },
  202. // 取消
  203. cancel() {
  204. this.$emit("cancel");
  205. },
  206. },
  207. created() {
  208. this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
  209. }
  210. };
  211. </script>
  212. <style lang="less" scoped>
  213. .changeHospital {
  214. position: fixed;
  215. left: 0;
  216. right: 0;
  217. top: 0;
  218. bottom: 0;
  219. background-color: rgba(0, 0, 0, 0.2);
  220. z-index: 999;
  221. .uni-list-cell {
  222. width: 90%;
  223. display: flex;
  224. flex-direction: row;
  225. justify-content: space-evenly;
  226. align-items: center;
  227. text-align: center;
  228. margin-top: 32rpx;
  229. .uni-list-cell-left {
  230. flex: 3;
  231. font-size: 32rpx;
  232. color: #666;
  233. }
  234. .uni-list-cell-db {
  235. border: 1px solid #e5e9ed;
  236. background-color: #fff;
  237. padding: 16rpx 0;
  238. flex: 5;
  239. }
  240. .uni-list-cell-db-text {
  241. flex: 5;
  242. text-align: left;
  243. }
  244. }
  245. .changeHospital__wrap {
  246. width: 90vw;
  247. position: absolute;
  248. left: 50%;
  249. top: 50%;
  250. transform: translate(-50%, -50%);
  251. background-color: #fff;
  252. border-radius: 12rpx;
  253. color: #666;
  254. .changeHospital__header {
  255. font-size: 36rpx;
  256. color: #000;
  257. height: 84rpx;
  258. display: flex;
  259. justify-content: center;
  260. align-items: center;
  261. }
  262. .changeHospital__article {
  263. width: 90%;
  264. margin: 0 auto 25rpx;
  265. padding: 48rpx 0;
  266. background-color: rgb(249, 250, 251);
  267. border: 2rpx solid rgb(229, 233, 237);
  268. border-radius: 12rpx;
  269. box-sizing: border-box;
  270. display: flex;
  271. flex-direction: column;
  272. justify-content: center;
  273. align-items: center;
  274. &.p0 {
  275. padding: 0;
  276. }
  277. .changeHospital__icon {
  278. font-size: 138rpx;
  279. margin-bottom: 32rpx;
  280. &.changeHospital__icon--success {
  281. color: rgb(52, 179, 73);
  282. }
  283. &.changeHospital__icon--warn {
  284. color: rgb(245, 165, 35);
  285. }
  286. &.changeHospital__icon--error {
  287. color: rgb(255, 58, 82);
  288. }
  289. }
  290. .changeHospital__content {
  291. font-size: 36rpx;
  292. }
  293. .changeHospital__info {
  294. font-size: 32rpx;
  295. color: rgb(102, 102, 102);
  296. }
  297. .specialCloseFlag {
  298. width: 90%;
  299. height: 100%;
  300. padding: 16rpx;
  301. }
  302. .radio-wrap {
  303. .radio-item {
  304. margin-top: 16rpx;
  305. /deep/ .uni-radio-input-checked {
  306. background-color: #49b856 !important;
  307. border-color: #49b856 !important;
  308. }
  309. }
  310. }
  311. }
  312. .changeHospital__footer {
  313. box-sizing: border-box;
  314. height: 100rpx;
  315. border-top: 2rpx solid rgb(229, 233, 237);
  316. display: flex;
  317. align-items: center;
  318. view {
  319. height: 100%;
  320. display: flex;
  321. align-items: center;
  322. justify-content: center;
  323. font-size: 36rpx;
  324. color: rgb(102, 102, 102);
  325. position: relative;
  326. &:nth-of-type(2)::before {
  327. content: "";
  328. position: absolute;
  329. left: 0;
  330. bottom: 0;
  331. width: 2rpx;
  332. height: 87rpx;
  333. background-color: rgb(229, 233, 237);
  334. }
  335. }
  336. .changeHospital__ok {
  337. flex: 1;
  338. color: rgb(73, 184, 86);
  339. }
  340. .changeHospital__cancel {
  341. flex: 1;
  342. }
  343. .changeHospital__know {
  344. flex: 1;
  345. color: rgb(73, 184, 86);
  346. }
  347. }
  348. }
  349. }
  350. </style>