scanning_djInfo.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478
  1. <template>
  2. <view class="Scanning_djInfo">
  3. <view class="Scanning_top" v-if="res.status == 200">
  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">操作成功</view>
  9. </view>
  10. </view>
  11. <view class="Scanning_top" v-if="
  12. res.status == 10005 ||
  13. res.status == 100018 ||
  14. res.status == 500 ||
  15. res.status == 10004 ||
  16. res.status == 100021 ||
  17. res.status == 100020 ||
  18. res.status == 100019 ||
  19. res.status == 100031
  20. ">
  21. <view class="Scanning_top_icon">
  22. <text class="cubeic-close icon_transport transport-shibai"></text>
  23. </view>
  24. <view class="Scanning_top_text">
  25. <view class="text1">操作失败</view>
  26. </view>
  27. </view>
  28. <view class="Scanning_cont" v-if="res.status != 200 || res.msg != '成功!'">
  29. <view>{{ res.msg }}</view>
  30. </view>
  31. <view class="Scanning_cont" v-if="
  32. (res.status == 200 && type == 'specimenPlan') ||
  33. (res.status == 200 && type == 'specimen')
  34. ">
  35. <view>标本类型 : {{ infoDATA.data.stype.name || "-" }}</view>
  36. <view>标本编号 : {{ infoDATA.data.scode || "-" }}</view>
  37. <view>患者姓名 : {{ infoDATA.data.patientName || "-" }}</view>
  38. <view>已扫描 : {{ speNum }}</view>
  39. </view>
  40. <view class="Scanning_cont" v-if="
  41. (res.status == 200 && type == 'inspect') || type == 'patientTransport'
  42. ">
  43. <view v-if="infoDATA.patient">患者姓名 : {{ infoDATA.patient || "-" }}</view>
  44. <view v-if="infoDATA.patient">患者编号 : {{ infoDATA.patientCode || "-" }}</view>
  45. <view v-if="infoDATA.patient">住院科室 : {{ infoDATA.deptName || "-" }}</view>
  46. <view v-if="infoDATA.patient">床号 : {{ infoDATA.bedNum || "-" }}</view>
  47. <view v-if="infoDATA.data">
  48. 检查项目 :
  49. <text v-for="(data, i) in infoDATA.data" :key="i">{{ data.inspectName }},</text>
  50. </view>
  51. <view v-if="
  52. infoType == 'ins-dsd-1' ||
  53. infoType == 'trans-dsd-1' ||
  54. infoDATA.type == 'trans-dsd-1'
  55. ">工单已完成</view>
  56. <view v-if="
  57. infoDATA.type == 'ins-half-ok'
  58. ">已到达检查科室,工单已完成。</view>
  59. </view>
  60. <view class="Scanning_cont" v-if="
  61. (res.status == 200 && type == 'drugsBag') ||
  62. (res.status == 200 && type == 'jPBag')
  63. ">
  64. <view v-if="res.status == 200 && type == 'drugsBag'">药包编码 : #{{ infoDATA.data.packid }}</view>
  65. <view v-if="res.status == 200 && type == 'jPBag'">静配编码 : #{{ infoDATA.data.packid }}</view>
  66. <view>所属科室 : {{ infoDATA.data.target.dept }}</view>
  67. <text v-if="infoType == 'drug-dsd-2' || infoType == 'jp-dsd-2'">工单已完成。</text>
  68. </view>
  69. <!-- <view class="foot_btn" v-if="idsType==1&&res.status==200">
  70. <view class="btn1" @click="Scanning_again()">继续扫描</view>
  71. <view class="btn2" @click="showAlert()">知道了</view>
  72. </view> -->
  73. <view class="foot_btn" v-if="
  74. res.status == 100018 || type == 'specimen' || type == 'specimenPlan'
  75. ">
  76. <view class="btn1" @click="Scanning_again()">继续扫描</view>
  77. <view class="btn2" @click="Scanning_complete(ids)">完成扫描</view>
  78. </view>
  79. <view class="foot_btn" v-if="
  80. type != 'specimen' &&
  81. res.status != 200 &&
  82. type != 'specimenPlan' &&
  83. type !== 'drugsBag' &&
  84. type !== 'jPBag' &&
  85. type !== 'patientTransport'
  86. ">
  87. <view class="btn3" @click="showAlert()">知道了</view>
  88. </view>
  89. <view class="foot_btn" v-if="
  90. (res.status != 200 && type == 'drugsBag') ||
  91. (res.status != 200 && type == 'jPBag') ||
  92. (res.status != 200 && type == 'patientTransport')
  93. ">
  94. <view class="btn3" @click="Scanning_again()">继续扫描</view>
  95. </view>
  96. <view class="foot_btn" v-if="
  97. idsType == 2 &&
  98. res.status == 200 &&
  99. type != 'specimen' &&
  100. idsType == 2 &&
  101. res.status == 200 &&
  102. type != 'specimenPlan'
  103. ">
  104. <view class="btn3" @click="showAlert()">知道了</view>
  105. </view>
  106. <!-- 弹窗 -->
  107. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  108. @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
  109. </view>
  110. </template>
  111. <script>
  112. import showModel from "../../components/showModel/showModel.vue";
  113. import {
  114. get,
  115. post,
  116. SM,
  117. webHandle
  118. } from "../../http/http.js";
  119. export default {
  120. data() {
  121. return {
  122. // 弹窗model
  123. models: {
  124. disjunctor: false,
  125. },
  126. wcId: "", //工单完成ID
  127. infoDATA: [],
  128. res: {
  129. status: "",
  130. msg: ""
  131. },
  132. infoType: "",
  133. DEPTCode: "",
  134. RESData: {},
  135. DEPT: "",
  136. dataId: "",
  137. type: "",
  138. model: {},
  139. idsType: 1,
  140. packid: "",
  141. speNum: 0,
  142. queryObj: {}, //路由传递过来的参数
  143. };
  144. },
  145. methods: {
  146. // 确定
  147. ok() {
  148. let postType = "";
  149. if (this.queryObj.type1 == "plan-spe-ddd-2") {
  150. postType = "finishPlanSpes";
  151. } else if (this.queryObj.type1 == "spe-ddd-2") {
  152. postType = "finishSpes";
  153. }
  154. this.models.disjunctor = false;
  155. let data = {
  156. type: this.queryObj.type1,
  157. ids: this.wcId,
  158. };
  159. post("/workerOrder/" + postType, data).then((res) => {
  160. if (res.status == 200) {
  161. uni.navigateTo({
  162. url: "../receiptpage/receiptpage",
  163. });
  164. } else {
  165. uni.showToast({
  166. icon: "none",
  167. title: "请求失败!",
  168. });
  169. }
  170. });
  171. },
  172. // 取消
  173. cancel() {
  174. this.models.disjunctor = false;
  175. },
  176. //完成扫描
  177. Scanning_complete(id) {
  178. if (
  179. this.queryObj.type1 == "plan-spe-ddd-2" ||
  180. this.queryObj.type1 == "spe-ddd-2"
  181. ) {
  182. this.wcId = id;
  183. this.models = {
  184. disjunctor: true,
  185. title: "提示",
  186. content: "是否确定标本已扫描完成?",
  187. icon: "warn",
  188. operate: {
  189. ok: "确定",
  190. cancel: "取消",
  191. },
  192. };
  193. } else {
  194. uni.navigateTo({
  195. url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
  196. this.queryObj.type1
  197. }&id=${encodeURIComponent(JSON.stringify(id))}&deptCode=${
  198. this.queryObj.deptCode
  199. }&dept=${this.queryObj.dept}`,
  200. });
  201. }
  202. },
  203. // 继续扫描
  204. Scanning_again() {
  205. let list = [];
  206. let postType = "";
  207. let ids = [];
  208. if (this.ids && this.ids[0]) {
  209. ids = this.ids;
  210. } else if (this.dataId) {
  211. ids = [];
  212. ids.push(this.dataId);
  213. }
  214. let data = {
  215. ids: ids,
  216. deptCode: this.DEPTCode,
  217. code: "", // 2
  218. };
  219. SM().then((ress1) => {
  220. // ----------------
  221. //检验二维码的有效性
  222. post("/dept/scanning", {
  223. content: ress1,
  224. }).then((result) => {
  225. if (result.state == 200 || result.state == 201) {
  226. let ress = result.code;
  227. if (ress) {
  228. data.code = ress;
  229. if (this.type == "inspect") {
  230. postType = "handleIns";
  231. list = data;
  232. }
  233. if (this.type == "jPBag" || this.type == "drugsBag") {
  234. postType = "handleDrugsAndJp";
  235. data["type"] = this.infoType;
  236. list = data;
  237. }
  238. if (this.type == "specimen") {
  239. postType = "handleSpes";
  240. data["speCode"] = data.code;
  241. delete data.code;
  242. data["type"] = this.infoType;
  243. list = data;
  244. }
  245. if (this.type == "specimenPlan") {
  246. postType = "handlePlanSpes";
  247. data["speCode"] = data.code;
  248. delete data.code;
  249. data["type"] = this.infoType;
  250. list = data;
  251. }
  252. if (this.type == "patientTransport") {
  253. postType = "handleTrans";
  254. list = data;
  255. }
  256. post("/workerOrder/" + postType, list).then((res) => {
  257. if (res.status == 200) {
  258. if (
  259. this.type == "inspect" ||
  260. this.type == "patientTransport"
  261. ) {
  262. if (res.ids) {
  263. for (var i = 0; i < this.ids.length; i++) {
  264. if (this.ids[i] == res.ids[0]) {
  265. this.ids.splice(i, 1);
  266. }
  267. }
  268. if (this.ids.length > 1) {
  269. this.idsType = 1;
  270. } else {
  271. this.idsType = 2;
  272. }
  273. }
  274. this.infoDATA = res;
  275. this.type = this.type;
  276. this.DEPTCode = this.DEPTCode;
  277. } else if (this.type == "drugsBag") {
  278. // this.infoDATA.data.packid = res.data.packid;
  279. this.infoDATA = res;
  280. this.res["status"] = res.status;
  281. this.res["msg"] = res.msg;
  282. } else if (
  283. this.type == "specimenPlan" ||
  284. this.type == "specimen"
  285. ) {
  286. this.infoDATA = res;
  287. this.speNum++;
  288. uni.setStorageSync("speNum", this.speNum); //seimin 2020年6月15日18:45:46
  289. // --------------------------
  290. this.res["status"] = res.status;
  291. this.res["msg"] = res.msg;
  292. // --------------------------
  293. } else if (this.type == "jPBag") {
  294. // this.infoDATA.data.packid = res.data.packid;
  295. this.infoDATA = res;
  296. this.res["status"] = res.status;
  297. this.res["msg"] = res.msg;
  298. } else {
  299. uni.navigateTo({
  300. url: `../scanning_djEnd/scanning_djEnd?type=${
  301. this.queryObj.type
  302. }&type1=${this.queryObj.type1}&code=${
  303. this.queryObj.deptCode
  304. }&dept=${this.queryObj.dept}&ids=${encodeURIComponent(
  305. JSON.stringify(this.ids)
  306. )}&speNum=${this.speNum}&model=${encodeURIComponent(
  307. JSON.stringify(res)
  308. )}`,
  309. });
  310. }
  311. } else {
  312. uni.navigateTo({
  313. url: `../scanning_djEnd/scanning_djEnd?type=${
  314. this.queryObj.type
  315. }&type1=${this.queryObj.type1}&code=${
  316. this.queryObj.deptCode
  317. }&dept=${this.queryObj.dept}&ids=${encodeURIComponent(
  318. JSON.stringify(this.ids)
  319. )}&speNum=${this.speNum}&model=${encodeURIComponent(
  320. JSON.stringify(res)
  321. )}`,
  322. });
  323. }
  324. });
  325. }
  326. } else {
  327. uni.showToast({
  328. icon: "none",
  329. title: "请求失败!",
  330. });
  331. }
  332. });
  333. // ------------------------------
  334. });
  335. },
  336. // 知道了
  337. showAlert() {
  338. uni.navigateTo({
  339. url: "../receiptpage/receiptpage",
  340. });
  341. },
  342. },
  343. onLoad(options) {
  344. this.queryObj = options;
  345. if (this.queryObj.model) {
  346. let list = JSON.parse(this.queryObj.model);
  347. this.infoDATA = list;
  348. } else {
  349. this.infoDATA = this.queryObj.infoData;
  350. }
  351. this.RESData = this.queryObj.resData;
  352. this.res["status"] = this.queryObj.status;
  353. this.res["msg"] = this.queryObj.msg;
  354. this.res["patient"] = this.queryObj.patient;
  355. this.infoType = this.queryObj.type1;
  356. if (this.queryObj.dept) {
  357. this.DEPT = this.queryObj.dept;
  358. }
  359. this.queryObj.ids = JSON.parse(this.queryObj.ids);
  360. if (this.queryObj.ids) {
  361. this.ids = this.queryObj.ids;
  362. if (this.ids.length > 1) {
  363. this.idsType = 1;
  364. } else {
  365. this.idsType = 2;
  366. }
  367. }
  368. if (this.queryObj.speNum) {
  369. this.speNum = this.queryObj.speNum;
  370. } else {
  371. this.speNum = uni.getStorageSync("speNum");
  372. this.speNum = Number(this.speNum);
  373. }
  374. this.DEPTCode = this.queryObj.deptCode;
  375. this.type = this.queryObj.type;
  376. // #ifdef APP-PLUS
  377. webHandle("no", "app");
  378. // #endif
  379. // #ifdef H5
  380. webHandle("no", "wx");
  381. // #endif
  382. },
  383. };
  384. </script>
  385. <style lang="less">
  386. .Scanning_djInfo {
  387. padding: 0 74rpx;
  388. .Scanning_top {
  389. height: 270rpx;
  390. .red {
  391. background-color: #ff3b53 !important;
  392. }
  393. .Scanning_top_icon {
  394. width: 140rpx;
  395. height: 140rpx;
  396. margin: 0 auto;
  397. margin-top: 116rpx;
  398. border-radius: 50%;
  399. line-height: 140rpx;
  400. .cubeic-ok {
  401. font-size: 140rpx;
  402. color: #35b34a;
  403. }
  404. .cubeic-close {
  405. font-size: 140rpx;
  406. color: #ff3b53;
  407. }
  408. }
  409. .Scanning_top_text {
  410. .text1 {
  411. margin-top: 40rpx;
  412. font-size: 48rpx;
  413. text-align: center;
  414. }
  415. }
  416. }
  417. .Scanning_cont {
  418. font-size: 32rpx;
  419. text-align: center;
  420. view {
  421. margin-bottom: 16rpx;
  422. }
  423. .text {
  424. margin-top: 24rpx;
  425. color: #35b34a;
  426. }
  427. .text1 {
  428. margin-top: 24rpx;
  429. color: #ff3b53;
  430. }
  431. }
  432. .foot_btn {
  433. line-height: 88rpx;
  434. height: 100rpx;
  435. margin-top: 40rpx;
  436. text-align: center;
  437. .btn1,
  438. .btn2,
  439. .btn3 {
  440. height: 88rpx;
  441. width: 45%;
  442. background-image: linear-gradient(to right, #72c172, #3bb197);
  443. color: #fff;
  444. border-radius: 8rpx;
  445. font-size: 32rpx;
  446. margin-top: 16rpx;
  447. }
  448. .btn1 {
  449. float: left;
  450. }
  451. .btn2 {
  452. float: right;
  453. }
  454. .btn3 {
  455. margin: 0 auto;
  456. }
  457. }
  458. }
  459. </style>