check_blood.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. <template>
  2. <view class="checkBlood">
  3. <view class="page_tab">
  4. <view class="page_tab_bar" :class="{ active: item.value === selectedLabelSlots }" v-for="item in tabs"
  5. :key="item.value" @click="clickHandler(item.value)">
  6. {{ item.label }}
  7. <text class="tab_num" v-if="item.value == 1">( {{ item.num }} )</text>
  8. </view>
  9. </view>
  10. <block v-if="selectedLabelSlots == 1">
  11. <view class="bloodType">
  12. <view class="bloodTypeItem" v-for="(item, key, index) in unComplete" :key="index">
  13. {{key}}:<text class="link" @click="goToList(item)">{{item.length}}</text>
  14. </view>
  15. </view>
  16. </block>
  17. <block v-if="selectedLabelSlots == 2">
  18. <view class="title">
  19. 血制品核对
  20. </view>
  21. <view class="order">
  22. <view class="">
  23. 工单号:{{order.gdcode||'无'}}
  24. </view>
  25. <view class="">
  26. 所属科室:{{order.endDepts?order.endDepts[0].dept:'无'}}
  27. </view>
  28. <view class="">
  29. 接收数量:{{receiveNum}}
  30. </view>
  31. </view>
  32. <view class="bloodType">
  33. <view class="bloodTypeItem" v-for="(item, key, index) in complete" :key="index">
  34. <text class="link_key">{{key}}:</text><text class="link" @click="goToList(item)">{{item.length}}</text>
  35. </view>
  36. </view>
  37. </block>
  38. <view class="foot_btn_spe">
  39. <view class="btn1" @click="Scanning_again()" v-if="configs.checkType.value == 1"> 继续扫描 </view>
  40. <view class="btn3" @click="checkComplete()">核对完成</view>
  41. </view>
  42. </view>
  43. </template>
  44. <script>
  45. import {
  46. get,
  47. post,
  48. SM,
  49. webHandle
  50. } from "../../http/http.js";
  51. export default {
  52. data() {
  53. return {
  54. configs: {},
  55. hosId: null,
  56. queryObj: {},
  57. SMFlag: true,
  58. // 接收数量
  59. receiveNum: 0,
  60. // 未扫描
  61. unComplete:{},
  62. // 已扫描
  63. complete:{},
  64. // 工单
  65. order: {},
  66. // 工单ID
  67. orderId: null,
  68. // 血液类型
  69. bloodTypes:[],
  70. // 当前选中tab页名称
  71. selectedLabelSlots: '2',
  72. // tab页信息
  73. tabs: [{
  74. label: "未扫描", //tab页名称
  75. value: "1", //值
  76. num: 0, //数量
  77. },
  78. {
  79. label: "已扫描",
  80. value: "2",
  81. },
  82. ],
  83. };
  84. },
  85. methods:{
  86. // 跳转血制品列表
  87. goToList(bloods){
  88. uni.navigateTo({
  89. url: `../blood_list/blood_list?bloods=${encodeURIComponent(JSON.stringify(bloods))}`,
  90. });
  91. },
  92. // 点击tab页切换
  93. clickHandler(value) {
  94. this.selectedLabelSlots = value;
  95. },
  96. //获取血液类型
  97. getBloodTypes(){
  98. uni.showLoading({
  99. title: "加载中",
  100. mask: true,
  101. });
  102. post('/common/common/getDictionary', {
  103. "type": "list",
  104. "key": "blood_trans_type"
  105. }).then(res => {
  106. this.bloodTypes = res;
  107. this.getTaskConfig();
  108. })
  109. },
  110. //获取血制品配置页面
  111. getTaskConfig(){
  112. let postData = {
  113. "idx": 0,
  114. "sum": 1,
  115. "taskTypeConfig": {
  116. "taskTypeDTO": {
  117. "hosId": {
  118. "id": this.hosId
  119. },
  120. "ordinaryField": {
  121. "value": "blood"
  122. }
  123. }
  124. }
  125. };
  126. post('/simple/data/fetchDataList/taskTypeConfig', postData).then(result => {
  127. this.getInfo();
  128. if(result.status == 200){
  129. this.configs = result.list[0] || {};
  130. }else{
  131. uni.showToast({
  132. icon: "none",
  133. title: "请求失败!",
  134. });
  135. }
  136. })
  137. },
  138. //获取页面信息
  139. getInfo(){
  140. post('/transflow/checkData', {
  141. "type": "blood",
  142. "orderId": this.orderId
  143. }).then(res => {
  144. uni.hideLoading();
  145. if(res.state == 200){
  146. console.log(res);
  147. this.order = res.data.dto;
  148. this.complete = res.data.complete;
  149. this.unComplete = res.data.unComplete;
  150. this.receiveNum = 0;
  151. for (let key in this.unComplete) {
  152. this.tabs[0].num += this.unComplete[key].length;
  153. }
  154. for (let key in this.complete) {
  155. this.receiveNum += this.complete[key].length;
  156. }
  157. }else{
  158. uni.showToast({
  159. icon: "none",
  160. title: "请求失败!",
  161. });
  162. }
  163. })
  164. },
  165. // 继续扫描
  166. Scanning_again() {
  167. if (!this.SMFlag) {
  168. return;
  169. }
  170. this.SMFlag = false;
  171. SM().then((ress1) => {
  172. this.hand_scanning_common(ress1, 'scan');
  173. }).catch(err => {
  174. this.SMFlag = true;
  175. });
  176. },
  177. // 手动输入和扫码公共方法
  178. hand_scanning_common(ress1, type) {
  179. uni.showLoading({
  180. title: "加载中",
  181. mask: true,
  182. });
  183. //检验二维码的有效性
  184. post("/dept/scanning", {
  185. content: ress1,
  186. }).then((result) => {
  187. this.SMFlag = true;
  188. if (result.state == 200 || result.state == 201) {
  189. let codes = result.code;
  190. if (codes) {
  191. post("/transflow/scanBind", {type: 'blood',orderId: this.queryObj.orderId, code: ress1}).then((ress) => {
  192. uni.hideLoading();
  193. if (ress.state == 200 && ress.data.state != 400) {
  194. //扫描标本后会自动调用摄像头,继续扫描,直到status不是200
  195. setTimeout(()=>{
  196. if (type === 'scan') {
  197. this.Scanning_again();
  198. }
  199. },500)
  200. //todo
  201. uni.redirectTo({
  202. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${type}`,
  203. });
  204. } else {
  205. uni.redirectTo({
  206. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}`,
  207. });
  208. }
  209. });
  210. } else {
  211. uni.hideLoading();
  212. }
  213. } else {
  214. uni.hideLoading();
  215. uni.showToast({
  216. icon: "none",
  217. title: "请求失败!",
  218. });
  219. }
  220. });
  221. // ------------------------------
  222. },
  223. // 核对完成
  224. checkComplete(){
  225. uni.showModal({
  226. title: "提示",
  227. content: "请确认是否核对完成?",
  228. success: (result) => {
  229. if (result.confirm) {
  230. console.log("用户点击确定");
  231. let postData = {
  232. "type": "blood",
  233. "orderId": this.orderId
  234. };
  235. uni.showLoading({
  236. title: "加载中",
  237. mask: true,
  238. });
  239. let postName = '';
  240. if(this.configs.checkType.value == 1){
  241. // 起点终点科室按照血制品类型进行核对
  242. postName = '/transflow/checkComplete';
  243. }else if(this.configs.checkType.value == 2){
  244. // 终点科室无需扫码进行核对
  245. postName = '/transflow/complete';
  246. }
  247. post(postName, postData).then((ress) => {
  248. uni.hideLoading();
  249. if (ress.state == 200) {
  250. uni.navigateTo({
  251. url: `../receiptpage/receiptpage`,
  252. });
  253. } else {
  254. uni.showToast({
  255. icon: "none",
  256. title: "请求失败!",
  257. });
  258. }
  259. });
  260. } else if (result.cancel) {
  261. console.log("用户点击取消");
  262. }
  263. },
  264. });
  265. }
  266. },
  267. onLoad(options) {
  268. console.log(options, 'options');
  269. this.queryObj = options;
  270. this.orderId = options.orderId;
  271. this.getBloodTypes();
  272. },
  273. onShow() {
  274. this.SMFlag = true;
  275. },
  276. created(){
  277. this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
  278. }
  279. }
  280. </script>
  281. <style lang="less" scoped>
  282. .checkBlood{
  283. width: 100%;
  284. height: 100%;
  285. position: relative;
  286. padding-top: 96rpx;
  287. .page_tab {
  288. width: 100%;
  289. height: 96rpx;
  290. display: flex;
  291. position: fixed;
  292. left: 0;
  293. top: 0;
  294. z-index: 999;
  295. .page_tab_bar {
  296. flex: 1;
  297. font-size: 36rpx;
  298. background: #fff;
  299. display: flex;
  300. justify-content: center;
  301. align-items: center;
  302. position: relative;
  303. &:after {
  304. content: "";
  305. position: absolute;
  306. left: 0;
  307. bottom: 0;
  308. height: 2rpx;
  309. width: 100%;
  310. background-color: transparent;
  311. }
  312. .tab_num {
  313. color: #ff3b53;
  314. margin-left: 8rpx;
  315. }
  316. .more {
  317. position: absolute;
  318. right: 20rpx;
  319. width: 40rpx;
  320. height: 4rpx;
  321. border-top: 2px solid #49b856;
  322. border-bottom: 2px solid #49b856;
  323. background-color: #49b856;
  324. padding: 5px 0;
  325. background-clip: content-box;
  326. }
  327. .more_picker {
  328. position: absolute;
  329. right: 0;
  330. height: 100%;
  331. opacity: 0;
  332. }
  333. &.active {
  334. color: #49b856;
  335. &:after {
  336. background-color: #49b856;
  337. }
  338. }
  339. }
  340. }
  341. .title{
  342. text-align: center;
  343. padding: 20rpx 0;
  344. border: 2rpx solid #e5e9ed;
  345. }
  346. .order{
  347. text-indent: 2em;
  348. padding: 20rpx 0;
  349. }
  350. .bloodType{
  351. width: 90%;
  352. border: 2rpx solid #e5e9ed;
  353. margin: 0 auto;
  354. margin-top: 40rpx;
  355. .bloodTypeItem{
  356. padding: 20rpx 0;
  357. display: flex;
  358. justify-content: space-between;
  359. .link_key{
  360. flex: 5;
  361. text-align: justify;
  362. }
  363. .link{
  364. flex: 1;
  365. display: flex;
  366. justify-content: center;
  367. align-items: center;
  368. text-decoration: underline;
  369. }
  370. }
  371. }
  372. .foot_btn_spe {
  373. line-height: 88rpx;
  374. height: 100rpx;
  375. margin-top: 40rpx;
  376. text-align: center;
  377. display: flex;
  378. justify-content: space-between;
  379. flex-wrap: wrap;
  380. view {
  381. height: 88rpx;
  382. flex: 1;
  383. margin: 0 1%;
  384. background-image: linear-gradient(to right, #72c172, #3bb197);
  385. color: #fff;
  386. border-radius: 8rpx;
  387. font-size: 32rpx;
  388. margin-top: 16rpx;
  389. }
  390. }
  391. }
  392. </style>