handViewDrugsBag.vue 8.9 KB

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