bigScreen.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. <template>
  2. <view class="toolbar" @click="Scanning()" hover-class="seimin-btn-hover">
  3. <text class="toolbar-icon icon_transport transport-saoma"></text>
  4. <text class="toolbar-sao">扫一扫</text>
  5. <!-- 填写交接人工号弹窗 -->
  6. <selectAccount @click.stop.native v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  7. @cancel="hosCancel">
  8. </selectAccount>
  9. </view>
  10. </template>
  11. <script>
  12. import {
  13. post,
  14. SM
  15. } from "../../http/http.js";
  16. export default {
  17. data() {
  18. return {
  19. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  20. // 填写交接人工号弹窗model
  21. hosModels: {
  22. disjunctor: false,
  23. },
  24. userId: {
  25. ids: [],
  26. },
  27. workData: [],
  28. infoDATA: {},
  29. tabType: "", //当前选中项
  30. selectArr: [], //选中项
  31. code: "",
  32. currentCode: '', //当前小扫描的科室二维码
  33. SMFlag: true,
  34. }
  35. },
  36. methods: {
  37. // 填写交接人工号-确认
  38. hosOk(data) {
  39. console.log(data);
  40. const {
  41. accountName,
  42. account,
  43. accountId
  44. } = data;
  45. if (!accountName && !account) {
  46. //没有填写交接人
  47. uni.showModal({
  48. title: "提示",
  49. content: "请填写交接人工号!",
  50. showCancel: false,
  51. success: function(res) {
  52. if (res.confirm) {
  53. console.log("用户点击确定");
  54. } else if (res.cancel) {
  55. console.log("用户点击取消");
  56. }
  57. },
  58. });
  59. return;
  60. } else if ((!accountName && account) || (accountName && !account)) {
  61. //没有填写交接人
  62. uni.showModal({
  63. title: "提示",
  64. content: "请填写正确的交接人工号!",
  65. showCancel: false,
  66. success: function(res) {
  67. if (res.confirm) {
  68. console.log("用户点击确定");
  69. } else if (res.cancel) {
  70. console.log("用户点击取消");
  71. }
  72. },
  73. });
  74. return;
  75. }
  76. this.hosModels.disjunctor = false;
  77. this.orderDeptHandler(false, data);
  78. },
  79. // 填写交接人工号-取消
  80. hosCancel() {
  81. this.hosModels.disjunctor = false;
  82. this.flag = true;
  83. },
  84. // 填写交接人工号弹窗
  85. showSelectAccount() {
  86. this.hosModels = {
  87. disjunctor: true,
  88. };
  89. },
  90. // 标本配送-待送达-运输过程-标本数字交接,则,科室签到不需要填写交接人
  91. validateHandoverSpecimen(){
  92. return post("/simple/data/fetchDataList/taskType", {
  93. "idx": 0,
  94. "sum": 1,
  95. "taskType": {
  96. "hosId": {
  97. "id": this.hosId
  98. },
  99. "associationType": {
  100. "key": "association_types",
  101. "value": "specimen"
  102. }
  103. }
  104. });
  105. },
  106. //科室签到
  107. //trueBigScanner----判断是否大扫描
  108. //bigScanner----判断是否需要交接人
  109. //accountObj----弹窗填写的交接人信息
  110. async orderDeptHandler(bigScanner, accountObj) {
  111. console.log(this.infoDATA);
  112. uni.showLoading({
  113. title: "加载中",
  114. mask: true,
  115. });
  116. if(this.tabType === 'specimen' && this.infoDATA.specimen && this.infoDATA.specimen[0].gdState.value == 5){
  117. let result = await this.validateHandoverSpecimen();
  118. if (result.status == 200) {
  119. if(result.list.length){
  120. // 标本-运送过程-终点科室-标本数字交接
  121. if(result.list[0].carryingCourses[1].checkoutMethod.value == 3){
  122. bigScanner = false;
  123. }
  124. }else{
  125. uni.showToast({
  126. icon: "none",
  127. title: "请配置标本配送任务类型!",
  128. });
  129. uni.hideLoading();
  130. return;
  131. }
  132. }
  133. }
  134. let type = "orderSign/" + this.code;
  135. let list = {
  136. ids: this.userId.ids,
  137. trueBigScanner: ['666']
  138. };
  139. bigScanner && (list.bigScanner = ['666']);
  140. if (accountObj) {
  141. list.handover = [accountObj.accountId];
  142. }
  143. post("/workerOrder/" + type, list).then((res) => {
  144. console.log(this.tabType)
  145. uni.hideLoading();
  146. if (res.status == 200) {
  147. if (this.tabType == 'specimenPlan') {
  148. // -----------------------------
  149. console.log(this.selectArr, '选中工单')
  150. let gd = this.infoDATA.specimenPlan.find(v => v.id == this.selectArr[0]);
  151. let startDeptId = gd.startDept.id; //起点科室id
  152. let isDigitalHandover = gd.taskType.isDigitalHandover; //是否数字交接开关
  153. let signDeptId = res.deptId; //签到的科室id
  154. let gdId = gd.id;
  155. let gdState = gd.gdState.value;
  156. let endDepts = gd.endDepts.map(v => v.id).toString();
  157. uni.navigateTo({
  158. url: `../scanning_djEnd/scanning_djEnd?type=${
  159. this.tabType
  160. }&type1=${res.type}&code=${this.code}&dept=${
  161. res.dept
  162. }&ids=${encodeURIComponent(
  163. JSON.stringify(this.userId.ids)
  164. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}&startDeptId=${startDeptId}&isDigitalHandover=${isDigitalHandover}&signDeptId=${signDeptId}&gdId=${gdId}&gdState=${gdState}&endDepts=${endDepts}`,
  165. });
  166. } else if (this.tabType == 'specimen') {
  167. // 同济是false
  168. if (res.deptType && res.deptType.value === 'middleRoom') {
  169. // if (false) {
  170. // 如果是中转科室
  171. uni.navigateTo({
  172. url: `../checkAfterBigScreen/checkAfterBigScreen?type=${
  173. this.tabType
  174. }&type1=${res.type}&code=${this.code}&dept=${
  175. res.dept
  176. }&ids=${encodeURIComponent(
  177. JSON.stringify(this.userId.ids)
  178. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  179. });
  180. } else if(res.type === 'spe-dsd-4'){
  181. // 检验方式是标本数字交接
  182. uni.navigateTo({
  183. url: `/pages/specimenHandoverNew/specimenHandoverNew?type=${
  184. this.tabType
  185. }&type1=${res.type}&code=${this.code}&dept=${
  186. res.dept
  187. }&ids=${encodeURIComponent(
  188. JSON.stringify(this.userId.ids)
  189. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  190. });
  191. } else{
  192. uni.navigateTo({
  193. url: `../scanning_djEnd/scanning_djEnd?type=${
  194. this.tabType
  195. }&type1=${res.type}&code=${this.code}&dept=${
  196. res.dept
  197. }&ids=${encodeURIComponent(
  198. JSON.stringify(this.userId.ids)
  199. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  200. });
  201. }
  202. }
  203. } else if (res.status == "0000") {
  204. this.showSelectAccount();
  205. } else {
  206. this.flag = true;
  207. uni.navigateTo({
  208. url: `../scanning_djEnd/scanning_djEnd?type=${this.tabType}&type1=${
  209. res.type
  210. }&code=${this.code}&dept=${res.dept}&ids=${encodeURIComponent(
  211. JSON.stringify(this.userId.ids)
  212. )}&model=${encodeURIComponent(JSON.stringify(res))}&deptId=${res.deptId}`,
  213. });
  214. }
  215. });
  216. },
  217. // 底部扫描
  218. Scanning(qrcodePrefix = '') {
  219. if (!this.SMFlag) {
  220. return;
  221. }
  222. this.SMFlag = false;
  223. SM().then((content) => {
  224. uni.showLoading({
  225. title: "加载中",
  226. mask: true,
  227. });
  228. //检验二维码的有效性(扫码前必须验证)
  229. post("/dept/scanning", {
  230. content,
  231. })
  232. .then((result) => {
  233. this.currentCode = result.code;
  234. this.SMFlag = true;
  235. // 200检测通过,201没有有效期也通过。
  236. if (result.state == 200 || result.state == 201) {
  237. let data = {
  238. code: result.code, //二维码
  239. };
  240. //微信—大扫描(科室码,患者码,标本码,快捷建单码,药包码)
  241. let code = result.code.includes(qrcodePrefix) ? result.code : qrcodePrefix + result.code;
  242. post("/workerOrder/scanCode", { code })
  243. .then((res) => {
  244. uni.hideLoading();
  245. if (res.status == 200) {
  246. // 扫描标本码
  247. if (res.type == "specimen") {
  248. let infoDATA = {
  249. stype: res.data.stype,
  250. scode: res.data.scode,
  251. patientName: res.data.patientName,
  252. sickRoom: res.data.sickRoom ?
  253. res.data.sickRoom.dept : "-",
  254. checkDept: res.data.checkDept ?
  255. res.data.checkDept.dept : "-",
  256. bedNum: res.data.bedNum,
  257. };
  258. uni.navigateTo({
  259. url: `../scanning_B/scanning_B?res=${encodeURIComponent(
  260. JSON.stringify(res)
  261. )}&infoDATA=${encodeURIComponent(
  262. JSON.stringify(infoDATA)
  263. )}`,
  264. });
  265. } else if (res.type == "patient") {
  266. //如果是患者腕带码
  267. // code: data.code //二维码
  268. res.workOrder = res.workOrder ? res.workOrder : []; //liao
  269. uni.navigateTo({
  270. url: `../scanning_ins/scanning_ins?code=${
  271. data.code
  272. }&infoDATA=${encodeURIComponent(
  273. JSON.stringify(res.data)
  274. )}&workData=${encodeURIComponent(
  275. JSON.stringify(res.workOrder)
  276. )}&patientOrders=${encodeURIComponent(
  277. JSON.stringify(res.patientOrders)
  278. )}`,
  279. });
  280. } else if (res.type == "quickOrder") {
  281. //快捷建单
  282. if(res.data.isDigitalHandover == 1){
  283. uni.navigateTo({
  284. url: `../specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  285. JSON.stringify(res.data)
  286. )}`,
  287. });
  288. }else{
  289. uni.navigateTo({
  290. url: `../shortcutbuildOrders/shortcutbuildOrders?infoDATA=${encodeURIComponent(
  291. JSON.stringify(res.data)
  292. )}`,
  293. });
  294. }
  295. } else if (res.type == "dept") {
  296. // 扫描科室码
  297. // code: data.code //二维码
  298. let infoDATA = res.data;
  299. console.log(infoDATA)
  300. // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
  301. // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
  302. if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
  303. this.infoDATA = infoDATA;
  304. this.workData = infoDATA.specimen || infoDATA.specimenPlan;
  305. this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
  306. this.code = data.code;
  307. this.selectArr = [];
  308. for (var i = 0; i < this.workData.length; i++) {
  309. this.selectArr.push(this.workData[i].id);
  310. }
  311. this.userId.ids = this.selectArr;
  312. this.orderDeptHandler(true);
  313. }else{
  314. uni.navigateTo({
  315. url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
  316. JSON.stringify(infoDATA)
  317. )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
  318. });
  319. }
  320. } else if (res.type == 'drugsBag') {
  321. //扫药包码
  322. uni.navigateTo({
  323. url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}&drugsBagBatchNo=${res.drugsBagBatchNo}`,
  324. });
  325. } else if (res.type == 'nucleicAcid') {
  326. //扫核酸码
  327. uni.navigateTo({
  328. url: `/pages/scanning_nucleicAcid/scanning_nucleicAcid?qrcode=${data.code}`,
  329. });
  330. } else if (res.type == 'blood') {
  331. //扫血制品
  332. // 判断size,多个则进入新页面选择
  333. if(res.size > 1){
  334. uni.navigateTo({
  335. url: `/pages/bloodSelect/bloodSelect?qrcode=${data.code}&navigateTo=scanning_blood`,
  336. });
  337. } else {
  338. uni.navigateTo({
  339. url: `/pages/scanning_blood/scanning_blood?qrcode=${data.code}`,
  340. });
  341. }
  342. } else if (res.type == 'receiveOrder') {
  343. //扫快捷接单
  344. uni.showModal({
  345. title: "提示",
  346. content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
  347. success: function(result) {
  348. if (result.confirm) {
  349. uni.showLoading({
  350. title: "加载中",
  351. mask: true,
  352. });
  353. post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((result) => {
  354. uni.hideLoading();
  355. if (result.status == 200) {
  356. uni.showModal({
  357. title: "提示",
  358. content: `本次接单包括${res.names.join('、')},${res.data.length}个工单已接单完成`,
  359. showCancel: false,
  360. success: function(res) {
  361. if (res.confirm) {
  362. console.log("用户点击确定");
  363. uni.redirectTo({
  364. url: "../receiptpage/receiptpage",
  365. });
  366. } else if (res.cancel) {
  367. console.log("用户点击取消");
  368. }
  369. },
  370. });
  371. } else {
  372. uni.showToast({
  373. icon: "none",
  374. title: result.msg || "接口获取数据失败!",
  375. });
  376. }
  377. });
  378. } else if (result.cancel) {
  379. console.log("用户点击取消");
  380. }
  381. },
  382. });
  383. } else if (res.type == 'bloodTake') {
  384. if(res.data){
  385. //新血制品-扫科室
  386. uni.navigateTo({
  387. url: `/pages/newBlood/startOrderSignBlood/startOrderSignBlood?deptId=${res.deptId}&deptName=${res.deptName}&taskTypeId=${res.taskTypeId}`,
  388. });
  389. }else{
  390. // 走type是dept的流程
  391. // 扫描科室码
  392. // code: data.code //二维码
  393. let infoDATA = res.data;
  394. console.log(infoDATA)
  395. // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
  396. // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
  397. if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
  398. this.infoDATA = infoDATA;
  399. this.workData = infoDATA.specimen || infoDATA.specimenPlan;
  400. this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
  401. this.code = data.code;
  402. this.selectArr = [];
  403. for (var i = 0; i < this.workData.length; i++) {
  404. this.selectArr.push(this.workData[i].id);
  405. }
  406. this.userId.ids = this.selectArr;
  407. this.orderDeptHandler(true);
  408. }else{
  409. uni.navigateTo({
  410. url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
  411. JSON.stringify(infoDATA)
  412. )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
  413. });
  414. }
  415. }
  416. }
  417. } else {
  418. if(res.bigScanSpecialMsg){
  419. uni.navigateTo({
  420. url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}&bigScanSpecialMsg=${encodeURIComponent(JSON.stringify(res.bigScanSpecialMsg))}`,
  421. });
  422. }else{
  423. uni.navigateTo({
  424. url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}`,
  425. });
  426. }
  427. }
  428. });
  429. } else {
  430. uni.hideLoading();
  431. uni.showToast({
  432. icon: "none",
  433. title: result.info || "接口获取数据失败!",
  434. });
  435. }
  436. })
  437. }).catch(err => {
  438. this.SMFlag = true;
  439. });
  440. },
  441. },
  442. onShow() {
  443. this.SMFlag = true;
  444. }
  445. };
  446. </script>
  447. <style lang="less">
  448. // 底部扫一扫
  449. .toolbar {
  450. position: fixed;
  451. left: 0;
  452. right: 0;
  453. bottom: 30rpx;
  454. z-index: 999;
  455. height: 88rpx;
  456. display: flex;
  457. justify-content: center;
  458. align-items: center;
  459. box-sizing: border-box;
  460. border-radius: 4rpx;
  461. box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.24);
  462. background-color: #e5e9ed;
  463. .toolbar-icon {
  464. font-size: 52rpx;
  465. margin-right: 16rpx;
  466. color: #07863c;
  467. }
  468. .toolbar-sao {
  469. font-size: 36rpx;
  470. color: #333;
  471. }
  472. }
  473. </style>