selectAccount.vue 9.0 KB

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