bigScreen.vue 16 KB

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