drugsBagHistory.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. <template>
  2. <view class="pharmacyDetails">
  3. <view class="pharmacyDetails_title">
  4. <view class="pharmacyDetails_tab" :class="{ 'active': selectedLabelSlots === item.id }" v-for="item in tabs"
  5. :key="item.id" @click="clickHandler(item.id)">
  6. <view class="pharmacyDetails_label">
  7. {{ item.label }}
  8. </view>
  9. </view>
  10. </view>
  11. <view class="page_item_wrap">
  12. <view class="page_item">
  13. <view class="page_item_top">
  14. <view class="page_item_top-inner" v-show="selectedLabelSlots == 1">
  15. <view class="page_item_top_L">
  16. <text class="L_text">请领单:{{ infoDATA.packid }}</text>
  17. </view>
  18. <view class="page_item_top_R">
  19. <text class="L_iocn">{{
  20. infoDATA.drugsState && infoDATA.drugsState.name
  21. }}</text>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="page_item_cont" v-show="selectedLabelSlots == 1">
  26. <view class="page_item_cont_B">
  27. <view class="page_item_cont_title">
  28. <text>记账时间</text>
  29. <text class="text_big">
  30. <text>{{ infoDATA.creatTime }}</text>
  31. </text>
  32. </view>
  33. </view>
  34. <view class="page_item_cont_C">
  35. <view class="page_item_cont_title_C">
  36. <text>请领科室</text>
  37. <text class="text_big">
  38. <text>{{ infoDATA.target && infoDATA.target.dept }}</text>
  39. </text>
  40. </view>
  41. </view>
  42. </view>
  43. <scroll-view scroll-y class="page_item_cont" v-show="selectedLabelSlots == 2">
  44. <view class="page_item_cont_C" v-for="(item,i) in queryProcessList" :key="i">
  45. <view class="page_item_cont_title_C">
  46. <text style="width: 5em;">{{item.operationTime}}</text>
  47. <text style="flex: 1;">{{item.operationType?item.operationType.name:''}}</text>
  48. <view class="text_big" style="text-align: center;max-width: 10em;flex: 1;">
  49. <text>{{ item.username || '暂无' }}</text>
  50. <view v-if="item.operatorAccount" style="white-space: nowrap;text-overflow: ellipsis;overflow: hidden;">({{ item.operatorAccount }})</view>
  51. </view>
  52. </view>
  53. </view>
  54. </scroll-view>
  55. <view class="L"></view>
  56. <view class="R"></view>
  57. </view>
  58. <view class="L-l"></view>
  59. <view class="R-l"></view>
  60. </view>
  61. <button class="cube-toolbar-item" @click="goto()">
  62. 返回
  63. </button>
  64. </view>
  65. </template>
  66. <script>
  67. import {
  68. get,
  69. post,
  70. SM,
  71. webHandle
  72. } from "../../http/http.js";
  73. export default {
  74. data() {
  75. return {
  76. selectedLabelSlots: 2,
  77. tabs: [{
  78. id: 1,
  79. label: "基础信息",
  80. },
  81. {
  82. id: 2,
  83. label: "流程信息",
  84. }
  85. ],
  86. infoDATA: [],
  87. isLoading: false,
  88. isTLoading: false,
  89. isOLoading: false,
  90. loginUser: {}, //当前登录用户
  91. queryProcessList: [],
  92. };
  93. },
  94. methods: {
  95. // 返回
  96. goto() {
  97. uni.navigateBack();
  98. },
  99. // tab切换
  100. clickHandler(id) {
  101. this.selectedLabelSlots = id;
  102. if (id == 1) {
  103. this.queryBase(this.queryObj);
  104. } else if (id == 2) {
  105. this.queryProcess(this.queryObj);
  106. }
  107. },
  108. //基础信息查询
  109. queryBase(options) {
  110. //扫码进入详情
  111. let qrcode = options.qrcode;
  112. if (qrcode) {
  113. uni.showLoading({
  114. title: "加载中",
  115. mask: true,
  116. });
  117. post("/drugsBag/getDrugsBagByQr", {
  118. qrcode,
  119. }).then((result) => {
  120. uni.hideLoading();
  121. if (result.state == 200) {
  122. this.infoDATA = result.result;
  123. // if (this.loginUser.dept.id != this.infoDATA.launch.id) {
  124. // uni.showModal({
  125. // title: '提示',
  126. // content: "您现在所在的科室是【" + this.loginUser.dept.dept + "】,药包所在的科室是【" + this.infoDATA.launch.dept +
  127. // "】,您不能进行操作",
  128. // showCancel: false,
  129. // success: function(res) {
  130. // if (res.confirm) {
  131. // console.log('用户点击确定');
  132. // } else if (res.cancel) {
  133. // console.log('用户点击取消');
  134. // }
  135. // }
  136. // });
  137. // }
  138. } else {
  139. uni.showToast({
  140. icon: "none",
  141. title: result.msg || "接口获取数据失败!",
  142. });
  143. }
  144. });
  145. }
  146. // 点击列表进入详情
  147. let id = options.id;
  148. if (id) {
  149. uni.showLoading({
  150. title: "加载中",
  151. mask: true,
  152. });
  153. get("/api/fetchData/drugsBag/" + id).then((res) => {
  154. uni.hideLoading();
  155. if (res.status == 200) {
  156. this.infoDATA = res.data;
  157. // if (this.loginUser.dept.id != this.infoDATA.launch.id) {
  158. // uni.showModal({
  159. // title: '提示',
  160. // content: "您现在所在的科室是【" + this.loginUser.dept.dept + "】,药包所在的科室是【" + this.infoDATA.launch.dept +
  161. // "】,您不能进行操作",
  162. // showCancel: false,
  163. // success: function(res) {
  164. // if (res.confirm) {
  165. // console.log('用户点击确定');
  166. // } else if (res.cancel) {
  167. // console.log('用户点击取消');
  168. // }
  169. // }
  170. // });
  171. // }
  172. } else {
  173. uni.showToast({
  174. icon: "none",
  175. title: res.msg || "接口获取数据失败!",
  176. });
  177. }
  178. });
  179. }
  180. },
  181. // 流程信息查询
  182. queryProcess(options) {
  183. //扫码进入详情
  184. let qrcode = options.qrcode;
  185. if (qrcode) {
  186. uni.showLoading({
  187. title: "加载中",
  188. mask: true,
  189. });
  190. let postData = {
  191. idx: 0,
  192. sum: 9999,
  193. drugsBagOperationLog: {
  194. qrcode,
  195. hosId: this.loginUser.currentHospital.id
  196. }
  197. }
  198. post("/simple/data/fetchDataList/drugsBagOperationLog", postData).then((result) => {
  199. uni.hideLoading();
  200. if (result.status == 200) {
  201. result.list.forEach(v => {
  202. if (v.operationTime) {
  203. v.operationTime = (new Date(v.operationTime)).Format("MM-dd hh:mm:ss");
  204. }
  205. });
  206. this.queryProcessList = result.list;
  207. } else {
  208. uni.showToast({
  209. icon: "none",
  210. title: result.msg || "接口获取数据失败!",
  211. });
  212. }
  213. });
  214. }
  215. // 点击列表进入详情
  216. let packid = options.packid;
  217. if (packid) {
  218. uni.showLoading({
  219. title: "加载中",
  220. mask: true,
  221. });
  222. let postData = {
  223. idx: 0,
  224. sum: 9999,
  225. drugsBagOperationLog: {
  226. drugsBagId: options.id,
  227. hosId: this.loginUser.currentHospital.id
  228. }
  229. }
  230. post("/simple/data/fetchDataList/drugsBagOperationLog", postData).then((res) => {
  231. uni.hideLoading();
  232. if (res.status == 200) {
  233. res.list.forEach(v => {
  234. if (v.operationTime) {
  235. v.operationTime = (new Date(v.operationTime)).Format("MM-dd hh:mm:ss");
  236. }
  237. });
  238. this.queryProcessList = res.list;
  239. } else {
  240. uni.showToast({
  241. icon: "none",
  242. title: res.msg || "接口获取数据失败!",
  243. });
  244. }
  245. });
  246. }
  247. }
  248. },
  249. onLoad(options) {
  250. this.loginUser = uni.getStorageSync("userData").user;
  251. console.log(this.loginUser, 'loginUserloginUser')
  252. // #ifdef APP-PLUS
  253. webHandle("no", "app");
  254. // #endif
  255. // #ifdef H5
  256. webHandle("no", "wx");
  257. // #endif
  258. this.queryObj = options;
  259. this.queryProcess(this.queryObj);
  260. },
  261. };
  262. </script>
  263. <style lang="less">
  264. .pharmacyDetails {
  265. background-color: rgb(249, 250, 251);
  266. padding-top: 32rpx;
  267. .pharmacyDetails_title {
  268. height: 100rpx;
  269. display: flex;
  270. align-items: center;
  271. background-color: #fff;
  272. .pharmacyDetails_tab {
  273. flex: 1;
  274. display: flex;
  275. align-items: center;
  276. .pharmacyDetails_label {
  277. display: flex;
  278. justify-content: center;
  279. align-items: center;
  280. font-size: 40rpx;
  281. width: 100%;
  282. height: 66rpx;
  283. border-radius: 32rpx;
  284. color: #666;
  285. }
  286. &.active {
  287. .pharmacyDetails_label {
  288. color: #333;
  289. background-color: #e5e9ed;
  290. }
  291. }
  292. }
  293. }
  294. .page_item_wrap {
  295. position: relative;
  296. margin-top: 32rpx;
  297. .page_item {
  298. margin-top: 16rpx;
  299. margin-bottom: 124rpx;
  300. background: #fff;
  301. border-radius: 8rpx;
  302. margin: 0 20rpx;
  303. border: 2rpx solid #e5e9ed;
  304. position: relative;
  305. overflow: hidden;
  306. padding: 0 16rpx;
  307. .L {
  308. width: 40rpx;
  309. height: 40rpx;
  310. border-radius: 50%;
  311. background: #f9fafb;
  312. position: absolute;
  313. left: -20rpx;
  314. top: 68rpx;
  315. border: 2rpx solid #e5e9ed;
  316. }
  317. .R {
  318. width: 40rpx;
  319. height: 40rpx;
  320. border-radius: 50%;
  321. background: #f9fafb;
  322. position: absolute;
  323. float: right;
  324. right: -20rpx;
  325. top: 68rpx;
  326. border: 2rpx solid #e5e9ed;
  327. }
  328. .page_item_top {
  329. height: 88rpx;
  330. border-bottom: 2rpx dashed #e5e9ed;
  331. padding: 0 16rpx;
  332. .page_item_top-inner {
  333. display: flex;
  334. justify-content: space-between;
  335. align-items: center;
  336. height: 100%;
  337. .page_item_top_L {
  338. .L_text {
  339. font-size: 32rpx;
  340. font-weight: 700;
  341. }
  342. }
  343. .page_item_top_R {
  344. font-size: 32rpx;
  345. .L_iocn {
  346. color: rgb(7, 134, 60);
  347. font-size: 36rpx;
  348. font-weight: 700;
  349. }
  350. }
  351. }
  352. }
  353. .page_item_cont {
  354. box-sizing: border-box;
  355. min-height: 180rpx;
  356. max-height: calc(100vh - 534rpx);
  357. padding: 0 16rpx;
  358. text-align: left;
  359. position: relative;
  360. .text_big {
  361. font-size: 32rpx;
  362. font-weight: 700;
  363. text {
  364. font-weight: 700;
  365. line-height: 1.5;
  366. }
  367. }
  368. .line {
  369. height: 20rpx;
  370. width: 2rpx;
  371. border-left: 2rpx solid #e5e9ed;
  372. position: absolute;
  373. top: 82rpx;
  374. left: 40rpx;
  375. }
  376. .page_item_cont_T {
  377. padding-top: 28rpx;
  378. font-size: 28rpx;
  379. .page_item_cont_title {
  380. height: 100%;
  381. font-size: 32rpx;
  382. display: flex;
  383. justify-content: space-between;
  384. }
  385. }
  386. .page_item_cont_B {
  387. padding-top: 28rpx;
  388. margin-bottom: 28rpx;
  389. .page_item_cont_title {
  390. font-size: 32rpx;
  391. display: flex;
  392. justify-content: space-between;
  393. align-items: center;
  394. }
  395. }
  396. .page_item_cont_C {
  397. margin-top: 14rpx;
  398. margin-bottom: 14rpx;
  399. .page_item_cont_title_C {
  400. font-size: 32rpx;
  401. display: flex;
  402. justify-content: space-between;
  403. align-items: center;
  404. }
  405. }
  406. #infos {
  407. display: none;
  408. }
  409. }
  410. }
  411. .L-l {
  412. width: 2rpx;
  413. height: 40rpx;
  414. background: #f9fafb;
  415. position: absolute;
  416. left: 20rpx;
  417. top: 72rpx;
  418. }
  419. .R-l {
  420. width: 2rpx;
  421. height: 40rpx;
  422. background: #f9fafb;
  423. position: absolute;
  424. right: 20rpx;
  425. top: 72rpx;
  426. }
  427. }
  428. .cube-toolbar-item {
  429. width: 710rpx;
  430. height: 68rpx;
  431. line-height: 68rpx;
  432. position: fixed;
  433. left: 20rpx;
  434. bottom: 160rpx;
  435. border-radius: 8rpx;
  436. background: linear-gradient(to right, #72c172, #3bb197);
  437. font-size: 36rpx;
  438. color: #fff;
  439. text-align: center;
  440. }
  441. .btn-wrap {
  442. width: 100%;
  443. display: flex;
  444. justify-content: space-between;
  445. position: fixed;
  446. left: 0;
  447. bottom: 160rpx;
  448. }
  449. .cube-toolbar-item1 {
  450. flex: 1;
  451. height: 68rpx;
  452. line-height: 68rpx;
  453. border-radius: 8rpx;
  454. margin: 0 1%;
  455. background: linear-gradient(to right, #72c172, #3bb197);
  456. font-size: 36rpx;
  457. color: #fff;
  458. text-align: center;
  459. }
  460. }
  461. </style>