selectAccount2.vue 11 KB

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