scanning_B.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  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>患者姓名 : {{ res.data.patientName || "-" }}</view>
  25. <view>住院号 : {{ res.data.residenceNo || "-" }}</view>
  26. <view>申请科室 : {{ infoDATA.sickRoom || "-" }}</view>
  27. <view>检查科室 : {{ infoDATA.checkDept || "-" }}</view>
  28. <view>检验项目 : {{ res.data.specimenDesc || "-" }}</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="orderSign(res.workOrder)" v-if="res.workOrder">执行工单</view>
  37. <view class="btn3" @click="buildAndOrderSign(res.data.id)" v-if="!res.workOrder && res.data">建单并签到</view>
  38. </block>
  39. </view>
  40. <!-- 填写交接人账号弹窗 -->
  41. <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  42. @cancel="hosCancel">
  43. </selectAccount>
  44. </view>
  45. </template>
  46. <script>
  47. import {
  48. post,
  49. webHandle
  50. } from "../../http/http.js";
  51. export default {
  52. data() {
  53. return {
  54. infoDATA: {},
  55. res: {},
  56. // 填写交接人账号弹窗model
  57. hosModels: {
  58. disjunctor: false,
  59. },
  60. currentCode: "",
  61. type: "", //类型,orderSign|buildAndOrderSign
  62. };
  63. },
  64. methods: {
  65. // 如果不是患者陪检或患者转运或其他
  66. // 科室签到
  67. nextDeptOrder_s(data, accountObj) {
  68. console.log(data, accountObj);
  69. let ids = [];
  70. let id = data.id;
  71. ids.push(id);
  72. let code = "";
  73. let postData = {
  74. ids,
  75. };
  76. if (this.type === 'orderSign') {
  77. postData.specimenOrderSign = data.specimenSet.map(v => v.id); //破坏性,必须扫标本
  78. }
  79. if (accountObj) {
  80. postData.handover = [accountObj.accountId];
  81. }
  82. if (this.currentCode) {
  83. code = this.currentCode;
  84. // 科室签到
  85. post("/workerOrder/orderSign/" + code, postData).then((res) => {
  86. uni.hideLoading();
  87. if (res.status == 200) {
  88. // 跳转到扫描科室
  89. // type1: res.type, //type类型
  90. // id: data.id, //工单ID
  91. // deptCode: code, //二维码
  92. // dept: res.dept //科室名称
  93. uni.navigateTo({
  94. url: `/pages/scanning_code/scanning_code?type=${
  95. data.taskType.associationType.value
  96. }&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${
  97. res.dept
  98. }&accountObj=${encodeURIComponent(
  99. JSON.stringify(accountObj)
  100. )}&deptId=${res.deptId}`,
  101. });
  102. } else {
  103. uni.navigateTo({
  104. 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}`,
  105. });
  106. }
  107. });
  108. }
  109. },
  110. // 执行工单
  111. orderSign(workOrder) {
  112. this.type = 'orderSign';
  113. uni.showLoading({
  114. title: "加载中",
  115. mask: true,
  116. });
  117. let postData = {
  118. content: workOrder.startDept.qrcode,
  119. taskTypeId: workOrder.taskType.id,
  120. gdState: workOrder.gdState.id,
  121. };
  122. //检验二维码的有效性
  123. post("/dept/scanning", postData).then((result) => {
  124. this.currentCode = result.code;
  125. if (result.state == 200 || result.state == 201) {
  126. if (result.account) {
  127. this.nextDeptOrder_s(workOrder, {
  128. account: result.account,
  129. accountName: result.name,
  130. accountId: result.id,
  131. });
  132. } else {
  133. this.nextDeptOrder_s(workOrder);
  134. }
  135. } else if (result.state == "0000") {
  136. uni.hideLoading();
  137. this.showSelectAccount();
  138. } else {
  139. uni.hideLoading();
  140. uni.showToast({
  141. icon: "none",
  142. title: "请求失败!",
  143. });
  144. }
  145. });
  146. },
  147. // 建单并签到
  148. buildAndOrderSign(speId) {
  149. this.type = 'buildAndOrderSign';
  150. uni.showLoading({
  151. title: "加载中",
  152. mask: true,
  153. });
  154. post("/workerOrder/specimenCreateAndSign", {
  155. speId,
  156. }).then((res) => {
  157. if (res.state == 200 || res.state == 201) {
  158. uni.hideLoading();
  159. if (res.status == 200) {
  160. // 跳转到扫描科室
  161. // type1: res.type, //type类型
  162. // id: data.id, //工单ID
  163. // deptCode: code, //二维码
  164. // dept: res.dept //科室名称
  165. uni.navigateTo({
  166. url: `/pages/scanning_code/scanning_code?type=${
  167. res.workOrder.taskType.associationType.value
  168. }&type1=${res.type}&id=${res.workOrder.id}&deptCode=${
  169. this.currentCode
  170. }&dept=${res.dept}&accountObj=${encodeURIComponent(
  171. JSON.stringify(undefined)
  172. )}&deptId=${res.deptId}`,
  173. });
  174. } else {
  175. uni.navigateTo({
  176. 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`,
  177. });
  178. }
  179. } else if (res.state == "0000") {
  180. uni.hideLoading();
  181. this.currentCode = res.code;
  182. this.res.workOrder = res.workOrder;
  183. this.showSelectAccount();
  184. } else {
  185. uni.hideLoading();
  186. uni.showToast({
  187. icon: "none",
  188. title: res.msg || "请求失败!",
  189. });
  190. }
  191. });
  192. },
  193. // 填写交接人账号-确认
  194. hosOk(data) {
  195. console.log(data);
  196. const {
  197. accountName,
  198. account,
  199. accountId
  200. } = data;
  201. if (!accountName && !account) {
  202. //没有填写交接人
  203. uni.showModal({
  204. title: "提示",
  205. content: "请填写交接人账号!",
  206. showCancel: false,
  207. success: function(res) {
  208. if (res.confirm) {
  209. console.log("用户点击确定");
  210. } else if (res.cancel) {
  211. console.log("用户点击取消");
  212. }
  213. },
  214. });
  215. return;
  216. } else if ((!accountName && account) || (accountName && !account)) {
  217. //没有填写交接人
  218. uni.showModal({
  219. title: "提示",
  220. content: "请填写正确的交接人账号!",
  221. showCancel: false,
  222. success: function(res) {
  223. if (res.confirm) {
  224. console.log("用户点击确定");
  225. } else if (res.cancel) {
  226. console.log("用户点击取消");
  227. }
  228. },
  229. });
  230. return;
  231. }
  232. this.hosModels.disjunctor = false;
  233. uni.showLoading({
  234. title: "加载中",
  235. mask: true,
  236. });
  237. this.nextDeptOrder_s(this.res.workOrder, data);
  238. },
  239. // 填写交接人账号-取消
  240. hosCancel() {
  241. this.hosModels.disjunctor = false;
  242. },
  243. // 填写交接人账号弹窗
  244. showSelectAccount() {
  245. this.hosModels = {
  246. title: "填写交接人账号",
  247. disjunctor: true,
  248. };
  249. },
  250. // 知道了
  251. showAlert() {
  252. uni.navigateTo({
  253. url: "../receiptpage/receiptpage",
  254. });
  255. },
  256. },
  257. onLoad(options) {
  258. this.res = JSON.parse(options.res);
  259. this.infoDATA = JSON.parse(options.infoDATA); //详细信息
  260. console.log(this.infoDATA);
  261. // #ifdef APP-PLUS
  262. webHandle("no", "app");
  263. // #endif
  264. // #ifdef H5
  265. webHandle("no", "wx");
  266. // #endif
  267. },
  268. };
  269. </script>
  270. <style lang="less">
  271. .Scanning_B {
  272. padding: 0px 74rpx;
  273. .uni-modal__btn_primary {
  274. color: #49b856 !important;
  275. }
  276. .Scanning_top {
  277. height: 270rpx;
  278. .Scanning_top_icon {
  279. width: 140rpx;
  280. height: 140rpx;
  281. margin: 0 auto;
  282. margin-top: 116rpx;
  283. border-radius: 50%;
  284. line-height: 140rpx;
  285. text-align: center;
  286. .cubeic-ok {
  287. font-size: 140rpx;
  288. color: #35b34a;
  289. }
  290. .cubeic-close {
  291. font-size: 140rpx;
  292. color: #ff3b53;
  293. }
  294. }
  295. .Scanning_top_text {
  296. .text1 {
  297. margin-top: 40rpx;
  298. font-size: 48rpx;
  299. text-align: center;
  300. }
  301. }
  302. }
  303. .Scanning_cont {
  304. font-size: 32rpx;
  305. view {
  306. margin-bottom: 16rpx;
  307. text-align: center;
  308. }
  309. .text {
  310. margin-top: 24rpx;
  311. color: #35b34a;
  312. }
  313. .text1 {
  314. margin-top: 24rpx;
  315. color: #ff3b53;
  316. }
  317. }
  318. .foot_btn {
  319. line-height: 88rpx;
  320. height: 100rpx;
  321. margin-top: 40rpx;
  322. display: flex;
  323. justify-content: center;
  324. .btn3 {
  325. flex: 1;
  326. height: 88rpx;
  327. background-image: linear-gradient(to right, #72c172, #3bb197);
  328. color: #fff;
  329. border-radius: 8rpx;
  330. font-size: 32rpx;
  331. margin-top: 16rpx;
  332. margin-right: 16rpx;
  333. text-align: center;
  334. &:last-of-type {
  335. margin-right: 0;
  336. }
  337. }
  338. }
  339. }
  340. </style>