smallScreen.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. <template>
  2. <view class="smallScreen">
  3. <view class="smallScreen_scan" @click="getInspectAndPatientTransform(sData,sType)">
  4. <slot></slot>
  5. </view>
  6. <!-- 填写交接人账号弹窗 -->
  7. <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  8. @cancel="hosCancel">
  9. </selectAccount>
  10. <!-- 弹窗 -->
  11. <showModel :title="models4.title" :icon="models4.icon" :disjunctor="models4.disjunctor"
  12. :radioInspectionDistanceItem="models4.radioInspectionDistanceItem" @ok="ok4" @cancel="cancel4" @radioChange="radioChange4" :operate="models4.operate">
  13. </showModel>
  14. </view>
  15. </template>
  16. <script>
  17. import showModel from "../../components/showModel/showModel.vue";
  18. import selectAccount from "../../components/selectAccount/selectAccount.vue";
  19. import {
  20. post,
  21. SM
  22. } from "../../http/http.js";
  23. export default {
  24. data() {
  25. return {
  26. selectRadio: [], //单选框选中的数据,第一项是qrcode,第二项是名称
  27. // 单选框弹窗model1
  28. models4: {
  29. disjunctor: false,
  30. },
  31. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  32. currentCode: '', //当前小扫描的科室二维码
  33. currentData: {}, //当前小扫描的工单对象
  34. // 填写交接人账号弹窗model
  35. hosModels: {
  36. disjunctor: false,
  37. },
  38. SMFlag:true,
  39. }
  40. },
  41. props: {
  42. sData: {
  43. type: Object
  44. },
  45. sType: {
  46. type: Number
  47. }
  48. },
  49. methods: {
  50. // 获取是否需要选择陪检方式
  51. getInspectAndPatientTransform(sData,sType){
  52. console.log(this.sData,this.sType);
  53. // 患者陪检,患者其他服务,工单状态是待到达
  54. if((this.sData.taskType.associationType.value === 'inspect' || this.sData.taskType.associationType.value === 'patientTransport') && this.sData.gdState.value == 4){
  55. const postData = {
  56. "idx":0,
  57. "sum":1,
  58. "taskTypeConfig":{
  59. "taskTypeDTO":{
  60. "hosId": {"id": this.hosId},
  61. "associationType": {
  62. "key": "association_types",
  63. "value":"inspect",
  64. },
  65. },
  66. },
  67. };
  68. uni.showLoading({
  69. mask: true,
  70. title: '加载中'
  71. })
  72. post("/simple/data/fetchDataList/taskTypeConfig", postData).then((res) => {
  73. console.log(res)
  74. if (res.status == 200) {
  75. res.list = res.list || [];
  76. if(res.list[0] && res.list[0].signTypeIds){
  77. // 如果开启
  78. const postData = {
  79. "idx":0,
  80. "sum":9999,
  81. "workOrderInspectScore":{
  82. "hosId": this.hosId,
  83. },
  84. };
  85. post("/simple/data/fetchDataList/workOrderInspectScore", postData).then((res) => {
  86. console.log(res)
  87. uni.hideLoading();
  88. if (res.status == 200) {
  89. res.list = res.list || [];
  90. let radioInspectionDistanceItem = res.list.map(v => ({id: v.id + "__" + v.inspectMode, inspectMode: v.inspectMode}));
  91. console.log(radioInspectionDistanceItem)
  92. this.models4 = {
  93. disjunctor: true,
  94. title: "请选择陪检方式",
  95. radioInspectionDistanceItem,
  96. icon: "",
  97. operate: {
  98. ok: "确定",
  99. cancel: "取消",
  100. },
  101. };
  102. } else {
  103. uni.showToast({
  104. icon: "none",
  105. title: res.msg || "接口获取数据失败!",
  106. });
  107. }
  108. })
  109. }else{
  110. uni.hideLoading();
  111. this.Scan_ss(sData,sType);
  112. }
  113. } else {
  114. uni.hideLoading();
  115. uni.showToast({
  116. icon: "none",
  117. title: res.msg || "接口获取数据失败!",
  118. });
  119. }
  120. })
  121. }else{
  122. this.Scan_ss(sData,sType);
  123. }
  124. },
  125. // 选中单选框
  126. radioChange4(item) {
  127. console.log(item);
  128. this.selectRadio = item.split("__");
  129. },
  130. // 确定
  131. ok4() {
  132. console.log(this.selectRadio);
  133. if (!this.selectRadio.length) {
  134. return;
  135. }
  136. this.models4.disjunctor = false;
  137. this.Scan_ss(this.sData,this.sType);
  138. },
  139. cancel4() {
  140. this.models4.disjunctor = false;
  141. },
  142. // 如果不是静配,药配,标本配送,标本轮巡
  143. // 科室签到(小扫描)
  144. nextDeptOrder_ss(data, accountObj) {
  145. console.log(this.currentCode);
  146. let isKs = 0;
  147. let ids = [];
  148. let id = data.id;
  149. ids.push(id);
  150. let list = {
  151. code: "",
  152. ids: ids,
  153. };
  154. let code = "";
  155. let type = "";
  156. if (this.currentCode) {
  157. let gdStateValue = data.gdState.value; //工单状态value
  158. let associationTypeValue = data.taskType.associationType.value; //关联类型value
  159. // 患者陪检,并且工单状态是待到达
  160. if (
  161. gdStateValue == "4" &&
  162. associationTypeValue == "inspect"
  163. ) {
  164. list.code = this.currentCode; //其他
  165. type = "handleIns";
  166. }
  167. // 其他临床服务,并且工单状态是待到达||工单状态待送达
  168. if (
  169. (associationTypeValue == "other" &&
  170. gdStateValue == "4") ||
  171. gdStateValue == "5"
  172. ) {
  173. code = this.currentCode;
  174. type = "orderSign/" + code;
  175. list = {
  176. ids
  177. };
  178. if (accountObj) {
  179. list.handover = [accountObj.accountId];
  180. }
  181. isKs = 1;
  182. }
  183. if (
  184. (gdStateValue == "5" &&
  185. associationTypeValue == "inspect") ||
  186. associationTypeValue == "patientTransport"
  187. ) {
  188. code = this.currentCode;
  189. type = "orderSign/" + code;
  190. list = {
  191. ids
  192. };
  193. if (accountObj) {
  194. list.handover = [accountObj.accountId];
  195. }
  196. isKs = 1;
  197. }
  198. if (gdStateValue == "8") {
  199. code = this.currentCode; //患者陪检--检查
  200. type = "orderSign/" + code;
  201. list = {
  202. ids
  203. };
  204. if (accountObj) {
  205. list.handover = [accountObj.accountId];
  206. }
  207. isKs = 1;
  208. }
  209. if (
  210. gdStateValue == "4" &&
  211. associationTypeValue == "patientTransport"
  212. ) {
  213. list = {
  214. code: this.currentCode, //患者转运--检查
  215. ids: ids,
  216. };
  217. type = "handleTrans";
  218. }
  219. if(gdStateValue == "4" && (associationTypeValue == "inspect" || associationTypeValue == "patientTransport")){
  220. console.log(this.selectRadio)
  221. list.inspectMode = this.selectRadio.length > 0 ? this.selectRadio[0] : undefined;
  222. }
  223. post("/workerOrder/" + type, list).then((res) => {
  224. uni.hideLoading();
  225. if (res) {
  226. if (res.status == 200) {
  227. if (
  228. gdStateValue == "4" &&
  229. associationTypeValue == "other"
  230. ) {
  231. uni.navigateTo({
  232. url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  233. });
  234. }
  235. if (
  236. gdStateValue == "4" &&
  237. associationTypeValue != "other"
  238. ) {
  239. uni.navigateTo({
  240. url: `../../pages/scanning_Result/scanning_Result?type=${
  241. associationTypeValue
  242. }&type1=${res.type}&id=${data.id}&deptCode=${
  243. list.code
  244. }&patient=${res.patient}&patientCode=${
  245. res.patientCode
  246. }&deptName=${res.deptName}&bedNum=${
  247. res.bedNum
  248. }&status=${res.status}&msg=${
  249. res.msg
  250. }&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  251. });
  252. }
  253. if (gdStateValue == "8") {
  254. uni.navigateTo({
  255. url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  256. });
  257. }
  258. if (gdStateValue == "5") {
  259. uni.navigateTo({
  260. url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  261. });
  262. }
  263. } else {
  264. console.log(res, "扫描失败");
  265. if (res.type == "trans-ddd-1") {
  266. //起点科室扫描腕带码失败
  267. uni.navigateTo({
  268. url: `../../pages/scanning_Result/scanning_Result?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&status=600&msg=${res.msg}&qrcode=${this.currentCode}`,
  269. });
  270. } else {
  271. uni.navigateTo({
  272. url: `../../pages/scanning_Result/scanning_Result?type=${
  273. associationTypeValue
  274. }&type1=${res.type}&id=${data.id}&status=600&msg=${
  275. res.msg
  276. }&isKs=${isKs}&model=${encodeURIComponent(
  277. JSON.stringify(res)
  278. )}&qrcode=${this.currentCode}`,
  279. });
  280. }
  281. }
  282. } else {
  283. uni.navigateTo({
  284. url: `../../pages/scanning_Result/scanning_Result?id=${data.id}&status=600&msg=扫码失败!请扫描正确的二维码!&isKs=${isKs}&qrcode=${this.currentCode}`,
  285. });
  286. }
  287. });
  288. }
  289. },
  290. // 如果不是患者陪检或患者转运或其他
  291. // 科室签到
  292. nextDeptOrder_s(data, accountObj) {
  293. console.log(this.currentCode);
  294. let ids = [];
  295. let id = data.id;
  296. ids.push(id);
  297. let code = "";
  298. let postData = {
  299. ids
  300. };
  301. if (accountObj) {
  302. postData.handover = [accountObj.accountId];
  303. }
  304. if (this.currentCode) {
  305. code = this.currentCode;
  306. // 科室签到
  307. post("/workerOrder/orderSign/" + code, postData).then((res) => {
  308. uni.hideLoading();
  309. if (res.status == 200) {
  310. // 跳转到扫描科室
  311. // type1: res.type, //type类型
  312. // id: data.id, //工单ID
  313. // deptCode: code, //二维码
  314. // dept: res.dept //科室名称
  315. console.log(data,'工单')
  316. let endDepts = data.endDepts.map(v=>v.id).toString();
  317. console.log(endDepts,'smallScreen');
  318. uni.navigateTo({
  319. url: `../../pages/scanning_code/scanning_code?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}&endDepts=${endDepts}`,
  320. });
  321. } else {
  322. uni.navigateTo({
  323. url: `../../pages/scanning_Result/scanning_Result?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&status=600&msg=${res.msg}&isKs=1&qrcode=${this.currentCode}`,
  324. });
  325. }
  326. });
  327. }
  328. },
  329. // type==1 如果不是静配,药配,标本配送,标本轮巡
  330. // type==2 如果不是患者陪检,患者转运,其他
  331. // 扫码(小扫描)
  332. Scan_ss(data, type) {
  333. if (!this.SMFlag) {
  334. return;
  335. }
  336. this.SMFlag = false;
  337. this.currentData = data;
  338. console.log(data, 'data');
  339. SM().then((ress1) => {
  340. uni.showLoading({
  341. title: "加载中",
  342. mask: true,
  343. });
  344. //检验二维码的有效性
  345. post("/dept/scanning", {
  346. content: ress1,
  347. taskTypeId: data.taskType.id,
  348. gdState: data.gdState.id,
  349. }).then((result) => {
  350. this.SMFlag = true;
  351. this.currentCode = result.code;
  352. if (result.state == 200 || result.state == 201) {
  353. if (result.account) {
  354. if (type == 1) {
  355. this.isOpenTransportationProcessRemarks(this.currentData, {
  356. account: result.account,
  357. accountName: result.name,
  358. accountId: result.id,
  359. }, 'nextDeptOrder_ss');
  360. } else if (type == 2) {
  361. this.nextDeptOrder_s(this.currentData, {
  362. account: result.account,
  363. accountName: result.name,
  364. accountId: result.id,
  365. });
  366. }
  367. } else {
  368. if (type == 1) {
  369. this.isOpenTransportationProcessRemarks(this.currentData, undefined, 'nextDeptOrder_ss');
  370. } else if (type == 2) {
  371. this.nextDeptOrder_s(this.currentData);
  372. }
  373. }
  374. } else if (result.state == '0000') {
  375. uni.hideLoading();
  376. this.showSelectAccount(); //yeye
  377. } else {
  378. uni.hideLoading();
  379. uni.showToast({
  380. icon: "none",
  381. title: result.info || "接口获取数据失败!",
  382. });
  383. }
  384. });
  385. }).catch(err=>{
  386. this.SMFlag = true;
  387. });
  388. },
  389. // 填写交接人账号-确认
  390. hosOk(data) {
  391. console.log(data);
  392. const {
  393. accountName,
  394. account,
  395. accountId
  396. } = data;
  397. if (!accountName && !account) {
  398. //没有填写交接人
  399. uni.showModal({
  400. title: '提示',
  401. content: "请填写交接人账号!",
  402. showCancel: false,
  403. success: function(res) {
  404. if (res.confirm) {
  405. console.log('用户点击确定');
  406. } else if (res.cancel) {
  407. console.log('用户点击取消');
  408. }
  409. }
  410. });
  411. return;
  412. } else if (!accountName && account || accountName && !account) {
  413. //没有填写交接人
  414. uni.showModal({
  415. title: '提示',
  416. content: "请填写正确的交接人账号!",
  417. showCancel: false,
  418. success: function(res) {
  419. if (res.confirm) {
  420. console.log('用户点击确定');
  421. } else if (res.cancel) {
  422. console.log('用户点击取消');
  423. }
  424. }
  425. });
  426. return;
  427. }
  428. this.hosModels.disjunctor = false;
  429. let associationTypeValue = this.currentData.taskType.associationType.value;
  430. console.log(associationTypeValue)
  431. if (
  432. associationTypeValue !== "patientTransport" &&
  433. associationTypeValue !== "inspect" &&
  434. associationTypeValue !== "other"
  435. ) {
  436. this.nextDeptOrder_s(this.currentData, data);
  437. }
  438. if (
  439. associationTypeValue !== "jPBag" &&
  440. associationTypeValue !== "drugsBag" &&
  441. associationTypeValue !== "specimen" &&
  442. associationTypeValue !== "specimenPlan"
  443. ) {
  444. this.isOpenTransportationProcessRemarks(this.currentData, data, 'nextDeptOrder_ss');
  445. }
  446. },
  447. // 填写交接人账号-取消
  448. hosCancel() {
  449. this.hosModels.disjunctor = false;
  450. },
  451. // 填写交接人账号弹窗
  452. showSelectAccount() {
  453. this.hosModels = {
  454. title: '填写交接人账号',
  455. disjunctor: true,
  456. }
  457. },
  458. // 其他临床服务-运输过程-终点科室是否开通备注填写
  459. isOpenTransportationProcessRemarks(data, accountObj, funName){
  460. const tasktype = data.taskType;
  461. console.log(tasktype, data);
  462. if(tasktype.associationType.value === 'other' && tasktype.carryingCourses[1].logSwitch && data.gdState.value == 5){
  463. uni.navigateTo({
  464. url: `../../pages/transportationProcessRemarks/transportationProcessRemarks?data=${data ? encodeURIComponent(JSON.stringify(data)) : ''}&accountObj=${accountObj ? encodeURIComponent(JSON.stringify(accountObj)) : ''}&currentCode=${this.currentCode}&funName=${funName}&actions=${this.actions ? encodeURIComponent(JSON.stringify(this.actions)) : ''}&imageValue=${this.imageValue ? encodeURIComponent(JSON.stringify(this.imageValue)) : ''}`
  465. })
  466. }else{
  467. this[funName](data, accountObj);
  468. }
  469. },
  470. },
  471. components: {
  472. selectAccount
  473. },
  474. onShow(){
  475. this.SMFlag = true;
  476. },
  477. };
  478. </script>
  479. <style lang="less">
  480. .smallScreen {
  481. width: 100%;
  482. height: 100%;
  483. .smallScreen_scan {
  484. width: 100%;
  485. height: 100%;
  486. }
  487. }
  488. </style>