scanning_result_seimin.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457
  1. <template>
  2. <view class="Scanning_Result_seimin">
  3. <view class="Scanning_top" v-if="queryObj.status == 200">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok newicon newicon-duigou"></text>
  6. </view>
  7. <view class="Scanning_top_text">
  8. <view class="text1"> 操作成功 </view>
  9. </view>
  10. </view>
  11. <view class="Scanning_top" v-if="queryObj.status != 200">
  12. <view class="Scanning_top_icon">
  13. <text class="cubeic-close newicon newicon-shibai"></text>
  14. </view>
  15. <view class="Scanning_top_text">
  16. <view class="text1"> 操作失败 </view>
  17. </view>
  18. </view>
  19. <view class="Scanning_cont" v-if="queryObj.status == 200">
  20. <view class="Scanning_cont_block"> 药包编码 : #{{ queryObj.packid }} </view>
  21. <view class="Scanning_cont_block" v-if="queryObj.account"> 交接人工号 : {{ queryObj.account }} </view>
  22. <view class="Scanning_cont_block" v-if="queryObj.accountName">
  23. 交接人姓名 : {{ queryObj.accountName }}
  24. </view>
  25. <view class="Scanning_cont_block"> 所属科室 : {{ queryObj.targetDept || "-" }} </view>
  26. <!-- 药品批次列表 -->
  27. <table class="speTable">
  28. <tr>
  29. <td>药包号</td>
  30. <td>药包状态</td>
  31. </tr>
  32. <tr v-for="item in batchNoList" :key="item.id">
  33. <td class="maxWidth">{{item.packid || "无"}}</td>
  34. <td>{{item.drugsState ? item.drugsState.name : "无"}}</td>
  35. </tr>
  36. </table>
  37. <!-- <view class="page_item_wrap" v-for="item in batchNoList" :key="item.id">
  38. <view class="page_item">
  39. <view class="page_item_top">
  40. <view class="page_item_top-inner">
  41. <view class="page_item_top_L">
  42. <view class="L_text">{{item.packid || "无"}}</view>
  43. </view>
  44. <view class="page_item_top_R">
  45. <text>{{item.drugsState ? item.drugsState.name : "无"}}</text>
  46. </view>
  47. </view>
  48. </view>
  49. <view class="page_item_cont">
  50. <view class="page_item_cont_T">
  51. </view>
  52. </view>
  53. <view class="L"></view>
  54. <view class="R"></view>
  55. </view>
  56. <view class="L-l"></view>
  57. <view class="R-l"></view>
  58. </view> -->
  59. </view>
  60. <view class="Scanning_cont" v-if="queryObj.status != 200">
  61. <view class="Scanning_cont_center Scanning_cont_block">
  62. {{ queryObj.msg }}
  63. </view>
  64. </view>
  65. <view class="foot_btn">
  66. <view class="btn3" @click="showAlert()"> 知道了 </view>
  67. </view>
  68. </view>
  69. </template>
  70. <script>
  71. import { post, webHandle } from "../../http/http.js";
  72. export default {
  73. data() {
  74. return {
  75. hosId: null,
  76. options: {},
  77. queryObj: {},
  78. batchNoList: [],
  79. taskTypeConfig: {},
  80. };
  81. },
  82. methods: {
  83. // 知道了
  84. showAlert() {
  85. uni.navigateTo({
  86. url: "../receiptpage/receiptpage",
  87. });
  88. },
  89. // 判断药品页面控制-是否显示关联批次药品
  90. isShowDrugsBatchInfo(){
  91. uni.showLoading({
  92. title: "加载中",
  93. mask: true,
  94. });
  95. post("/simple/data/fetchDataList/taskType", {
  96. "idx": 0,
  97. "sum": 10,
  98. "taskType": {
  99. "simpleQuery": true,
  100. "hosId": {
  101. "id": this.hosId
  102. },
  103. "associationType": {
  104. "key": "association_types",
  105. "value": "drugsBag"
  106. }
  107. }
  108. }).then((res) => {
  109. if (res.status == 200) {
  110. res.list = res.list || [];
  111. let taskType = res.list[0] || {};
  112. if(taskType.id){
  113. post("/simple/data/fetchDataList/taskTypeConfig", {
  114. "idx": 0,
  115. "sum": 10,
  116. "taskTypeConfig": {
  117. "taskTypeDTO": {
  118. "hosId": {
  119. "id": this.hosId
  120. },
  121. "associationType": taskType.associationType
  122. }
  123. }
  124. }).then((res) => {
  125. if (res.status == 200) {
  126. res.list = res.list || [];
  127. this.taskTypeConfig = res.list[0] || {};
  128. if(this.taskTypeConfig.drugsBatchInfo == 1){
  129. this.queryDrugsBagForBatchNo(this.queryObj.batchNo);
  130. }else{
  131. uni.hideLoading();
  132. }
  133. } else {
  134. uni.hideLoading();
  135. uni.showToast({
  136. icon: "none",
  137. title: res.msg || "接口获取数据失败!",
  138. });
  139. }
  140. });
  141. }else{
  142. uni.hideLoading();
  143. uni.showToast({
  144. icon: "none",
  145. title: "请配置药品任务类型!",
  146. });
  147. }
  148. } else {
  149. uni.hideLoading();
  150. uni.showToast({
  151. icon: "none",
  152. title: res.msg || "接口获取数据失败!",
  153. });
  154. }
  155. });
  156. },
  157. //获取药包信息及其关联的工单信息
  158. queryDrugsBagForBatchNo(batchNo) {
  159. post("/drugsBag/fetchDataList/drugsBag", {
  160. "idx": 0,
  161. "sum": 10,
  162. "drugsBag": {
  163. "hosId": this.hosId,
  164. "batchNo": batchNo,
  165. }
  166. }).then((res) => {
  167. uni.hideLoading();
  168. if (res.status == 200) {
  169. this.batchNoList = res.list || [];
  170. } else {
  171. uni.showToast({
  172. icon: "none",
  173. title: res.msg || "接口获取数据失败!",
  174. });
  175. }
  176. });
  177. },
  178. },
  179. onLoad(options) {
  180. this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
  181. console.log(options, "result");
  182. this.options = options;
  183. this.isShowDrugsBatchInfo();
  184. this.queryObj = JSON.parse(this.options.info);
  185. // #ifdef APP-PLUS
  186. webHandle("no", "app");
  187. // #endif
  188. // #ifdef H5
  189. webHandle("no", "wx");
  190. // #endif
  191. },
  192. };
  193. </script>
  194. <style lang="less">
  195. .Scanning_Result_seimin {
  196. padding: 0 20rpx;
  197. .speTable {
  198. margin: 32rpx 0;
  199. width: 100%;
  200. border-collapse: collapse;
  201. .green{
  202. color: green;
  203. }
  204. .red{
  205. color: red;
  206. }
  207. .maxWidth{
  208. width: 60%;
  209. }
  210. td{
  211. border: 2rpx solid #666;
  212. }
  213. }
  214. .page_item_wrap {
  215. position: relative;
  216. margin-top: 32rpx;
  217. .page_item {
  218. margin-top: 16rpx;
  219. margin-bottom: 124rpx;
  220. background: #fff;
  221. border-radius: 8rpx;
  222. margin: 0 20rpx;
  223. border: 2rpx solid #e5e9ed;
  224. position: relative;
  225. overflow: hidden;
  226. padding: 0 16rpx;
  227. .L {
  228. width: 40rpx;
  229. height: 40rpx;
  230. border-radius: 50%;
  231. background: #f9fafb;
  232. position: absolute;
  233. left: -20rpx;
  234. top: 68rpx;
  235. border: 2rpx solid #e5e9ed;
  236. }
  237. .R {
  238. width: 40rpx;
  239. height: 40rpx;
  240. border-radius: 50%;
  241. background: #f9fafb;
  242. position: absolute;
  243. float: right;
  244. right: -20rpx;
  245. top: 68rpx;
  246. border: 2rpx solid #e5e9ed;
  247. }
  248. .page_item_top {
  249. height: 88rpx;
  250. border-bottom: 2rpx dashed #e5e9ed;
  251. padding: 0 16rpx;
  252. .page_item_top-inner {
  253. display: flex;
  254. justify-content: space-between;
  255. align-items: center;
  256. height: 100%;
  257. .page_item_top_L {
  258. .L_text {
  259. font-size: 32rpx;
  260. font-weight: 700;
  261. }
  262. }
  263. .page_item_top_R {
  264. font-size: 32rpx;
  265. .L_iocn {
  266. color: rgb(7, 134, 60);
  267. font-size: 36rpx;
  268. font-weight: 700;
  269. }
  270. }
  271. }
  272. }
  273. .page_item_cont {
  274. min-height: 90rpx;
  275. padding: 0 16rpx;
  276. text-align: left;
  277. position: relative;
  278. .text_big {
  279. font-size: 32rpx;
  280. font-weight: 700;
  281. // margin-top: 10rpx;
  282. p {
  283. font-weight: 700;
  284. line-height: 1.5;
  285. }
  286. }
  287. .line {
  288. height: 20rpx;
  289. width: 2rpx;
  290. border-left: 2rpx solid #e5e9ed;
  291. position: absolute;
  292. top: 82rpx;
  293. left: 40rpx;
  294. }
  295. .page_item_cont_T {
  296. padding-top: 28rpx;
  297. padding-bottom: 28rpx;
  298. font-size: 28rpx;
  299. .page_item_cont_title {
  300. height: 100%;
  301. font-size: 32rpx;
  302. display: flex;
  303. justify-content: space-between;
  304. align-items: center;
  305. }
  306. }
  307. .page_item_cont_B {
  308. padding-top: 28rpx;
  309. margin-bottom: 28rpx;
  310. .page_item_cont_title {
  311. font-size: 32rpx;
  312. display: flex;
  313. justify-content: space-between;
  314. align-items: center;
  315. }
  316. }
  317. .page_item_cont_C {
  318. margin-bottom: 28rpx;
  319. .page_item_cont_title_C {
  320. font-size: 32rpx;
  321. display: flex;
  322. justify-content: space-between;
  323. align-items: center;
  324. }
  325. }
  326. #infos {
  327. display: none;
  328. }
  329. }
  330. }
  331. .L-l {
  332. width: 2rpx;
  333. height: 40rpx;
  334. background: #f9fafb;
  335. position: absolute;
  336. left: 20rpx;
  337. top: 72rpx;
  338. }
  339. .R-l {
  340. width: 2rpx;
  341. height: 40rpx;
  342. background: #f9fafb;
  343. position: absolute;
  344. right: 20rpx;
  345. top: 72rpx;
  346. }
  347. }
  348. .Scanning_top {
  349. .Scanning_top_icon {
  350. width: 140rpx;
  351. height: 140rpx;
  352. margin: 0 auto;
  353. margin-top: 116rpx;
  354. border-radius: 50%;
  355. line-height: 140rpx;
  356. .cubeic-ok {
  357. font-size: 140rpx;
  358. color: #35b34a;
  359. }
  360. .cubeic-close {
  361. font-size: 140rpx;
  362. color: #ff3b53;
  363. }
  364. }
  365. .Scanning_top_text {
  366. .text1 {
  367. margin-top: 40rpx;
  368. font-size: 48rpx;
  369. text-align: center;
  370. }
  371. .success_tips {
  372. color: red;
  373. font-size: 30rpx;
  374. }
  375. }
  376. }
  377. .Scanning_cont {
  378. font-size: 32rpx;
  379. text-align: center;
  380. .Scanning_cont_block {
  381. margin-bottom: 16rpx;
  382. }
  383. .Scanning_cont_center {
  384. text-align: center;
  385. }
  386. .text {
  387. margin-top: 24rpx;
  388. color: #35b34a;
  389. }
  390. .text1 {
  391. margin-top: 24rpx;
  392. color: #ff3b53;
  393. }
  394. }
  395. .foot_btn {
  396. position: fixed;
  397. bottom: 0;
  398. right: 20rpx;
  399. left: 20rpx;
  400. line-height: 66rpx;
  401. height: 100rpx;
  402. border-top: 2rpx solid #e5e9ed;
  403. background: #f9fafb;
  404. display: flex;
  405. justify-content: space-between;
  406. .btn1,
  407. .btn2,
  408. .btn3 {
  409. height: 66rpx;
  410. width: 100%;
  411. margin: 0 1%;
  412. background-image: linear-gradient(to right, #72c172, #3bb197);
  413. color: #fff;
  414. border-radius: 8rpx;
  415. font-size: 32rpx;
  416. margin-top: 16rpx;
  417. text-align: center;
  418. }
  419. }
  420. }
  421. </style>