bigScreen.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  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 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. if (res.deptType && res.deptType.value === 'middleRoom') {
  133. // 如果是中转科室
  134. uni.navigateTo({
  135. url: `../checkAfterBigScreen/checkAfterBigScreen?type=${
  136. this.tabType
  137. }&type1=${res.type}&code=${this.code}&dept=${
  138. res.dept
  139. }&ids=${encodeURIComponent(
  140. JSON.stringify(this.userId.ids)
  141. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  142. });
  143. } else {
  144. uni.navigateTo({
  145. url: `../scanning_djEnd/scanning_djEnd?type=${
  146. this.tabType
  147. }&type1=${res.type}&code=${this.code}&dept=${
  148. res.dept
  149. }&ids=${encodeURIComponent(
  150. JSON.stringify(this.userId.ids)
  151. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  152. });
  153. }
  154. }
  155. } else if (res.status == "0000") {
  156. this.showSelectAccount();
  157. } else {
  158. this.flag = true;
  159. uni.navigateTo({
  160. url: `../scanning_djEnd/scanning_djEnd?type=${this.tabType}&type1=${
  161. res.type
  162. }&code=${this.code}&dept=${res.dept}&ids=${encodeURIComponent(
  163. JSON.stringify(this.userId.ids)
  164. )}&model=${encodeURIComponent(JSON.stringify(res))}&deptId=${res.deptId}`,
  165. });
  166. }
  167. });
  168. },
  169. // 底部扫描
  170. Scanning() {
  171. if (!this.SMFlag) {
  172. return;
  173. }
  174. this.SMFlag = false;
  175. SM().then((content) => {
  176. uni.showLoading({
  177. title: "加载中",
  178. mask: true,
  179. });
  180. //检验二维码的有效性(扫码前必须验证)
  181. post("/dept/scanning", {
  182. content,
  183. })
  184. .then((result) => {
  185. this.currentCode = result.code;
  186. this.SMFlag = true;
  187. // 200检测通过,201没有有效期也通过。
  188. if (result.state == 200 || result.state == 201) {
  189. let data = {
  190. code: result.code, //二维码
  191. };
  192. //微信—大扫描(科室码,患者码,标本码,快捷建单码,药包码)
  193. post("/workerOrder/scanCode", data)
  194. .then((res) => {
  195. uni.hideLoading();
  196. if (res.status == 200) {
  197. // 扫描标本码
  198. if (res.type == "specimen") {
  199. let infoDATA = {
  200. stype: res.data.stype,
  201. scode: res.data.scode,
  202. patientName: res.data.patientName,
  203. sickRoom: res.data.sickRoom ?
  204. res.data.sickRoom.dept : "-",
  205. checkDept: res.data.checkDept ?
  206. res.data.checkDept.dept : "-",
  207. bedNum: res.data.bedNum,
  208. };
  209. uni.navigateTo({
  210. url: `../scanning_B/scanning_B?res=${encodeURIComponent(
  211. JSON.stringify(res)
  212. )}&infoDATA=${encodeURIComponent(
  213. JSON.stringify(infoDATA)
  214. )}`,
  215. });
  216. } else if (res.type == "patient") {
  217. //如果是患者腕带码
  218. // code: data.code //二维码
  219. res.workOrder = res.workOrder ? res.workOrder : []; //liao
  220. uni.navigateTo({
  221. url: `../scanning_ins/scanning_ins?code=${
  222. data.code
  223. }&infoDATA=${encodeURIComponent(
  224. JSON.stringify(res.data)
  225. )}&workData=${encodeURIComponent(
  226. JSON.stringify(res.workOrder)
  227. )}&patientOrders=${encodeURIComponent(
  228. JSON.stringify(res.patientOrders)
  229. )}`,
  230. });
  231. } else if (res.type == "quickOrder") {
  232. //快捷建单
  233. if(res.data.isDigitalHandover == 1){
  234. uni.navigateTo({
  235. url: `../specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  236. JSON.stringify(res.data)
  237. )}`,
  238. });
  239. }else{
  240. uni.navigateTo({
  241. url: `../shortcutbuildOrders/shortcutbuildOrders?infoDATA=${encodeURIComponent(
  242. JSON.stringify(res.data)
  243. )}`,
  244. });
  245. }
  246. } else if (res.type == "dept") {
  247. // 扫描科室码
  248. // code: data.code //二维码
  249. let infoDATA = res.data;
  250. console.log(infoDATA)
  251. // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
  252. // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
  253. if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
  254. this.infoDATA = infoDATA;
  255. this.workData = infoDATA.specimen || infoDATA.specimenPlan;
  256. this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
  257. this.code = data.code;
  258. this.selectArr = [];
  259. for (var i = 0; i < this.workData.length; i++) {
  260. this.selectArr.push(this.workData[i].id);
  261. }
  262. this.userId.ids = this.selectArr;
  263. this.orderDeptHandler(true);
  264. }else{
  265. uni.navigateTo({
  266. url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
  267. JSON.stringify(infoDATA)
  268. )}&code=${data.code}`,
  269. });
  270. }
  271. } else if (res.type == 'drugsBag') {
  272. //扫药包码
  273. uni.navigateTo({
  274. url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}`,
  275. });
  276. }
  277. } else {
  278. uni.navigateTo({
  279. url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}`,
  280. });
  281. }
  282. });
  283. } else {
  284. uni.hideLoading();
  285. uni.showToast({
  286. icon: "none",
  287. title: '请求失败',
  288. });
  289. }
  290. })
  291. }).catch(err => {
  292. this.SMFlag = true;
  293. });
  294. },
  295. },
  296. onShow() {
  297. this.SMFlag = true;
  298. }
  299. };
  300. </script>
  301. <style lang="less">
  302. // 底部扫一扫
  303. .toolbar {
  304. position: fixed;
  305. left: 0;
  306. right: 0;
  307. bottom: 30rpx;
  308. z-index: 999;
  309. height: 88rpx;
  310. display: flex;
  311. justify-content: center;
  312. align-items: center;
  313. box-sizing: border-box;
  314. border-radius: 4rpx;
  315. box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.24);
  316. background-color: #e5e9ed;
  317. .toolbar-icon {
  318. font-size: 52rpx;
  319. margin-right: 16rpx;
  320. color: #07863c;
  321. }
  322. .toolbar-sao {
  323. font-size: 36rpx;
  324. color: #333;
  325. }
  326. }
  327. </style>