scanning_B.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  1. <template>
  2. <view class="Scanning_B">
  3. <view class="Scanning_top" v-if="res.status == 200 || res.status == 666">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok icon_transport transport-duigou"></text>
  6. </view>
  7. <view class="Scanning_top_text">
  8. <view class="text1" v-if="res.status == 200">扫描成功</view>
  9. <view class="text1" v-else-if="res.status == 666">查询成功</view>
  10. </view>
  11. </view>
  12. <view class="Scanning_top" v-if="res.status != 200 && res.status != 666">
  13. <view class="Scanning_top_icon">
  14. <text class="cubeic-close icon_transport transport-shibai"></text>
  15. </view>
  16. <view class="Scanning_top_text">
  17. <view class="text1">扫描失败</view>
  18. </view>
  19. </view>
  20. <view class="Scanning_cont" v-if="res.status == 200 || res.status == 666">
  21. <view>标本类型 : {{ infoDATA.stype.name || "-" }}</view>
  22. <view>标本编码 : {{ infoDATA.scode || "-" }}</view>
  23. <view>标本状态 : {{ res.data.speState ? res.data.speState.name : "-" }}</view>
  24. <view>申请科室 : {{ infoDATA.sickRoom || "-" }}</view>
  25. <view>检验科室 : {{ infoDATA.checkDept || "-" }}</view>
  26. <view>检验项目 : {{ res.data.specimenDesc || "-" }}</view>
  27. <view>患者姓名 : {{ res.data.patientName}}<text v-if="res.data.bedNum">({{res.data.bedNum}})</text></view>
  28. <view>住院号 : {{ res.data.residenceNo || "-" }}</view>
  29. </view>
  30. <view class="Scanning_cont" v-else>
  31. <view>{{ res.msg }}</view>
  32. </view>
  33. <view class="foot_btn">
  34. <view class="btn3" @click="showAlert()">知道了</view>
  35. <block v-if="res.scanCodeSpecimenOrderSign == 1 && res.data.speState && res.data.speState.value != 8">
  36. <view class="btn3" @click="buildAndOrderSign(res.data.id,res.workOrder.id)"
  37. v-if="res.workOrder&&(res.workOrder.gdState.value == 2||res.workOrder.gdState.value == 4)">接单并签到</view>
  38. <!-- <view class="btn3" @click="orderSign(res.workOrder)"
  39. v-else-if="res.workOrder&&res.workOrder.gdState.value != 2&&res.workOrder.gdState.value != 4">执行工单</view> -->
  40. <view class="btn3" @click="buildAndOrderSign(res.data.id)" v-if="!res.workOrder && res.data">建单并签到</view>
  41. </block>
  42. <view class="btn3" @click="back(res.data,res.data.gdid)"
  43. v-if="res.data.speState&&(res.data.speState.value == 2||res.data.speState.value == 3||res.data.speState.value == 4||res.data.speState.value == 5)">
  44. 退回</view>
  45. </view>
  46. <!-- 填写交接人账号弹窗 -->
  47. <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  48. @cancel="hosCancel">
  49. </selectAccount>
  50. <!-- 退回弹窗 -->
  51. <backModel v-if="backModels.disjunctor" :title="backModels.title" :disjunctor="backModels.disjunctor" @ok="backOk"
  52. @cancel="backCancel">
  53. </backModel>
  54. <!-- 弹窗 -->
  55. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  56. :operate="models.operate" @know="know"></showModel>
  57. </view>
  58. </template>
  59. <script>
  60. import {
  61. post,
  62. webHandle
  63. } from "../../http/http.js";
  64. export default {
  65. data() {
  66. return {
  67. backParams: {},
  68. workOrderId: 0,
  69. // 弹窗model
  70. models: {
  71. disjunctor: false,
  72. },
  73. backSpecimen: {},
  74. backStatus: '',
  75. infoDATA: {},
  76. res: {},
  77. // 填写交接人账号弹窗model
  78. hosModels: {
  79. disjunctor: false,
  80. },
  81. // 退回弹窗model
  82. backModels: {
  83. disjunctor: false,
  84. },
  85. currentCode: "",
  86. type: "", //类型,orderSign|buildAndOrderSign
  87. };
  88. },
  89. methods: {
  90. // 如果不是患者陪检或患者转运或其他
  91. // 科室签到
  92. nextDeptOrder_s(data, accountObj) {
  93. console.log(data, accountObj);
  94. let ids = [];
  95. let id = data.id;
  96. ids.push(id);
  97. let code = "";
  98. let postData = {
  99. ids,
  100. };
  101. if (this.type === 'orderSign') {
  102. postData.specimenOrderSign = data.specimenSet.map(v => v.id); //破坏性,必须扫标本
  103. }
  104. if (accountObj) {
  105. postData.handover = [accountObj.accountId];
  106. }
  107. if (this.currentCode) {
  108. code = this.currentCode;
  109. // 科室签到
  110. post("/workerOrder/orderSign/" + code, postData).then((res) => {
  111. uni.hideLoading();
  112. if (res.status == 200) {
  113. // 跳转到扫描科室
  114. // type1: res.type, //type类型
  115. // id: data.id, //工单ID
  116. // deptCode: code, //二维码
  117. // dept: res.dept //科室名称
  118. uni.navigateTo({
  119. url: `/pages/scanning_code/scanning_code?type=${
  120. data.taskType.associationType.value
  121. }&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${
  122. res.dept
  123. }&accountObj=${encodeURIComponent(
  124. JSON.stringify(accountObj)
  125. )}&deptId=${res.deptId}&specimenId=${res.specimenId}&fromSpecimenBuild=1`,
  126. });
  127. } else {
  128. uni.navigateTo({
  129. 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}`,
  130. });
  131. }
  132. });
  133. }
  134. },
  135. // 退回
  136. back(specimen, workOrderId) {
  137. this.backSpecimen = specimen;
  138. this.backStatus = 'back';
  139. this.workOrderId = workOrderId;
  140. this.showBack();
  141. },
  142. // 执行工单
  143. // orderSign(workOrder) {
  144. // this.type = 'orderSign';
  145. // uni.showModal({
  146. // title: '提示',
  147. // content: '是否执行工单?',
  148. // success: (res) => {
  149. // if (res.confirm) {
  150. // console.log('用户点击确定');
  151. // uni.showLoading({
  152. // title: "加载中",
  153. // mask: true,
  154. // });
  155. // let postData = {
  156. // content: workOrder.startDept.qrcode,
  157. // taskTypeId: workOrder.taskType.id,
  158. // gdState: workOrder.gdState.id,
  159. // };
  160. // //检验二维码的有效性
  161. // post("/dept/scanning", postData).then((result) => {
  162. // this.currentCode = result.code;
  163. // if (result.state == 200 || result.state == 201) {
  164. // if (result.account) {
  165. // this.nextDeptOrder_s(workOrder, {
  166. // account: result.account,
  167. // accountName: result.name,
  168. // accountId: result.id,
  169. // });
  170. // } else {
  171. // this.nextDeptOrder_s(workOrder);
  172. // }
  173. // } else if (result.state == "0000") {
  174. // uni.hideLoading();
  175. // this.showSelectAccount();
  176. // } else {
  177. // uni.hideLoading();
  178. // uni.showToast({
  179. // icon: "none",
  180. // title: result.info || "接口获取数据失败!",
  181. // });
  182. // }
  183. // });
  184. // } else if (res.cancel) {
  185. // console.log('用户点击取消');
  186. // }
  187. // }
  188. // });
  189. // },
  190. // 接单并签到或建单并签到
  191. buildAndOrderSign(speId, orderId) {
  192. this.type = 'buildAndOrderSign';
  193. if (orderId) {
  194. // 接单并签到
  195. this.type = 'specimenAssignAndSign';
  196. } else {
  197. // 建单并签到
  198. this.type = 'buildAndOrderSign';
  199. }
  200. uni.showModal({
  201. title: '提示',
  202. content: `是否${this.type == 'specimenAssignAndSign'?'接单并签到':'建单并签到'}?`,
  203. success: (res) => {
  204. if (res.confirm) {
  205. console.log('用户点击确定');
  206. uni.showLoading({
  207. title: "加载中",
  208. mask: true,
  209. });
  210. let postData = {
  211. speId
  212. }
  213. if (orderId) {
  214. // 接单并签到
  215. postData.orderId = orderId;
  216. }
  217. post("/workerOrder/specimenCreateAndSign", postData).then((res) => {
  218. if (res.state == 200 || res.state == 201) {
  219. uni.hideLoading();
  220. if (res.status == 200) {
  221. // 跳转到扫描科室
  222. // type1: res.type, //type类型
  223. // id: data.id, //工单ID
  224. // deptCode: code, //二维码
  225. // dept: res.dept //科室名称
  226. uni.navigateTo({
  227. url: `/pages/scanning_code/scanning_code?type=${
  228. res.workOrder.taskType.associationType.value
  229. }&type1=${res.type}&id=${res.workOrder.id}&deptCode=${
  230. this.currentCode
  231. }&dept=${res.dept}&accountObj=${encodeURIComponent(
  232. JSON.stringify(undefined)
  233. )}&deptId=${res.deptId}&specimenId=${speId}&fromSpecimenBuild=1`,
  234. });
  235. } else {
  236. uni.navigateTo({
  237. url: `/pages/scanning_Result/scanning_Result?type=${res.workOrder.taskType.associationType.value}&type1=${res.type}&id=${res.workOrder.id}&status=600&msg=${res.msg}&isKs=1`,
  238. });
  239. }
  240. } else if (res.state == "0000") {
  241. uni.hideLoading();
  242. this.currentCode = res.code;
  243. this.res.workOrder = res.workOrder;
  244. this.showSelectAccount();
  245. } else {
  246. uni.hideLoading();
  247. uni.showToast({
  248. icon: "none",
  249. title: res.msg || "接口获取数据失败!",
  250. });
  251. }
  252. });
  253. } else if (res.cancel) {
  254. console.log('用户点击取消');
  255. }
  256. }
  257. });
  258. },
  259. know() {
  260. this.models.disjunctor = false;
  261. if (this.models.icon === 'success') {
  262. uni.navigateTo({
  263. url: "../receiptpage/receiptpage",
  264. });
  265. }
  266. },
  267. // 退回
  268. backHandler(specimen, workorderId, data) {
  269. console.log(specimen);
  270. const {
  271. reasonForReturn,
  272. remarks,
  273. } = this.backParams;
  274. uni.showLoading({
  275. title: '加载中',
  276. mask: true
  277. })
  278. let postData = {
  279. reasonForReturn: reasonForReturn.id,
  280. remarks,
  281. scode: specimen.scode,
  282. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  283. speState: specimen.speState ? specimen.speState.id : undefined,
  284. handoverId: data ? data.accountId : undefined,
  285. handoverName: data ? data.accountName : undefined,
  286. gdId: workorderId || undefined,
  287. }
  288. post('/workerOrder/returnSpecimen', postData).then(res => {
  289. uni.hideLoading();
  290. if (res.state == 200) {
  291. this.models = {
  292. disjunctor: true,
  293. title: "提示",
  294. content: `标本退回成功`,
  295. icon: "success",
  296. };
  297. } else {
  298. this.models = {
  299. disjunctor: true,
  300. title: "提示",
  301. content: `标本退回失败`,
  302. icon: "error",
  303. };
  304. }
  305. })
  306. },
  307. // 填写交接人账号-确认
  308. hosOk(data) {
  309. console.log(data);
  310. const {
  311. accountName,
  312. account,
  313. accountId
  314. } = data;
  315. if (!accountName && !account) {
  316. //没有填写交接人
  317. uni.showModal({
  318. title: "提示",
  319. content: "请填写交接人账号!",
  320. showCancel: false,
  321. success: function(res) {
  322. if (res.confirm) {
  323. console.log("用户点击确定");
  324. } else if (res.cancel) {
  325. console.log("用户点击取消");
  326. }
  327. },
  328. });
  329. return;
  330. } else if ((!accountName && account) || (accountName && !account)) {
  331. //没有填写交接人
  332. uni.showModal({
  333. title: "提示",
  334. content: "请填写正确的交接人账号!",
  335. showCancel: false,
  336. success: function(res) {
  337. if (res.confirm) {
  338. console.log("用户点击确定");
  339. } else if (res.cancel) {
  340. console.log("用户点击取消");
  341. }
  342. },
  343. });
  344. return;
  345. }
  346. this.hosModels.disjunctor = false;
  347. uni.showLoading({
  348. title: "加载中",
  349. mask: true,
  350. });
  351. if (this.backStatus = 'back') {
  352. // 退回
  353. this.backHandler(this.backSpecimen, this.res.data.gdid, data);
  354. } else {
  355. this.nextDeptOrder_s(this.res.workOrder, data);
  356. }
  357. },
  358. // 填写交接人账号-取消
  359. hosCancel() {
  360. this.hosModels.disjunctor = false;
  361. },
  362. // 填写交接人账号弹窗
  363. showSelectAccount() {
  364. this.hosModels = {
  365. title: "填写交接人账号",
  366. disjunctor: true,
  367. };
  368. },
  369. // 知道了
  370. showAlert() {
  371. uni.navigateTo({
  372. url: "../receiptpage/receiptpage",
  373. });
  374. },
  375. // 退回-确认
  376. backOk(data) {
  377. console.log(data);
  378. this.backParams = data;
  379. this.hosModels.disjunctor = false;
  380. let postData = {
  381. "idx": 0,
  382. "sum": 1,
  383. "hospitalConfig": {
  384. "hosId": uni.getStorageSync("userData").user.currentHospital.id,
  385. "key": "returnSpecimenWhetherHandover"
  386. }
  387. };
  388. uni.showLoading({
  389. title: "加载中",
  390. mask: true,
  391. });
  392. post('/simple/data/fetchDataList/hospitalConfig', postData).then((result) => {
  393. uni.hideLoading();
  394. if (result.status == 200) {
  395. if (result.list[0].value == 1 && this.backParams.reasonForReturn.extra1 == 1) {
  396. this.backCancel();
  397. this.showSelectAccount();
  398. } else {
  399. this.backHandler(this.backSpecimen, this.workOrderId);
  400. }
  401. } else {
  402. uni.showToast({
  403. icon: "none",
  404. title: result.msg || "接口获取数据失败!",
  405. });
  406. }
  407. })
  408. },
  409. // 退回-取消
  410. backCancel() {
  411. this.backModels.disjunctor = false;
  412. },
  413. // 退回弹窗
  414. showBack() {
  415. this.backModels = {
  416. title: "退回",
  417. disjunctor: true,
  418. };
  419. },
  420. },
  421. onLoad(options) {
  422. this.res = JSON.parse(options.res);
  423. this.infoDATA = JSON.parse(options.infoDATA); //详细信息
  424. console.log(this.infoDATA);
  425. console.log(this.res);
  426. // #ifdef APP-PLUS
  427. webHandle("no", "app");
  428. // #endif
  429. // #ifdef H5
  430. webHandle("no", "wx");
  431. // #endif
  432. },
  433. };
  434. </script>
  435. <style lang="less">
  436. .Scanning_B {
  437. padding: 0px 74rpx;
  438. .uni-modal__btn_primary {
  439. color: #49b856 !important;
  440. }
  441. .Scanning_top {
  442. height: 270rpx;
  443. .Scanning_top_icon {
  444. width: 140rpx;
  445. height: 140rpx;
  446. margin: 0 auto;
  447. margin-top: 116rpx;
  448. border-radius: 50%;
  449. line-height: 140rpx;
  450. text-align: center;
  451. .cubeic-ok {
  452. font-size: 140rpx;
  453. color: #35b34a;
  454. }
  455. .cubeic-close {
  456. font-size: 140rpx;
  457. color: #ff3b53;
  458. }
  459. }
  460. .Scanning_top_text {
  461. .text1 {
  462. margin-top: 40rpx;
  463. font-size: 48rpx;
  464. text-align: center;
  465. }
  466. }
  467. }
  468. .Scanning_cont {
  469. font-size: 32rpx;
  470. view {
  471. margin-bottom: 16rpx;
  472. text-align: center;
  473. }
  474. .text {
  475. margin-top: 24rpx;
  476. color: #35b34a;
  477. }
  478. .text1 {
  479. margin-top: 24rpx;
  480. color: #ff3b53;
  481. }
  482. }
  483. .foot_btn {
  484. line-height: 88rpx;
  485. height: 100rpx;
  486. margin-top: 40rpx;
  487. display: flex;
  488. justify-content: center;
  489. .btn3 {
  490. flex: 1;
  491. height: 88rpx;
  492. background-image: linear-gradient(to right, #72c172, #3bb197);
  493. color: #fff;
  494. border-radius: 8rpx;
  495. font-size: 32rpx;
  496. margin-top: 16rpx;
  497. margin-right: 16rpx;
  498. text-align: center;
  499. &:last-of-type {
  500. margin-right: 0;
  501. }
  502. }
  503. }
  504. }
  505. </style>