pharmacyDetails.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. <template>
  2. <view class="pharmacyDetails">
  3. <view class="pharmacyDetails_title">请领信息</view>
  4. <view class="page_item_wrap">
  5. <view class="page_item">
  6. <view class="page_item_top">
  7. <view class="page_item_top-inner">
  8. <view class="page_item_top_L">
  9. <text class="L_text">请领单:{{ infoDATA.packid }}</text>
  10. </view>
  11. <view class="page_item_top_R">
  12. <text class="L_iocn">{{
  13. infoDATA.drugsState && infoDATA.drugsState.name
  14. }}</text>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="page_item_cont">
  19. <view class="page_item_cont_T">
  20. <view class="page_item_cont_title">
  21. <text>批次号</text>
  22. <text class="text_big">{{ infoDATA.batchNo }}</text>
  23. </view>
  24. </view>
  25. <view class="page_item_cont_B">
  26. <view class="page_item_cont_title">
  27. <text>请领时间</text>
  28. <text class="text_big">
  29. <text>{{ infoDATA.creatTime }}</text>
  30. </text>
  31. </view>
  32. </view>
  33. <view class="page_item_cont_C">
  34. <view class="page_item_cont_title_C">
  35. <text>请领科室</text>
  36. <text class="text_big">
  37. <text>{{ infoDATA.target && infoDATA.target.dept }}</text>
  38. </text>
  39. </view>
  40. </view>
  41. </view>
  42. <view class="L"></view>
  43. <view class="R"></view>
  44. </view>
  45. <view class="L-l"></view>
  46. <view class="R-l"></view>
  47. </view>
  48. <button
  49. class="cube-toolbar-item"
  50. :loading="isLoading"
  51. :disabled="isLoading"
  52. @click="dispensing(1)"
  53. v-if="infoDATA.drugsState && infoDATA.drugsState.name == '待配药'"
  54. >
  55. 开始配药
  56. </button>
  57. <button
  58. class="cube-toolbar-item"
  59. :loading="isLoading"
  60. :disabled="isLoading"
  61. @click="dispensing(2)"
  62. v-if="infoDATA.drugsState && infoDATA.drugsState.name == '配药中'"
  63. >
  64. 完成配药
  65. </button>
  66. </view>
  67. </template>
  68. <script>
  69. import { get, post, SM, webHandle } from "../../http/http.js";
  70. export default {
  71. data() {
  72. return {
  73. infoDATA: [],
  74. isLoading: false,
  75. };
  76. },
  77. methods: {
  78. // 开始配药,完成配药,,,1是待配药,2是配药中
  79. dispensing(type) {
  80. this.isLoading = true;
  81. if (type == 1) {
  82. post("/drugsBag/changeToIng", {
  83. id: this.infoDATA.id,
  84. }).then((result) => {
  85. if (result.state == 200) {
  86. let data = {
  87. launchId: this.infoDATA.launch.id,
  88. drugsBagId: this.infoDATA.id,
  89. };
  90. post("/drugsBag/autoDrugsBags", data).then((result1) => {
  91. this.isLoading = false;
  92. if (result1.status == 200) {
  93. uni.showToast({
  94. title: "操作成功!",
  95. success() {
  96. // setTimeout(() => {
  97. uni.navigateTo({
  98. url: "../pharmacy/pharmacy",
  99. });
  100. // }, 3000)
  101. },
  102. });
  103. }else if(result1.status == 501){
  104. uni.showToast({
  105. icon: "none",
  106. title: result1.error,
  107. });
  108. }else {
  109. uni.showToast({
  110. icon: "none",
  111. title: "请求失败!",
  112. });
  113. }
  114. });
  115. } else {
  116. this.isLoading = false;
  117. uni.showToast({
  118. icon: "none",
  119. title: "请求失败!",
  120. });
  121. }
  122. });
  123. } else if (type == 2) {
  124. post("/drugsBag/changeToCheck", {
  125. id: this.infoDATA.id,
  126. }).then((result) => {
  127. this.isLoading = false;
  128. if (result.state == 200) {
  129. uni.showToast({
  130. title: "操作成功!",
  131. success() {
  132. // setTimeout(() => {
  133. uni.navigateTo({
  134. url: "../pharmacy/pharmacy",
  135. });
  136. // }, 3000)
  137. },
  138. });
  139. } else {
  140. uni.showToast({
  141. icon: "none",
  142. title: "请求失败!",
  143. });
  144. }
  145. });
  146. }
  147. },
  148. },
  149. onLoad(options) {
  150. // #ifdef APP-PLUS
  151. webHandle("no", "app");
  152. // #endif
  153. // #ifdef H5
  154. webHandle("no", "wx");
  155. // #endif
  156. //扫码进入详情
  157. let qrcode = options.qrcode;
  158. if (qrcode) {
  159. uni.showLoading({
  160. title: "加载中",
  161. mask: true,
  162. });
  163. post("/drugsBag/getDrugsBagByQr", {
  164. qrcode,
  165. }).then((result) => {
  166. uni.hideLoading();
  167. if (result.state == 200) {
  168. this.infoDATA = result.result;
  169. } else {
  170. uni.showToast({
  171. icon: "none",
  172. title: "请求失败!",
  173. });
  174. }
  175. });
  176. }
  177. // 点击列表进入详情
  178. let id = options.id;
  179. if (id) {
  180. uni.showLoading({
  181. title: "加载中",
  182. mask: true,
  183. });
  184. get("/api/fetchData/drugsBag/" + id).then((res) => {
  185. uni.hideLoading();
  186. if (res.status == 200) {
  187. this.infoDATA = res.data;
  188. } else {
  189. uni.showToast({
  190. icon: "none",
  191. title: "请求失败!",
  192. });
  193. }
  194. });
  195. }
  196. },
  197. };
  198. </script>
  199. <style lang="less">
  200. .pharmacyDetails {
  201. background-color: rgb(249, 250, 251);
  202. padding-top: 10%;
  203. .pharmacyDetails_title {
  204. font-size: 46rpx;
  205. font-weight: 550;
  206. text-align: center;
  207. }
  208. .page_item_wrap {
  209. position: relative;
  210. margin-top: 32rpx;
  211. .page_item {
  212. margin-top: 16rpx;
  213. margin-bottom: 124rpx;
  214. background: #fff;
  215. border-radius: 8rpx;
  216. margin: 0 20rpx;
  217. border: 2rpx solid #e5e9ed;
  218. position: relative;
  219. overflow: hidden;
  220. padding: 0 16rpx;
  221. .L {
  222. width: 40rpx;
  223. height: 40rpx;
  224. border-radius: 50%;
  225. background: #f9fafb;
  226. position: absolute;
  227. left: -20rpx;
  228. top: 68rpx;
  229. border: 2rpx solid #e5e9ed;
  230. }
  231. .R {
  232. width: 40rpx;
  233. height: 40rpx;
  234. border-radius: 50%;
  235. background: #f9fafb;
  236. position: absolute;
  237. float: right;
  238. right: -20rpx;
  239. top: 68rpx;
  240. border: 2rpx solid #e5e9ed;
  241. }
  242. .page_item_top {
  243. height: 88rpx;
  244. border-bottom: 2rpx dashed #e5e9ed;
  245. padding: 0 16rpx;
  246. .page_item_top-inner {
  247. display: flex;
  248. justify-content: space-between;
  249. align-items: center;
  250. height: 100%;
  251. .page_item_top_L {
  252. .L_text {
  253. font-size: 32rpx;
  254. font-weight: 700;
  255. }
  256. }
  257. .page_item_top_R {
  258. font-size: 32rpx;
  259. .L_iocn {
  260. color: rgb(7, 134, 60);
  261. font-size: 36rpx;
  262. font-weight: 700;
  263. }
  264. }
  265. }
  266. }
  267. .page_item_cont {
  268. min-height: 180rpx;
  269. max-height: 424rpx;
  270. padding: 0 16rpx;
  271. text-align: left;
  272. position: relative;
  273. .text_big {
  274. font-size: 32rpx;
  275. font-weight: 700;
  276. text {
  277. font-weight: 700;
  278. line-height: 1.5;
  279. }
  280. }
  281. .line {
  282. height: 20rpx;
  283. width: 2rpx;
  284. border-left: 2rpx solid #e5e9ed;
  285. position: absolute;
  286. top: 82rpx;
  287. left: 40rpx;
  288. }
  289. .page_item_cont_T {
  290. padding-top: 28rpx;
  291. font-size: 28rpx;
  292. .page_item_cont_title {
  293. height: 100%;
  294. font-size: 32rpx;
  295. display: flex;
  296. justify-content: space-between;
  297. }
  298. }
  299. .page_item_cont_B {
  300. padding-top: 28rpx;
  301. margin-bottom: 28rpx;
  302. .page_item_cont_title {
  303. font-size: 32rpx;
  304. display: flex;
  305. justify-content: space-between;
  306. align-items: center;
  307. }
  308. }
  309. .page_item_cont_C {
  310. margin-bottom: 28rpx;
  311. .page_item_cont_title_C {
  312. font-size: 32rpx;
  313. display: flex;
  314. justify-content: space-between;
  315. align-items: center;
  316. }
  317. }
  318. #infos {
  319. display: none;
  320. }
  321. }
  322. }
  323. .L-l {
  324. width: 2rpx;
  325. height: 40rpx;
  326. background: #f9fafb;
  327. position: absolute;
  328. left: 20rpx;
  329. top: 72rpx;
  330. }
  331. .R-l {
  332. width: 2rpx;
  333. height: 40rpx;
  334. background: #f9fafb;
  335. position: absolute;
  336. right: 20rpx;
  337. top: 72rpx;
  338. }
  339. }
  340. .cube-toolbar-item {
  341. width: 710rpx;
  342. height: 68rpx;
  343. line-height: 68rpx;
  344. position: fixed;
  345. left: 20rpx;
  346. bottom: 32rpx;
  347. border-radius: 8rpx;
  348. background: linear-gradient(to right, #72c172, #3bb197);
  349. font-size: 36rpx;
  350. color: #fff;
  351. text-align: center;
  352. }
  353. }
  354. </style>