scanning_B.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742
  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 newicon newicon-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 newicon newicon-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>标本状态 : <text :class="{ red: res.data.speState && res.data.speState.value == 8 }">{{ res.data.speState ? res.data.speState.name : "-" }}</text></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.data && res.data.speState && res.data.speState.value != 8">
  36. <!-- 1, 支持待到达本人,显示接单签到按钮 -->
  37. <!-- 1, 匹配到单子待接单,显示接单签到按钮 -->
  38. <!-- 2, 支持待到达非本人,显示接单签到按钮 -->
  39. <view class="btn3" @click="buildAndOrderSign(res.data.id,res.workOrder.id)" v-if="(bigScanShowSignBtn && res.workOrder && res.workOrder.worker && res.workOrder.gdState.value == 4 && loginUser.id == res.workOrder.worker.id) || (bigScanShowSignBtn && res.workOrder && (res.workOrder.gdState.value == 2 || res.workOrder.gdState.value == 3)) || (bigScanArriveNotOwner && res.workOrder && res.workOrder.worker && res.workOrder.gdState.value == 4 && loginUser.id != res.workOrder.worker.id)">接单并签到</view>
  40. <!-- 没有匹配到单子,显示建单并签到按钮 -->
  41. <view class="btn3" @click="buildAndOrderSign(res.data.id)" v-if="bigScanShowCreateBtn && !res.workOrder">建单并签到</view>
  42. </block>
  43. <view class="btn3" @click="back(res.data,res.data.gdid)"
  44. v-if="res.data && res.data.speState&&(res.data.speState.value == 2||res.data.speState.value == 3||res.data.speState.value == 4||res.data.speState.value == 5)">
  45. 退回</view>
  46. </view>
  47. <!-- 填写交接人工号弹窗 -->
  48. <selectAccount v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  49. @cancel="hosCancel">
  50. </selectAccount>
  51. <!-- 退回弹窗 -->
  52. <backModel v-if="backModels.disjunctor" :title="backModels.title" :disjunctor="backModels.disjunctor" @ok="backOk"
  53. @cancel="backCancel">
  54. </backModel>
  55. <!-- 弹窗 -->
  56. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  57. :operate="models.operate" @know="know"></showModel>
  58. </view>
  59. </template>
  60. <script>
  61. import {
  62. get,
  63. post,
  64. webHandle
  65. } from "../../http/http.js";
  66. export default {
  67. data() {
  68. return {
  69. loginUser: uni.getStorageSync("userData").user,
  70. bigScanShowSignBtn: false,//显示接单签到按钮或待到达本人
  71. bigScanArriveNotOwner: false,//支持待到达非本人
  72. bigScanShowCreateBtn: false,//显示建单并签到按钮
  73. defaultScanSpe: false,//默认扫描标本进入标本扫描页
  74. backParams: {},
  75. workOrderId: 0,
  76. // 弹窗model
  77. models: {
  78. disjunctor: false,
  79. },
  80. backSpecimen: {},
  81. backStatus: '',
  82. infoDATA: {},
  83. res: {},
  84. // 填写交接人工号弹窗model
  85. hosModels: {
  86. disjunctor: false,
  87. },
  88. // 退回弹窗model
  89. backModels: {
  90. disjunctor: false,
  91. },
  92. currentCode: "",
  93. type: "", //类型,orderSign|buildAndOrderSign
  94. };
  95. },
  96. methods: {
  97. // 如果不是患者陪检或患者转运或其他
  98. // 科室签到
  99. nextDeptOrder_s(data, accountObj) {
  100. console.log(data, accountObj);
  101. let ids = [];
  102. let id = data.id;
  103. ids.push(id);
  104. let code = "";
  105. let postData = {
  106. ids,
  107. };
  108. if (this.type === 'buildAndOrderSign' || this.type === 'specimenAssignAndSign') {
  109. postData.specimenOrderSign = data.specimenSet.map(v => v.id); //破坏性,必须扫标本
  110. }
  111. if (accountObj) {
  112. postData.handover = [accountObj.accountId];
  113. }
  114. if (this.currentCode) {
  115. code = this.currentCode;
  116. // 科室签到
  117. post("/workerOrder/orderSign/" + code, postData).then((res) => {
  118. uni.hideLoading();
  119. if (res.status == 200) {
  120. // 跳转到扫描科室
  121. // type1: res.type, //type类型
  122. // id: data.id, //工单ID
  123. // deptCode: code, //二维码
  124. // dept: res.dept //科室名称
  125. uni.navigateTo({
  126. url: `/pages/scanning_code/scanning_code?type=${
  127. data.taskType.associationType.value
  128. }&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${
  129. res.dept
  130. }&accountObj=${encodeURIComponent(
  131. JSON.stringify(accountObj)
  132. )}&deptId=${res.deptId}&specimenId=${res.specimenId}&fromSpecimenBuild=1`,
  133. });
  134. } else {
  135. uni.navigateTo({
  136. 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}`,
  137. });
  138. }
  139. });
  140. }
  141. },
  142. // 退回
  143. back(specimen, workOrderId) {
  144. this.backSpecimen = specimen;
  145. this.backStatus = 'back';
  146. this.workOrderId = workOrderId;
  147. this.showBack();
  148. },
  149. // 执行工单
  150. // orderSign(workOrder) {
  151. // this.type = 'orderSign';
  152. // uni.showModal({
  153. // title: '提示',
  154. // content: '是否执行工单?',
  155. // success: (res) => {
  156. // if (res.confirm) {
  157. // console.log('用户点击确定');
  158. // uni.showLoading({
  159. // title: "加载中",
  160. // mask: true,
  161. // });
  162. // let postData = {
  163. // content: workOrder.startDept.qrcode,
  164. // taskTypeId: workOrder.taskType.id,
  165. // gdState: workOrder.gdState.id,
  166. // };
  167. // //检验二维码的有效性
  168. // post("/dept/scanning", postData).then((result) => {
  169. // this.currentCode = result.code;
  170. // if (result.state == 200 || result.state == 201) {
  171. // if (result.account) {
  172. // this.nextDeptOrder_s(workOrder, {
  173. // account: result.account,
  174. // accountName: result.name,
  175. // accountId: result.id,
  176. // });
  177. // } else {
  178. // this.nextDeptOrder_s(workOrder);
  179. // }
  180. // } else if (result.state == "0000") {
  181. // uni.hideLoading();
  182. // this.showSelectAccount();
  183. // } else {
  184. // uni.hideLoading();
  185. // uni.showToast({
  186. // icon: "none",
  187. // title: result.info || "接口获取数据失败!",
  188. // });
  189. // }
  190. // });
  191. // } else if (res.cancel) {
  192. // console.log('用户点击取消');
  193. // }
  194. // }
  195. // });
  196. // },
  197. // 接单并签到或建单并签到
  198. buildAndOrderSign(speId, orderId) {
  199. this.type = 'buildAndOrderSign';
  200. if (orderId) {
  201. // 接单并签到
  202. this.type = 'specimenAssignAndSign';
  203. } else {
  204. // 建单并签到
  205. this.type = 'buildAndOrderSign';
  206. }
  207. uni.showModal({
  208. title: '提示',
  209. content: `是否${this.type == 'specimenAssignAndSign'?'接单并签到':'建单并签到'}?`,
  210. success: (res) => {
  211. if (res.confirm) {
  212. console.log('用户点击确定');
  213. uni.showLoading({
  214. title: "加载中",
  215. mask: true,
  216. });
  217. let postData = {
  218. speId
  219. }
  220. if (orderId) {
  221. // 接单并签到
  222. postData.orderId = orderId;
  223. }
  224. post("/workerOrder/specimenCreateAndSign", postData).then((res) => {
  225. if (res.state == 200 || res.state == 201) {
  226. uni.hideLoading();
  227. if (res.status == 200) {
  228. // 跳转到扫描科室
  229. // type1: res.type, //type类型
  230. // id: data.id, //工单ID
  231. // deptCode: code, //二维码
  232. // dept: res.dept //科室名称
  233. // uni.navigateTo({
  234. // url: `/pages/scanning_code/scanning_code?type=${
  235. // res.workOrder.taskType.associationType.value
  236. // }&type1=${res.type}&id=${res.workOrder.id}&deptCode=${
  237. // this.currentCode
  238. // }&dept=${res.dept}&accountObj=${encodeURIComponent(
  239. // JSON.stringify(undefined)
  240. // )}&deptId=${res.deptId}&specimenId=${speId}&fromSpecimenBuild=1`,
  241. // });
  242. this.breforeJump(res);
  243. } else {
  244. uni.navigateTo({
  245. 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`,
  246. });
  247. }
  248. } else if (res.state == "0000") {
  249. uni.hideLoading();
  250. this.currentCode = res.code;
  251. this.res.workOrder = res.workOrder;
  252. this.showSelectAccount();
  253. } else {
  254. uni.hideLoading();
  255. uni.showToast({
  256. icon: "none",
  257. title: res.msg || "接口获取数据失败!",
  258. });
  259. }
  260. });
  261. } else if (res.cancel) {
  262. console.log('用户点击取消');
  263. }
  264. }
  265. });
  266. },
  267. know() {
  268. this.models.disjunctor = false;
  269. if (this.models.icon === 'success') {
  270. uni.navigateTo({
  271. url: "../receiptpage/receiptpage",
  272. });
  273. }
  274. },
  275. // 退回
  276. backHandler(specimen, workorderId, data) {
  277. console.log(specimen);
  278. const {
  279. reasonForReturn,
  280. remarks,
  281. } = this.backParams;
  282. uni.showLoading({
  283. title: '加载中',
  284. mask: true
  285. })
  286. let postData = {
  287. reasonForReturn: reasonForReturn.id,
  288. remarks,
  289. scode: specimen.scode,
  290. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  291. speState: specimen.speState ? specimen.speState.id : undefined,
  292. handoverId: data ? data.accountId : undefined,
  293. handoverName: data ? data.accountName : undefined,
  294. gdId: workorderId || undefined,
  295. }
  296. post('/workerOrder/returnSpecimen', postData).then(res => {
  297. uni.hideLoading();
  298. if (res.state == 200) {
  299. this.models = {
  300. disjunctor: true,
  301. title: "提示",
  302. content: `标本退回成功`,
  303. icon: "success",
  304. };
  305. } else {
  306. this.models = {
  307. disjunctor: true,
  308. title: "提示",
  309. content: `标本退回失败`,
  310. icon: "error",
  311. };
  312. }
  313. })
  314. },
  315. // 填写交接人工号-确认
  316. hosOk(data) {
  317. console.log(data);
  318. const {
  319. accountName,
  320. account,
  321. accountId
  322. } = data;
  323. if (!accountName && !account) {
  324. //没有填写交接人
  325. uni.showModal({
  326. title: "提示",
  327. content: "请填写交接人工号!",
  328. showCancel: false,
  329. success: function(res) {
  330. if (res.confirm) {
  331. console.log("用户点击确定");
  332. } else if (res.cancel) {
  333. console.log("用户点击取消");
  334. }
  335. },
  336. });
  337. return;
  338. } else if ((!accountName && account) || (accountName && !account)) {
  339. //没有填写交接人
  340. uni.showModal({
  341. title: "提示",
  342. content: "请填写正确的交接人工号!",
  343. showCancel: false,
  344. success: function(res) {
  345. if (res.confirm) {
  346. console.log("用户点击确定");
  347. } else if (res.cancel) {
  348. console.log("用户点击取消");
  349. }
  350. },
  351. });
  352. return;
  353. }
  354. this.hosModels.disjunctor = false;
  355. uni.showLoading({
  356. title: "加载中",
  357. mask: true,
  358. });
  359. if (this.backStatus = 'back') {
  360. // 退回
  361. this.backHandler(this.backSpecimen, this.res.data.gdid, data);
  362. } else {
  363. this.nextDeptOrder_s(this.res.workOrder, data);
  364. }
  365. },
  366. // 填写交接人工号-取消
  367. hosCancel() {
  368. this.hosModels.disjunctor = false;
  369. },
  370. // 填写交接人工号弹窗
  371. showSelectAccount() {
  372. this.hosModels = {
  373. disjunctor: true,
  374. };
  375. },
  376. // 知道了
  377. showAlert() {
  378. uni.navigateTo({
  379. url: "../receiptpage/receiptpage",
  380. });
  381. },
  382. // 退回-确认
  383. backOk(data) {
  384. console.log(data);
  385. this.backParams = data;
  386. this.hosModels.disjunctor = false;
  387. // ====================================
  388. uni.showLoading({
  389. title: "加载中",
  390. mask: true,
  391. });
  392. const userData = uni.getStorageSync("userData");
  393. // 查询标本配送业务
  394. post("/simple/data/fetchDataList/taskType",{
  395. "idx": 0,
  396. "sum": 10,
  397. "taskType": {
  398. "simpleQuery": true,
  399. "hosId": {
  400. "id": userData.user.currentHospital.id
  401. },
  402. "associationType": {
  403. "key": "association_types",
  404. "value": "specimen"
  405. }
  406. }
  407. }).then((res) => {
  408. if (res.status == 200) {
  409. let taskTypeDTO = res.list[0];
  410. if(taskTypeDTO){
  411. // 查询业务页面控制-标本
  412. post("/simple/data/fetchDataList/taskTypeConfig",{
  413. "idx": 0,
  414. "sum": 10,
  415. "taskTypeConfig": {
  416. taskTypeDTO,
  417. }
  418. }).then((res) => {
  419. uni.hideLoading();
  420. if (res.status == 200) {
  421. let data = res.list[0];
  422. if(data){
  423. if (data.returnSpecimenWhetherHandover == 1 && this.backParams.reasonForReturn.extra1 == 1) {
  424. this.backCancel();
  425. this.showSelectAccount();
  426. } else {
  427. this.backHandler(this.backSpecimen, this.workOrderId);
  428. }
  429. }else{
  430. this.backHandler(this.backSpecimen, this.workOrderId);
  431. }
  432. } else {
  433. uni.showToast({
  434. icon: "none",
  435. title: res.msg || "接口获取数据失败!",
  436. });
  437. }
  438. });
  439. }else{
  440. uni.hideLoading();
  441. uni.showToast({
  442. icon: "none",
  443. title: "未查询到标本配送业务!",
  444. });
  445. }
  446. } else {
  447. uni.hideLoading();
  448. uni.showToast({
  449. icon: "none",
  450. title: res.msg || "接口获取数据失败!",
  451. });
  452. }
  453. });
  454. // ====================================
  455. },
  456. // 退回-取消
  457. backCancel() {
  458. this.backStatus = '';
  459. this.backModels.disjunctor = false;
  460. },
  461. // 退回弹窗
  462. showBack() {
  463. this.backModels = {
  464. title: "退回",
  465. disjunctor: true,
  466. };
  467. },
  468. // 页面控制-标本
  469. getPageConfigSpecimen(){
  470. const userData = uni.getStorageSync("userData");
  471. console.log('userData', userData);
  472. uni.showLoading({
  473. title: "加载中",
  474. mask: true,
  475. });
  476. // 查询标本配送业务
  477. post("/simple/data/fetchDataList/taskType",{
  478. "idx": 0,
  479. "sum": 10,
  480. "taskType": {
  481. "simpleQuery": true,
  482. "hosId": {
  483. "id": userData.user.currentHospital.id
  484. },
  485. "associationType": {
  486. "key": "association_types",
  487. "value": "specimen"
  488. }
  489. }
  490. }).then((res) => {
  491. if (res.status == 200) {
  492. let taskTypeDTO = res.list[0];
  493. if(taskTypeDTO){
  494. // 查询业务页面控制-标本
  495. post("/simple/data/fetchDataList/taskTypeConfig",{
  496. "idx": 0,
  497. "sum": 10,
  498. "taskTypeConfig": {
  499. taskTypeDTO,
  500. }
  501. }).then((res) => {
  502. if (res.status == 200) {
  503. let data = res.list[0];
  504. if(data){
  505. this.bigScanShowSignBtn = data.bigScanShowSignBtn === 1;
  506. this.bigScanArriveNotOwner = data.bigScanArriveNotOwner === 1;
  507. this.bigScanShowCreateBtn = data.bigScanShowCreateBtn === 1;
  508. this.defaultScanSpe = data.defaultScanSpe === 1;
  509. if(this.defaultScanSpe){
  510. this.defaultJumpPage();
  511. }else{
  512. uni.hideLoading();
  513. }
  514. }else{
  515. uni.hideLoading();
  516. uni.showToast({
  517. icon: "none",
  518. title: "未查询到配置!",
  519. });
  520. }
  521. } else {
  522. uni.hideLoading();
  523. uni.showToast({
  524. icon: "none",
  525. title: res.msg || "接口获取数据失败!",
  526. });
  527. }
  528. });
  529. }else{
  530. uni.hideLoading();
  531. uni.showToast({
  532. icon: "none",
  533. title: "未查询到标本配送业务!",
  534. });
  535. }
  536. } else {
  537. uni.hideLoading();
  538. uni.showToast({
  539. icon: "none",
  540. title: res.msg || "接口获取数据失败!",
  541. });
  542. }
  543. });
  544. },
  545. // 默认情况下标本大扫描匹配到待到达工单,为当前的配送人员,直接进入标本扫描页面
  546. defaultJumpPage(){
  547. let workOrder = this.res.workOrder;
  548. console.log('workOrder:', workOrder)
  549. if(workOrder && workOrder.worker && workOrder.gdState.value == 4 && this.loginUser.id == workOrder.worker.id){
  550. let postData = {
  551. speId: this.res.data.id,
  552. orderId: workOrder.id,
  553. }
  554. post("/workerOrder/specimenCreateAndSign", postData).then((res) => {
  555. if (res.state == 200 || res.state == 201) {
  556. if (res.status == 200) {
  557. // 跳转到扫描科室
  558. // type1: res.type, //type类型
  559. // id: data.id, //工单ID
  560. // deptCode: code, //二维码
  561. // dept: res.dept //科室名称
  562. // uni.navigateTo({
  563. // url: `/pages/scanning_code/scanning_code?type=${
  564. // res.workOrder.taskType.associationType.value
  565. // }&type1=${res.type}&id=${res.workOrder.id}&deptCode=${
  566. // this.currentCode
  567. // }&dept=${res.dept}&accountObj=${encodeURIComponent(
  568. // JSON.stringify(undefined)
  569. // )}&deptId=${res.deptId}&specimenId=${speId}&fromSpecimenBuild=1`,
  570. // });
  571. this.breforeJump(res);
  572. } else {
  573. uni.hideLoading();
  574. uni.navigateTo({
  575. 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`,
  576. });
  577. }
  578. } else if (res.state == "0000") {
  579. uni.hideLoading();
  580. this.currentCode = res.code;
  581. this.res.workOrder = res.workOrder;
  582. this.showSelectAccount();
  583. } else {
  584. uni.hideLoading();
  585. uni.showToast({
  586. icon: "none",
  587. title: res.msg || "接口获取数据失败!",
  588. });
  589. }
  590. });
  591. }else{
  592. uni.hideLoading();
  593. }
  594. },
  595. // 跳转前统一处理
  596. breforeJump(resObj) {
  597. uni.showLoading({
  598. title: '加载中',
  599. mask: true,
  600. })
  601. post('/workerOrder/getSpecimenCount', {
  602. gdId: resObj.workOrder.id
  603. }).then(res => {
  604. get('/api/fetchData/specimen/' + this.res.data.id).then(ress => {
  605. uni.hideLoading();
  606. console.log(ress);
  607. ress.msg = '成功';
  608. ress.specimenCount = res.specimenCount;
  609. ress.type = resObj.type;
  610. uni.navigateTo({
  611. url: `../scanning_Result/scanning_Result?type=${
  612. resObj.workOrder.taskType.associationType.value
  613. }&type1=${
  614. resObj.type
  615. }&infoData=${encodeURIComponent(
  616. JSON.stringify(ress.data)
  617. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  618. this.currentCode
  619. }&dept=${
  620. resObj.dept
  621. }&taskTypeId=${
  622. resObj.workOrder.taskType.id
  623. }&deptId=${resObj.deptId}&id=${resObj.workOrder.id}&model=${encodeURIComponent(
  624. JSON.stringify(ress)
  625. )}&speNum=${res.specimenCount}`,
  626. });
  627. })
  628. })
  629. },
  630. },
  631. onShow() {
  632. let that = this
  633. // #ifdef APP-PLUS
  634. uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
  635. // uni.$on('scan', function(data) {
  636. // that.pdaChange(data)
  637. // })
  638. // #endif
  639. },
  640. onLoad(options) {
  641. this.res = JSON.parse(options.res);
  642. this.getPageConfigSpecimen();
  643. this.infoDATA = JSON.parse(options.infoDATA); //详细信息
  644. console.log(this.infoDATA);
  645. console.log(this.res);
  646. // #ifdef APP-PLUS
  647. webHandle("no", "app");
  648. // #endif
  649. // #ifdef H5
  650. webHandle("no", "wx");
  651. // #endif
  652. },
  653. };
  654. </script>
  655. <style lang="less">
  656. .Scanning_B {
  657. padding: 0px 74rpx;
  658. .uni-modal__btn_primary {
  659. color: #49b856 !important;
  660. }
  661. .Scanning_top {
  662. height: 270rpx;
  663. .Scanning_top_icon {
  664. width: 140rpx;
  665. height: 140rpx;
  666. margin: 0 auto;
  667. margin-top: 116rpx;
  668. border-radius: 50%;
  669. line-height: 140rpx;
  670. text-align: center;
  671. .cubeic-ok {
  672. font-size: 140rpx;
  673. color: #35b34a;
  674. }
  675. .cubeic-close {
  676. font-size: 140rpx;
  677. color: #ff3b53;
  678. }
  679. }
  680. .Scanning_top_text {
  681. .text1 {
  682. margin-top: 40rpx;
  683. font-size: 48rpx;
  684. text-align: center;
  685. }
  686. }
  687. }
  688. .Scanning_cont {
  689. font-size: 32rpx;
  690. view {
  691. margin-bottom: 16rpx;
  692. text-align: center;
  693. }
  694. .text {
  695. margin-top: 24rpx;
  696. color: #35b34a;
  697. }
  698. .text1 {
  699. margin-top: 24rpx;
  700. color: #ff3b53;
  701. }
  702. }
  703. .foot_btn {
  704. line-height: 88rpx;
  705. height: 100rpx;
  706. margin-top: 40rpx;
  707. display: flex;
  708. justify-content: center;
  709. .btn3 {
  710. flex: 1;
  711. height: 88rpx;
  712. background-image: linear-gradient(to right, #72c172, #3bb197);
  713. color: #fff;
  714. border-radius: 8rpx;
  715. font-size: 32rpx;
  716. margin-top: 16rpx;
  717. margin-right: 16rpx;
  718. text-align: center;
  719. &:last-of-type {
  720. margin-right: 0;
  721. }
  722. }
  723. }
  724. }
  725. </style>