check_blood.vue 9.2 KB

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