scanning_all.vue 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222
  1. <template>
  2. <view class="Scanning_all">
  3. <view class="Scanning">
  4. <view class="Scanning_top" id="Scanning_tops" :animation="animationData">
  5. <view class="Scanning_top_icon">
  6. <text class="cubeic-ok icon_transport transport-duigou"></text>
  7. </view>
  8. <view class="Scanning_top_text">
  9. <view class="text1">签到成功</view>
  10. </view>
  11. <view class="Scanning_cont">
  12. 当前科室关联多个工单,请查看工单信息,
  13. <view>可选择多个工单后,点击 一键送达 完成配送.</view>
  14. </view>
  15. </view>
  16. <view class="title" v-if="workData && workData.length > 0">
  17. <text class="span1">工单信息</text>
  18. <text class="span2" @click="all()">全选</text>
  19. <text class="span3" @click="Dall()">全不选</text>
  20. </view>
  21. <view class="tabs" v-if="workData && workData.length > 0">
  22. <view class="tab">
  23. <view @click="act('drugsBag')" v-if="infoDATA['drugsBag']">
  24. <view id="10" :class="{ acts: tabType == 'drugsBag' }"
  25. >药品({{ infoDATA.drugsBag.length }})</view
  26. >
  27. </view>
  28. <view @click="act('specimen')" v-if="infoDATA['specimen']">
  29. <view id="40" :class="{ acts: tabType == 'specimen' }"
  30. >标本({{ infoDATA.specimen.length }})</view
  31. >
  32. </view>
  33. <view @click="act('specimenPlan')" v-if="infoDATA['specimenPlan']">
  34. <view id="40" :class="{ acts: tabType == 'specimenPlan' }"
  35. >标本轮巡({{ infoDATA.specimenPlan.length }})</view
  36. >
  37. </view>
  38. <view
  39. @click="act('patientTransport')"
  40. v-if="infoDATA['patientTransport']"
  41. >
  42. <view id="20" :class="{ acts: tabType == 'patientTransport' }"
  43. >患者转运({{ infoDATA.patientTransport.length }})</view
  44. >
  45. </view>
  46. <view @click="act('inspect')" v-if="infoDATA['inspect']">
  47. <view id="30" :class="{ acts: tabType == 'inspect' }"
  48. >患者陪检({{ infoDATA.inspect.length }})</view
  49. >
  50. </view>
  51. <view @click="act('jPBag')" v-if="infoDATA['jPBag']">
  52. <view id="40" :class="{ acts: tabType == 'jPBag' }"
  53. >静配({{ infoDATA.jPBag.length }})</view
  54. >
  55. </view>
  56. <view @click="act('other')" v-if="infoDATA['other']">
  57. <view id="40" :class="{ acts: tabType == 'other' }"
  58. >其他({{ infoDATA.other.length }})</view
  59. >
  60. </view>
  61. </view>
  62. </view>
  63. <view
  64. class="page_items"
  65. v-if="!workData"
  66. style="font-size: 18px; margin-top: 15%"
  67. >
  68. <view class="zwsj">
  69. <image
  70. class="zwsj_img"
  71. mode="widthFix"
  72. src="../../static/img/zanwushuju.png"
  73. ></image>
  74. <view class="zwsj_txt">暂无工单</view>
  75. </view>
  76. </view>
  77. <view
  78. class="page_items footerOtherMargin"
  79. v-if="workData && workData.length > 0"
  80. >
  81. <view class="page_item" v-for="(infoDATA, i) of workData" :key="i">
  82. <view class="page_item_top">
  83. <view class="page_item_top_L">
  84. <text
  85. v-show="hasSelect(infoDATA.id)"
  86. class="ac"
  87. @click="ac(infoDATA, i)"
  88. :id="infoDATA.id"
  89. >
  90. <text class="ac-span"></text>
  91. </text>
  92. <text
  93. v-show="!hasSelect(infoDATA.id)"
  94. class="ac1"
  95. @click="ac1(infoDATA, i)"
  96. :id="infoDATA.id + '0'"
  97. ></text>
  98. <text class="L_text">单号:{{ infoDATA.gdcode }}</text>
  99. <view
  100. class="page_item_cont_start emergency1"
  101. v-if="infoDATA.emergencyType.value == 1"
  102. >
  103. <text class="page_item_cont_start_txt">
  104. <text
  105. class="cubeic-star icon_transport transport-shiwujiaoxing"
  106. ></text>
  107. {{ infoDATA.emergencyType.name }}
  108. </text>
  109. </view>
  110. <view
  111. class="page_item_cont_start emergency"
  112. v-if="infoDATA.emergencyType.value == 2"
  113. >
  114. <text class="page_item_cont_start_txt">
  115. <text
  116. class="cubeic-star icon_transport transport-shiwujiaoxing"
  117. ></text>
  118. {{ infoDATA.emergencyType.name }}
  119. </text>
  120. </view>
  121. <view
  122. class="page_item_cont_start emergencys"
  123. v-if="infoDATA.emergencyType.value == 3"
  124. >
  125. <text class="page_item_cont_start_txt">
  126. <text
  127. class="cubeic-star icon_transport transport-shiwujiaoxing"
  128. ></text>
  129. {{ infoDATA.emergencyType.name }}
  130. </text>
  131. </view>
  132. </view>
  133. <view class="page_item_top_R">
  134. <text
  135. class="L_iocn"
  136. v-if="infoDATA.taskType.associationType.value == 'specimen'"
  137. >标本</text
  138. >
  139. <text
  140. class="L_iocn"
  141. v-if="infoDATA.taskType.associationType.value == 'specimenPlan'"
  142. >标本</text
  143. >
  144. <text
  145. class="L_iocn"
  146. v-if="infoDATA.taskType.associationType.value == 'drugsBag'"
  147. >药品</text
  148. >
  149. <text
  150. class="L_iocn"
  151. v-if="infoDATA.taskType.associationType.value == 'jPBag'"
  152. >静配</text
  153. >
  154. <text
  155. class="L_iocn"
  156. v-if="infoDATA.taskType.associationType.value == 'inspect'"
  157. >患者陪检</text
  158. >
  159. <text
  160. class="L_iocn"
  161. v-if="
  162. infoDATA.taskType.associationType.value == 'patientTransport'
  163. "
  164. >患者转运</text
  165. >
  166. <text
  167. class="L_iocn"
  168. v-if="infoDATA.taskType.associationType.value == 'other'"
  169. >其他</text
  170. >
  171. </view>
  172. <view class="L"></view>
  173. <view class="R"></view>
  174. </view>
  175. <view class="page_item_cont">
  176. <view class="page_item_cont_T">
  177. <view class="page_item_cont_title">
  178. <text> <text class="starting">起</text> 点科室 </text>
  179. <text class="text_big">{{ infoDATA.startDept.dept }}</text>
  180. </view>
  181. </view>
  182. <view class="line"></view>
  183. <view class="page_item_cont_B">
  184. <template
  185. v-if="infoDATA.taskType.associationType.value == 'inspect'"
  186. >
  187. <view
  188. class="page_item_cont_title"
  189. v-for="(dept, i) of infoDATA.middleDept"
  190. :key="i"
  191. >
  192. <text> <text class="End">检</text> 查科室 </text>
  193. <text class="text_big">{{ dept.dept }}</text>
  194. <view></view>
  195. </view>
  196. </template>
  197. <template
  198. v-if="infoDATA.taskType.associationType.value != 'inspect'"
  199. >
  200. <view
  201. class="page_item_cont_title"
  202. v-for="(dept, i) of infoDATA.endDepts"
  203. :key="i"
  204. >
  205. <text> <text class="End">终</text> 点科室 </text>
  206. <text class="text_big">{{ dept.dept }}</text>
  207. </view>
  208. </template>
  209. </view>
  210. </view>
  211. <view class="page_item_foot">
  212. <view class="page_item_foot_text">
  213. <text class="text1">状态</text>
  214. <text
  215. class="text2"
  216. v-if="
  217. !(
  218. infoDATA.gdState.value == '5' &&
  219. infoDATA.taskType.associationType.value == 'inspect'
  220. )
  221. "
  222. >{{ infoDATA.gdState.name }}</text
  223. >
  224. <text
  225. class="text2"
  226. v-if="
  227. infoDATA.gdState.value == '5' &&
  228. infoDATA.taskType.associationType.value == 'inspect'
  229. "
  230. >待送回</text
  231. >
  232. </view>
  233. <view
  234. class="page_item_foot_text"
  235. v-if="infoDATA.gdState.value == '2'"
  236. >
  237. <text class="text1">预计响应时间</text>
  238. <text class="text2">{{ infoDATA.estimeResponseTime || 0 }}</text>
  239. </view>
  240. <view
  241. class="page_item_foot_text"
  242. v-if="infoDATA.gdState.value == '5'"
  243. >
  244. <text
  245. class="text1"
  246. v-if="!(infoDATA.taskType.associationType.value == 'inspect')"
  247. >预计送达时间</text
  248. >
  249. <text
  250. class="text1"
  251. v-if="infoDATA.taskType.associationType.value == 'inspect'"
  252. >预计送回时间</text
  253. >
  254. <text class="text2">{{ infoDATA.estimeCompleteTime || 0 }}</text>
  255. </view>
  256. <view
  257. class="page_item_foot_text"
  258. v-if="infoDATA.gdState.value == '4'"
  259. >
  260. <text class="text1">预计到达时间</text>
  261. <text class="text2">{{ infoDATA.estimateArriveTime || 0 }}</text>
  262. </view>
  263. <view class="page_item_foot_text">
  264. <text class="text1">创建时间</text>
  265. <text class="text2">{{ infoDATA.startTime }}</text>
  266. </view>
  267. </view>
  268. </view>
  269. </view>
  270. <view
  271. class="foot_btn2 footerPadding"
  272. v-if="workData && workData.length > 0"
  273. >
  274. <view class="btn1" @click="allStart()" v-if="flag">一键操作</view>
  275. <view class="btn1" v-if="!flag">一键操作</view>
  276. <view class="btn2" @click="showAlert">知道了</view>
  277. </view>
  278. <view class="foot_btn1 footerPadding" v-if="!workData">
  279. <view class="btn3" @click="showAlert">知道了</view>
  280. </view>
  281. </view>
  282. <!-- 弹窗 -->
  283. <showModel
  284. :title="models.title"
  285. :icon="models.icon"
  286. :disjunctor="models.disjunctor"
  287. :content="models.content"
  288. @know="know"
  289. :operate="models.operate"
  290. ></showModel>
  291. <!-- 填写交接人账号弹窗 -->
  292. <selectAccount
  293. v-if="hosModels.disjunctor"
  294. :title="hosModels.title"
  295. :disjunctor="hosModels.disjunctor"
  296. @ok="hosOk"
  297. @cancel="hosCancel"
  298. >
  299. </selectAccount>
  300. </view>
  301. </template>
  302. <script>
  303. import showModel from "../../components/showModel/showModel.vue";
  304. import { post, SM, webHandle } from "../../http/http.js";
  305. export default {
  306. data() {
  307. return {
  308. SMFlag: true,
  309. // 填写交接人账号弹窗model
  310. hosModels: {
  311. disjunctor: false,
  312. },
  313. // 弹窗model
  314. models: {
  315. disjunctor: false,
  316. },
  317. infoDATA: {},
  318. workData: [],
  319. tabType: "", //当前选中项
  320. userId: {
  321. ids: [],
  322. },
  323. typeData: [],
  324. types: false,
  325. code: "",
  326. flag: true, //一键操作,禁止多次
  327. flagTimer: null,
  328. selectArr: [], //选中项
  329. animationData: {}, //动画
  330. };
  331. },
  332. methods: {
  333. // 填写交接人账号-确认
  334. hosOk(data) {
  335. console.log(data);
  336. const { accountName, account, accountId } = data;
  337. if (!accountName && !account) {
  338. //没有填写交接人
  339. uni.showModal({
  340. title: "提示",
  341. content: "请填写交接人账号!",
  342. showCancel: false,
  343. success: function (res) {
  344. if (res.confirm) {
  345. console.log("用户点击确定");
  346. } else if (res.cancel) {
  347. console.log("用户点击取消");
  348. }
  349. },
  350. });
  351. return;
  352. } else if ((!accountName && account) || (accountName && !account)) {
  353. //没有填写交接人
  354. uni.showModal({
  355. title: "提示",
  356. content: "请填写正确的交接人账号!",
  357. showCancel: false,
  358. success: function (res) {
  359. if (res.confirm) {
  360. console.log("用户点击确定");
  361. } else if (res.cancel) {
  362. console.log("用户点击取消");
  363. }
  364. },
  365. });
  366. return;
  367. }
  368. this.hosModels.disjunctor = false;
  369. this.orderDeptHandler(false,data);
  370. },
  371. // 填写交接人账号-取消
  372. hosCancel() {
  373. this.hosModels.disjunctor = false;
  374. this.flag = true;
  375. },
  376. // 填写交接人账号弹窗
  377. showSelectAccount() {
  378. this.hosModels = {
  379. title: "填写交接人账号",
  380. disjunctor: true,
  381. };
  382. },
  383. // 知道了
  384. showAlert() {
  385. uni.navigateTo({
  386. url: "../receiptpage/receiptpage",
  387. });
  388. },
  389. //科室签到
  390. //bigScanner----判断是否需要交接人
  391. //accountObj----弹窗填写的交接人信息
  392. orderDeptHandler(bigScanner,accountObj) {
  393. let type = "orderSign/" + this.code;
  394. let list = { ids: this.userId.ids };
  395. bigScanner && (list.bigScanner = ['666']);
  396. if (accountObj) {
  397. list.handover = [accountObj.accountId];
  398. }
  399. uni.showLoading({
  400. title: "加载中",
  401. mask: true,
  402. });
  403. post("/workerOrder/" + type, list).then((res) => {
  404. uni.hideLoading();
  405. if (res.status == 200) {
  406. if (this.tabType == "inspect" || this.tabType == "patientTransport") {
  407. if (res.ids) {
  408. for (var i = 0; i < this.userId.ids.length; i++) {
  409. if (this.userId.ids[i] == res.ids[0]) {
  410. this.userId.ids.splice(i, 1);
  411. }
  412. }
  413. }
  414. uni.navigateTo({
  415. url: `../scanning_djInfo/scanning_djInfo?type=${
  416. this.tabType
  417. }&type1=${res.type}&infoData=${res.data}&status=${
  418. res.status
  419. }&msg=${res.msg}&deptCode=${this.code}&dept=${
  420. res.dept
  421. }&ids=${encodeURIComponent(
  422. JSON.stringify(this.userId.ids)
  423. )}&model=${encodeURIComponent(JSON.stringify(res))}`,
  424. });
  425. } else {
  426. uni.navigateTo({
  427. url: `../scanning_djEnd/scanning_djEnd?type=${
  428. this.tabType
  429. }&type1=${res.type}&code=${this.code}&dept=${
  430. res.dept
  431. }&ids=${encodeURIComponent(
  432. JSON.stringify(this.userId.ids)
  433. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  434. });
  435. }
  436. } else if (res.status == "0000") {
  437. this.showSelectAccount(); //yeye
  438. } else {
  439. this.flag = true;
  440. uni.navigateTo({
  441. url: `../scanning_djEnd/scanning_djEnd?type=${this.tabType}&type1=${
  442. res.type
  443. }&code=${this.code}&dept=${res.dept}&ids=${encodeURIComponent(
  444. JSON.stringify(this.userId.ids)
  445. )}&model=${encodeURIComponent(JSON.stringify(res))}&deptId=${res.deptId}`,
  446. });
  447. }
  448. });
  449. },
  450. //一键操作
  451. allStart() {
  452. clearTimeout(this.flagTimer);
  453. this.flagTimer = setTimeout(() => {
  454. this.flag = false;
  455. let list = {};
  456. let type = "";
  457. if (this.userId.ids.length > 0) {
  458. if (
  459. this.tabType == "drugsBag" ||
  460. this.tabType == "jPBag" ||
  461. this.tabType == "other" ||
  462. this.tabType == "specimen" ||
  463. this.tabType == "specimenPlan"
  464. ) {
  465. this.orderDeptHandler(true);
  466. } else {
  467. if (!this.SMFlag) {
  468. return;
  469. }
  470. this.SMFlag = false;
  471. SM()
  472. .then((ress1) => {
  473. uni.showLoading({
  474. title: "加载中",
  475. mask: true,
  476. });
  477. //检验二维码的有效性
  478. post("/dept/scanning", {
  479. content: ress1,
  480. }).then((result) => {
  481. this.SMFlag = true;
  482. if (result.state == 200 || result.state == 201) {
  483. let ress = result.code;
  484. if (ress) {
  485. if (this.tabType == "patientTransport") {
  486. type = "handleTrans";
  487. let data = {
  488. ids: this.userId.ids,
  489. deptCode: this.code,
  490. code: ress,
  491. };
  492. list = data;
  493. }
  494. if (this.tabType == "inspect") {
  495. type = "handleIns";
  496. let data = {
  497. ids: this.userId.ids,
  498. deptCode: this.code,
  499. code: ress,
  500. };
  501. list = data;
  502. }
  503. post("/workerOrder/" + type, list).then((res) => {
  504. uni.hideLoading();
  505. if (res.status == 200) {
  506. if (
  507. this.tabType == "inspect" ||
  508. this.tabType == "patientTransport"
  509. ) {
  510. if (res.ids) {
  511. for (var i = 0; i < this.userId.ids.length; i++) {
  512. if (this.userId.ids[i] == res.ids[0]) {
  513. this.userId.ids.splice(i, 1);
  514. }
  515. }
  516. }
  517. uni.navigateTo({
  518. url: `../scanning_djInfo/scanning_djInfo?type=${
  519. this.tabType
  520. }&type1=${res.type}&infoData=${res.data}&status=${
  521. res.status
  522. }&msg=${res.msg}&deptCode=${this.code}&dept=${
  523. res.dept
  524. }&ids=${encodeURIComponent(
  525. JSON.stringify(this.userId.ids)
  526. )}&model=${encodeURIComponent(
  527. JSON.stringify(res)
  528. )}`,
  529. });
  530. } else {
  531. uni.navigateTo({
  532. url: `../scanning_djEnd/scanning_djEnd?type=${
  533. this.tabType
  534. }&type1=${res.type}&dept=${
  535. res.dept
  536. }&ids=${encodeURIComponent(
  537. JSON.stringify(this.userId.ids)
  538. )}&model=${encodeURIComponent(
  539. JSON.stringify(res)
  540. )}&code=${this.code}`,
  541. });
  542. }
  543. } else {
  544. uni.navigateTo({
  545. url: `../scanning_djEnd/scanning_djEnd?type=${
  546. this.tabType
  547. }&type1=${res.type}&dept=${
  548. res.dept
  549. }&ids=${encodeURIComponent(
  550. JSON.stringify(this.userId.ids)
  551. )}&model=${encodeURIComponent(
  552. JSON.stringify(res)
  553. )}&code=${this.code}`,
  554. });
  555. }
  556. });
  557. }
  558. } else {
  559. this.flag = true;
  560. uni.hideLoading();
  561. uni.showToast({
  562. icon: "none",
  563. title: "请求失败!",
  564. });
  565. }
  566. });
  567. })
  568. .catch((err) => {
  569. this.SMFlag = true;
  570. });
  571. }
  572. } else {
  573. this.flag = true;
  574. this.models = {
  575. disjunctor: true,
  576. title: "提示",
  577. content: "请选择工单!",
  578. icon: "warn",
  579. operate: {
  580. know: "知道了",
  581. },
  582. };
  583. }
  584. }, 500);
  585. },
  586. typePD(data, list) {
  587. if (list) {
  588. if (data.length >= 2) {
  589. for (var i = 0; i < data.length; i++) {
  590. if (data[i].gdState.value != list.gdState.value) {
  591. this.typeData.splice(i, 1);
  592. this.types = true;
  593. }
  594. }
  595. } else {
  596. this.types = false;
  597. }
  598. } else if (data.length == 1) {
  599. this.types = false;
  600. } else {
  601. this.types = false;
  602. for (var i = 0; i < data.length; i++) {
  603. if (data[0].gdState.value != data[i].gdState.value) {
  604. this.typeData.splice(i, 1);
  605. this.types = true;
  606. }
  607. }
  608. }
  609. },
  610. act(type) {
  611. this.Dall();
  612. this.tabType = type;
  613. this.workData = this.infoDATA[type];
  614. },
  615. // 已选择的项中是否包含该id
  616. hasSelect(id) {
  617. return this.selectArr.includes(id);
  618. },
  619. //选中
  620. ac(data, i) {
  621. // id放入数组
  622. this.selectArr = this.selectArr.filter((item) => item != data.id);
  623. for (var i = 0; i < this.userId.ids.length; i++) {
  624. if (this.userId.ids[i] == data.id) {
  625. this.typeData.splice(i, 1);
  626. this.userId.ids.splice(i, 1);
  627. }
  628. }
  629. },
  630. //未选中
  631. ac1(data, i) {
  632. this.typeData.push(data);
  633. this.types = false;
  634. for (var i = 0; i < this.typeData.length; i++) {
  635. if (this.typeData[0].gdState.value != this.typeData[i].gdState.value) {
  636. this.models = {
  637. disjunctor: true,
  638. title: "提示",
  639. content: "请选择不同状态的工单!",
  640. icon: "warn",
  641. operate: {
  642. know: "知道了",
  643. },
  644. };
  645. this.typeData.splice(i, 1);
  646. this.types = true;
  647. }
  648. }
  649. if (this.types) {
  650. } else {
  651. this.userId.ids.push(data.id);
  652. this.selectArr.push(data.id);
  653. }
  654. },
  655. //全选
  656. all() {
  657. let id = [];
  658. this.typeData = JSON.parse(JSON.stringify(this.workData));
  659. this.typePD(this.workData);
  660. if (this.types) {
  661. this.models = {
  662. disjunctor: true,
  663. title: "提示",
  664. content: "请选择不同状态的工单!",
  665. icon: "warn",
  666. operate: {
  667. know: "知道了",
  668. },
  669. };
  670. this.typeData = [];
  671. } else {
  672. for (var i = 0; i < this.workData.length; i++) {
  673. id.push(this.workData[i].id);
  674. this.selectArr.push(this.workData[i].id);
  675. }
  676. this.userId.ids = id;
  677. }
  678. },
  679. //全不选
  680. Dall() {
  681. this.selectArr = [];
  682. this.typeData = [];
  683. this.userId.ids = [];
  684. },
  685. texiao() {
  686. setTimeout(() => {
  687. this.animation.height(0).opacity(0).step();
  688. this.animationData = this.animation.export();
  689. }, 15000);
  690. },
  691. // 知道了
  692. know() {
  693. this.models.disjunctor = false;
  694. },
  695. },
  696. onLoad(options) {
  697. this.infoDATA = JSON.parse(options.infoDATA); //扫描科室码返回的信息
  698. this.code = options.code; //扫描科室码返回的二维码信息
  699. let arr = [];
  700. for (var key in this.infoDATA) {
  701. arr.push(key);
  702. }
  703. this.workData = this.infoDATA[arr[0]];
  704. this.tabType = arr[0];
  705. // #ifdef APP-PLUS
  706. webHandle("no", "app");
  707. // #endif
  708. // #ifdef H5
  709. webHandle("no", "wx");
  710. // #endif
  711. },
  712. onShow() {
  713. this.SMFlag = true;
  714. this.flag = true;
  715. // 创建动画
  716. this.animation = uni.createAnimation({
  717. duration: 500,
  718. timingFunction: "ease",
  719. delay: 2000,
  720. });
  721. setTimeout(() => {
  722. this.texiao();
  723. }, 500);
  724. },
  725. onHide() {
  726. this.animationData = {};
  727. },
  728. onUnload() {
  729. // 页面关闭后清空数据
  730. this.animationData = {};
  731. },
  732. };
  733. </script>
  734. <style lang="less">
  735. ::-webkit-scrollbar {
  736. width: 0;
  737. }
  738. ::-webkit-scrollbar-track {
  739. background-color: none;
  740. }
  741. ::-webkit-scrollbar-thumb {
  742. background-color: none;
  743. }
  744. ::-webkit-scrollbar-thumb:hover {
  745. background-color: none;
  746. }
  747. ::-webkit-scrollbar-thumb:active {
  748. background-color: none;
  749. }
  750. .Scanning_all {
  751. .title {
  752. font-size: 36rpx;
  753. margin-top: 20rpx;
  754. margin-bottom: 20rpx;
  755. font-weight: 700;
  756. position: relative;
  757. height: 40rpx;
  758. .span1 {
  759. position: absolute;
  760. left: 0;
  761. font-weight: 700;
  762. }
  763. .span2 {
  764. position: absolute;
  765. right: 20%;
  766. color: rgb(73, 184, 86);
  767. }
  768. .span3 {
  769. position: absolute;
  770. right: 0;
  771. color: rgb(73, 184, 86);
  772. }
  773. }
  774. .tabs {
  775. height: 90rpx;
  776. width: 100%;
  777. overflow-x: auto;
  778. overflow-y: hidden;
  779. position: relative;
  780. background: #fff;
  781. .acts {
  782. background: #ccc;
  783. height: 50rpx !important;
  784. width: 80% !important;
  785. border-radius: 20rpx;
  786. }
  787. .tab {
  788. display: flex;
  789. align-items: center;
  790. flex-wrap: nowrap;
  791. height: 90rpx;
  792. position: absolute;
  793. width: auto;
  794. padding-top: 6rpx;
  795. view {
  796. display: inline-block;
  797. width: 260rpx;
  798. line-height: 48rpx;
  799. font-size: 32rpx;
  800. height: 100%;
  801. text-align: center;
  802. }
  803. }
  804. }
  805. .Scanning {
  806. padding: 0 20rpx;
  807. height: calc(100% - 100rpx);
  808. // seimin
  809. .Scanning_top {
  810. height: 400rpx;
  811. opacity: 1;
  812. .Scanning_top_icon {
  813. width: 140rpx;
  814. height: 140rpx;
  815. margin: 0 auto;
  816. margin-top: 36rpx;
  817. border-radius: 50%;
  818. line-height: 140rpx;
  819. .cubeic-ok {
  820. font-size: 140rpx;
  821. color: #35b34a;
  822. }
  823. }
  824. .Scanning_top_text {
  825. .text1 {
  826. margin-top: 40rpx;
  827. font-size: 48rpx;
  828. text-align: center;
  829. }
  830. }
  831. .Scanning_cont {
  832. font-size: 32rpx;
  833. margin-top: 30rpx;
  834. text-align: center;
  835. .text1 {
  836. margin-top: 24rpx;
  837. color: #ff3b53;
  838. }
  839. }
  840. }
  841. .page_items {
  842. margin-bottom: 110rpx;
  843. .zwsj {
  844. margin-top: 180rpx;
  845. text-align: center;
  846. .zwsj-img {
  847. width: 560rpx;
  848. }
  849. .zwsj_txt {
  850. font-size: 36rpx;
  851. font-weight: 700;
  852. margin-top: 20rpx;
  853. text-align: center;
  854. }
  855. }
  856. .page_item {
  857. margin-top: 16rpx;
  858. min-height: 356rpx;
  859. background: #fff;
  860. border-radius: 8rpx;
  861. overflow: hidden;
  862. padding: 0 16rpx;
  863. border: 2rpx solid #e5e9ed;
  864. .L {
  865. width: 40rpx;
  866. height: 40rpx;
  867. border-radius: 50%;
  868. background: #f9fafb;
  869. position: relative;
  870. left: -50rpx;
  871. top: 66rpx;
  872. }
  873. .R {
  874. width: 40rpx;
  875. height: 40rpx;
  876. border-radius: 50%;
  877. background: #f9fafb;
  878. position: relative;
  879. float: right;
  880. right: -50rpx;
  881. top: 26rpx;
  882. }
  883. .starting {
  884. width: 50rpx;
  885. height: 50rpx;
  886. color: #fff;
  887. background: #49b856;
  888. display: inline-block;
  889. border-radius: 50%;
  890. text-align: center;
  891. line-height: 46rpx;
  892. font-size: 32rpx;
  893. margin-right: 6rpx;
  894. }
  895. .End {
  896. width: 50rpx;
  897. height: 50rpx;
  898. color: #fff;
  899. background: #39b199;
  900. display: inline-block;
  901. border-radius: 50%;
  902. text-align: center;
  903. line-height: 46rpx;
  904. font-size: 32rpx;
  905. margin-right: 6rpx;
  906. }
  907. .page_item_top {
  908. height: 86rpx;
  909. border-bottom: 2rpx dashed #e5e9ed;
  910. padding: 0 16rpx;
  911. .page_item_top_L {
  912. height: 100%;
  913. float: left;
  914. line-height: 88rpx;
  915. display: flex;
  916. align-items: center;
  917. .ac {
  918. width: 32rpx;
  919. height: 32rpx;
  920. border: 2rpx solid #ccc;
  921. display: inline-block;
  922. position: relative;
  923. .ac-span {
  924. position: absolute;
  925. left: 50%;
  926. top: 50%;
  927. width: 24rpx;
  928. height: 24rpx;
  929. background: #39b199;
  930. transform: translate(-50%, -50%);
  931. }
  932. }
  933. .ac1 {
  934. width: 32rpx;
  935. height: 32rpx;
  936. border: 2rpx solid #ccc;
  937. display: inline-block;
  938. position: relative;
  939. }
  940. .emergencys {
  941. background: #ff3b53 !important;
  942. width: 124rpx !important;
  943. }
  944. .emergency {
  945. background: #ff3b53 !important;
  946. }
  947. .emergency1 {
  948. background: #49b856 !important;
  949. }
  950. .page_item_cont_start {
  951. text-align: center;
  952. height: 44rpx;
  953. width: 104rpx;
  954. line-height: 44rpx;
  955. border-radius: 8rpx;
  956. background: #49b856;
  957. color: #fff;
  958. display: inline-block;
  959. .page_item_cont_start_txt {
  960. font-size: 28rpx;
  961. display: flex;
  962. align-items: center;
  963. justify-content: center;
  964. .cubeic-star {
  965. font-size: 28rpx;
  966. }
  967. }
  968. }
  969. .L_time {
  970. color: #6cc076;
  971. font-size: 32rpx;
  972. }
  973. .L_text {
  974. font-size: 32rpx;
  975. display: inline-block;
  976. font-weight: 700;
  977. margin-right: 8rpx;
  978. }
  979. }
  980. .page_item_top_R {
  981. height: 60rpx;
  982. float: right;
  983. padding-top: 20rpx;
  984. font-size: 32rpx;
  985. position: absolute;
  986. right: 50rpx;
  987. .L_iocn {
  988. display: inline-block;
  989. height: 52rpx;
  990. line-height: 48rpx;
  991. color: rgb(7, 134, 60);
  992. font-size: 36rpx;
  993. font-weight: 700;
  994. }
  995. }
  996. }
  997. .page_item_cont {
  998. min-height: 180rpx;
  999. padding: 0 16rpx;
  1000. text-align: left;
  1001. position: relative;
  1002. .text_big {
  1003. font-size: 32rpx;
  1004. position: absolute;
  1005. right: 16rpx;
  1006. font-weight: 700;
  1007. margin-top: 10rpx;
  1008. }
  1009. .text_big2 {
  1010. font-size: 32rpx;
  1011. position: absolute;
  1012. right: 16rpx;
  1013. font-weight: 700;
  1014. }
  1015. .line {
  1016. height: 20rpx;
  1017. width: 2rpx;
  1018. border-left: 2rpx solid #e5e9ed;
  1019. position: absolute;
  1020. top: 82rpx;
  1021. left: 40rpx;
  1022. }
  1023. .lines {
  1024. height: 40%;
  1025. width: 2rpx;
  1026. border-left: 2rpx solid #e5e9ed;
  1027. position: absolute;
  1028. top: 23%;
  1029. left: 36rpx;
  1030. }
  1031. .page_item_cont_T {
  1032. padding-top: 28rpx;
  1033. font-size: 28rpx;
  1034. .page_item_cont_title {
  1035. height: 100%;
  1036. font-size: 32rpx;
  1037. }
  1038. }
  1039. .page_item_cont_B {
  1040. padding-top: 28rpx;
  1041. margin-bottom: 28rpx;
  1042. .page_item_cont_title {
  1043. height: 60rpx;
  1044. font-size: 32rpx;
  1045. }
  1046. .page_item_cont_title1 {
  1047. height: 60rpx;
  1048. line-height: 60rpx;
  1049. font-size: 32rpx;
  1050. padding-left: 64rpx;
  1051. }
  1052. }
  1053. }
  1054. .page_item_foot {
  1055. border-top: 2rpx dashed #e5e9ed;
  1056. border-bottom: 2rpx dashed #e5e9ed;
  1057. padding: 28rpx 16rpx;
  1058. text-align: left;
  1059. .page_item_foot_text {
  1060. height: 48rpx;
  1061. font-size: 32rpx;
  1062. line-height: 48rpx;
  1063. margin-bottom: 20rpx;
  1064. .text1 {
  1065. color: rgb(102, 102, 102);
  1066. }
  1067. .text2 {
  1068. float: right;
  1069. font-weight: 700;
  1070. }
  1071. }
  1072. }
  1073. #infos {
  1074. display: none;
  1075. }
  1076. .page_item_infos {
  1077. padding-bottom: 20rpx;
  1078. border-bottom: 2rpx dashed #e5e9ed;
  1079. .page_item_info2 {
  1080. text-align: left;
  1081. line-height: 60rpx;
  1082. font-size: 32rpx;
  1083. padding-left: 16rpx;
  1084. .page_item_foot_text {
  1085. height: 48rpx;
  1086. font-size: 32rpx;
  1087. line-height: 48rpx;
  1088. margin-bottom: 20rpx;
  1089. .text1 {
  1090. color: rgb(102, 102, 102);
  1091. }
  1092. .text2 {
  1093. float: right;
  1094. font-weight: 700;
  1095. }
  1096. }
  1097. }
  1098. }
  1099. }
  1100. }
  1101. .foot_btn2 {
  1102. position: fixed;
  1103. bottom: 0;
  1104. right: 20rpx;
  1105. left: 20rpx;
  1106. line-height: 66rpx;
  1107. height: 100rpx;
  1108. border-top: 2rpx solid #e5e9ed;
  1109. background: #f9fafb;
  1110. .btn1,
  1111. .btn2 {
  1112. height: 66rpx;
  1113. width: 45%;
  1114. background-image: linear-gradient(to right, #72c172, #3bb197);
  1115. color: #fff;
  1116. border-radius: 8rpx;
  1117. font-size: 32rpx;
  1118. margin-top: 16rpx;
  1119. text-align: center;
  1120. }
  1121. .btn1 {
  1122. float: left;
  1123. }
  1124. .btn2 {
  1125. float: right;
  1126. }
  1127. }
  1128. .foot_btn1 {
  1129. position: fixed;
  1130. bottom: 0;
  1131. right: 20rpx;
  1132. left: 20rpx;
  1133. line-height: 66rpx;
  1134. height: 100rpx;
  1135. border-top: 2rpx solid #e5e9ed;
  1136. background: #f9fafb;
  1137. text-align: center;
  1138. .btn3 {
  1139. height: 66rpx;
  1140. width: 100%;
  1141. background-image: linear-gradient(to right, #72c172, #3bb197);
  1142. color: #fff;
  1143. border-radius: 8rpx;
  1144. font-size: 32rpx;
  1145. margin-top: 16rpx;
  1146. }
  1147. }
  1148. }
  1149. }
  1150. </style>