scanning_B.vue 16 KB

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