specimenCheckingDetail.vue 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954
  1. <template>
  2. <view class="specimenCheckingDetail">
  3. <view class="page_header" v-if="modifyReason || imgs.length">
  4. <view class="page_header_item" v-if="modifyReason">
  5. <view class="page_header_title"> 修改原因: </view>
  6. <view class="page_header_content">
  7. {{ modifyReason }}
  8. </view>
  9. </view>
  10. <view class="page_header_item" v-if="imgs.length">
  11. <view class="page_header_title"> 图片列表: </view>
  12. <view class="page_header_content">
  13. <image v-for="(item, i) in imgs" :key="i" :src="item" @click="previewImage(i)" mode="widthFix"
  14. @error="close(i)"></image>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="page_item_wrap" v-for="item in list" :key="item.id">
  19. <view class="page_item">
  20. <view class="page_item_top">
  21. <view class="page_item_top-inner">
  22. <view class="page_item_top_L">
  23. <view class="L_text">{{ item.patientName }}</view>
  24. </view>
  25. <view class="page_item_top_R">
  26. <view class="L_iocn"><button type="primary" size="mini" class="back" @click="back(item, msg.uuid)"
  27. v-if="options.t">
  28. 退回
  29. </button></view>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="page_item_cont">
  34. <view class="page_item_cont_T">
  35. <view class="page_item_cont_title">
  36. <view> 检验项目 </view>
  37. <view class="text_big">{{ item.specimenDesc || "无" }}</view>
  38. </view>
  39. <view class="page_item_cont_title">
  40. <view> 标本编码 </view>
  41. <view class="text_big">{{ item.scode || "无" }}</view>
  42. </view>
  43. <view class="page_item_cont_title">
  44. <view> 标本类型 </view>
  45. <view class="text_big">{{
  46. item.stype ? item.stype.name : "无"
  47. }}</view>
  48. </view>
  49. <view class="page_item_cont_title">
  50. <view> 申请科室 </view>
  51. <view class="text_big">{{
  52. item.sickRoom ? item.sickRoom.dept : "无"
  53. }}</view>
  54. </view>
  55. <view class="page_item_cont_title">
  56. <view> 住院号 </view>
  57. <view class="text_big">{{ item.residenceNo || "无" }}</view>
  58. </view>
  59. </view>
  60. </view>
  61. <view class="L"></view>
  62. <view class="R"></view>
  63. </view>
  64. <view class="L-l"></view>
  65. <view class="R-l"></view>
  66. </view>
  67. <view class="foot_btn2">
  68. <view class="btn2" @click="showChangeSpe()">修改数量</view>
  69. <view class="btn2" @click="goto()">返回</view>
  70. </view>
  71. <!-- 修改标本数量弹窗 -->
  72. <changeSpeNum v-if="changeSpeModels.disjunctor" :title="changeSpeModels.title"
  73. :disjunctor="changeSpeModels.disjunctor" @ok="speOk" @cancel="speCancel" :num="speNum">
  74. </changeSpeNum>
  75. <!-- 退回弹窗 -->
  76. <backModel v-if="backModels.disjunctor" :title="backModels.title" :disjunctor="backModels.disjunctor" @ok="backOk"
  77. @cancel="backCancel"></backModel>
  78. <!-- 填写交接人账号弹窗 -->
  79. <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  80. @cancel="hosCancel">
  81. </selectAccount>
  82. <!-- 弹窗 -->
  83. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  84. :operate="models.operate" @know="know"></showModel>
  85. </view>
  86. </template>
  87. <script>
  88. import {
  89. get,
  90. post,
  91. webHandle
  92. } from "../../http/http.js";
  93. export default {
  94. data() {
  95. return {
  96. res: {},
  97. backStatus: "",
  98. workOrderId: 0,
  99. backSpecimen: {},
  100. backParams: {},
  101. imgs: [],
  102. // --------------------
  103. speNum: 0,
  104. modifyReason: "",
  105. options: {},
  106. selectDeptId: null,
  107. msg: {}, //传递的信息
  108. list: [],
  109. targetDeptShow: [], //目标科室
  110. // 修改标本数量弹窗model
  111. changeSpeModels: {
  112. disjunctor: false,
  113. },
  114. // 退回弹窗model
  115. backModels: {
  116. disjunctor: false,
  117. },
  118. // 填写交接人账号弹窗model
  119. hosModels: {
  120. disjunctor: false,
  121. },
  122. // 弹窗model
  123. models: {
  124. disjunctor: false,
  125. },
  126. };
  127. },
  128. methods: {
  129. close(i) {
  130. this.imgs.splice(i, 1);
  131. },
  132. know() {
  133. this.models.disjunctor = false;
  134. this.backModels.disjunctor = false;
  135. if (this.models.icon === "success") {
  136. this.getList();
  137. }
  138. },
  139. // 退回
  140. back(specimen, workOrderId) {
  141. this.backSpecimen = specimen;
  142. this.backStatus = "back";
  143. this.workOrderId = workOrderId;
  144. this.showBack();
  145. },
  146. // 退回
  147. backHandler(specimen, workorderId, data) {
  148. console.log(specimen);
  149. const {
  150. reasonForReturn,
  151. remarks
  152. } = this.backParams;
  153. uni.showLoading({
  154. title: "加载中",
  155. mask: true,
  156. });
  157. let postData = {
  158. deptId: this.selectDeptId == "undefined" ?
  159. this.msg.startDept : this.selectDeptId,
  160. reasonForReturn: reasonForReturn.id,
  161. remarks,
  162. scode: specimen.scode,
  163. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  164. speState: specimen.speState ? specimen.speState.id : undefined,
  165. handoverId: data ? data.accountId : undefined,
  166. handoverName: data ? data.accountName : undefined,
  167. gdId: workorderId || undefined,
  168. };
  169. post("/workerOrder/returnSpecimen", postData).then((res) => {
  170. uni.hideLoading();
  171. if (res.state == 200) {
  172. this.models = {
  173. disjunctor: true,
  174. title: "提示",
  175. content: `标本退回成功`,
  176. icon: "success",
  177. };
  178. } else {
  179. this.models = {
  180. disjunctor: true,
  181. title: "提示",
  182. content: `标本退回失败`,
  183. icon: "error",
  184. };
  185. }
  186. });
  187. },
  188. // 填写交接人账号-确认
  189. hosOk(data) {
  190. console.log(data);
  191. const {
  192. accountName,
  193. account,
  194. accountId
  195. } = data;
  196. if (!accountName && !account) {
  197. //没有填写交接人
  198. uni.showModal({
  199. title: "提示",
  200. content: "请填写交接人账号!",
  201. showCancel: false,
  202. success: function(res) {
  203. if (res.confirm) {
  204. console.log("用户点击确定");
  205. } else if (res.cancel) {
  206. console.log("用户点击取消");
  207. }
  208. },
  209. });
  210. return;
  211. } else if ((!accountName && account) || (accountName && !account)) {
  212. //没有填写交接人
  213. uni.showModal({
  214. title: "提示",
  215. content: "请填写正确的交接人账号!",
  216. showCancel: false,
  217. success: function(res) {
  218. if (res.confirm) {
  219. console.log("用户点击确定");
  220. } else if (res.cancel) {
  221. console.log("用户点击取消");
  222. }
  223. },
  224. });
  225. return;
  226. }
  227. this.hosModels.disjunctor = false;
  228. uni.showLoading({
  229. title: "加载中",
  230. mask: true,
  231. });
  232. console.log(this.backStatus, "this.backStatus");
  233. if ((this.backStatus = "back")) {
  234. // 退回
  235. this.backHandler(this.backSpecimen, this.msg.uuid, data);
  236. }
  237. },
  238. // 填写交接人账号-取消
  239. hosCancel() {
  240. this.hosModels.disjunctor = false;
  241. },
  242. // 填写交接人账号弹窗
  243. showSelectAccount() {
  244. this.hosModels = {
  245. title: "填写交接人账号",
  246. disjunctor: true,
  247. };
  248. },
  249. // 退回-确认
  250. backOk(data) {
  251. console.log(data);
  252. this.backParams = data;
  253. this.hosModels.disjunctor = false;
  254. let postData = {
  255. idx: 0,
  256. sum: 1,
  257. hospitalConfig: {
  258. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  259. key: "returnSpecimenWhetherHandover",
  260. },
  261. };
  262. uni.showLoading({
  263. title: "加载中",
  264. mask: true,
  265. });
  266. post("/simple/data/fetchDataList/hospitalConfig", postData).then(
  267. (result) => {
  268. uni.hideLoading();
  269. if (result.status == 200) {
  270. if (result.list[0].value == 1 && this.backParams.reasonForReturn.extra1 == 1) {
  271. this.backCancel();
  272. this.showSelectAccount();
  273. } else {
  274. this.backHandler(this.backSpecimen, this.workOrderId);
  275. }
  276. } else {
  277. uni.showToast({
  278. icon: "none",
  279. title: "请求失败!",
  280. });
  281. }
  282. }
  283. );
  284. },
  285. // 退回-取消
  286. backCancel() {
  287. this.backModels.disjunctor = false;
  288. },
  289. // 退回弹窗
  290. showBack() {
  291. this.backModels = {
  292. title: "退回",
  293. disjunctor: true,
  294. };
  295. },
  296. previewImage(index) {
  297. //uniapp预览轮播图
  298. uni.previewImage({
  299. current: index, //预览图片的下标
  300. urls: this.imgs, //预览图片的地址,必须要数组形式,如果不是数组形式就转换成数组形式就可以
  301. });
  302. },
  303. // ---------------------------
  304. getInfo() {
  305. uni.showLoading({
  306. mask: true,
  307. title: "加载中",
  308. });
  309. let postData = {
  310. deptId: this.selectDeptId == "undefined" ?
  311. this.msg.startDept : this.selectDeptId,
  312. gdId: this.msg.uuid,
  313. };
  314. post(`/api/getStartDeptSpecimensNum`, postData).then((res) => {
  315. uni.hideLoading();
  316. if (res.status == 200) {
  317. this.speNum = res.deptSpecimensNum;
  318. this.modifyReason = res.modifyReason;
  319. get(
  320. `/common/common/listAttachment/specimenPhotos/${res.bindId}`
  321. ).then((result) => {
  322. if (result.status == 200) {
  323. this.imgs = result.data.map((v) => v.previewUrl);
  324. } else {
  325. this.imgs = [];
  326. }
  327. });
  328. } else {
  329. this.speNum = "";
  330. this.modifyReason = "";
  331. }
  332. });
  333. },
  334. getList() {
  335. uni.showLoading({
  336. mask: true,
  337. title: "加载中",
  338. });
  339. let postData = {
  340. checkDept: this.options.endDepts, //终点科室
  341. transDept: Number(this.msg.startDept), //起点科室id
  342. gdId: this.msg.uuid, //工单id或uuid
  343. };
  344. if (this.selectDeptId != "undefined") {
  345. if (Number(this.msg.startDept) != Number(this.selectDeptId)) {
  346. postData.checkDept = Number(this.selectDeptId); //签到的科室或者选择的科室
  347. if (this.options.t) {
  348. postData.sign = true; //待送达
  349. }
  350. }
  351. }
  352. post(`/api/getTransDeptSpecimens`, postData).then((res) => {
  353. uni.hideLoading();
  354. uni.stopPullDownRefresh();
  355. if (res.status == 200) {
  356. this.list = res.data;
  357. this.getInfo();
  358. } else {
  359. uni.showToast({
  360. icon: "none",
  361. title: "请求失败!",
  362. });
  363. }
  364. });
  365. },
  366. // 返回
  367. goto() {
  368. if (this.options.t == "big") {
  369. uni.navigateBack();
  370. } else if (this.options.t == "small") {
  371. uni.navigateBack();
  372. } else {
  373. uni.navigateTo({
  374. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  375. JSON.stringify(this.msg)
  376. )}`,
  377. });
  378. }
  379. },
  380. // 修改标本数量-确认
  381. speOk(data) {
  382. console.log(data);
  383. const pathUrl = uni.getStorageSync("path");
  384. const {
  385. speNum,
  386. reason,
  387. imageValue
  388. } = data;
  389. this.changeSpeModels.disjunctor = false;
  390. uni.showLoading({
  391. mask: true,
  392. title: "加载中",
  393. });
  394. let postData = {
  395. checkDept: this.options.endDepts, //终点科室
  396. transDeptId: this.msg.startDept,
  397. gdId: this.msg.uuid,
  398. deptId: this.selectDeptId == "undefined" ?
  399. this.msg.startDept : this.selectDeptId,
  400. specimensNum: speNum,
  401. modifyReason: reason,
  402. };
  403. post("/api/updateCheckDeptSpecimensNum", postData).then((res) => {
  404. if (res.status == 200) {
  405. console.log(imageValue);
  406. if (!imageValue.length) {
  407. uni.hideLoading();
  408. uni.showModal({
  409. title: "提示",
  410. content: "修改成功!",
  411. showCancel: false,
  412. success: (result) => {
  413. if (result.confirm) {
  414. console.log("用户点击确定");
  415. if (this.options.t == "big") {
  416. if (this.options.gdState == 4) {
  417. // 待到达
  418. uni.navigateTo({
  419. url: `../../pages/receiptpage/receiptpage`,
  420. });
  421. } else if (this.options.gdState == 5) {
  422. // 待送达
  423. if (res.type1 === "plan-spe-ddd-2") {} else {
  424. let content = `本工单已签到<strong class="red">${
  425. res.scanSet ? res.scanSet.join("、") : ""
  426. }</strong>,剩余需签到科室<strong class="red">${
  427. res.notScanSet ? res.notScanSet.join("、") : ""
  428. }</strong>,您确定完成工单吗?`;
  429. uni.navigateTo({
  430. url: `../scanning/scanning?type=${res.type}&type1=${
  431. res.type1
  432. }&id=${encodeURIComponent(
  433. JSON.stringify([res.gdid])
  434. )}&content=${content}`,
  435. });
  436. }
  437. }
  438. } else if (this.options.t == "small") {
  439. if (this.selectDeptId == "undefined") {
  440. //快捷建单建单进入
  441. uni.navigateTo({
  442. url: `../../pages/receiptpage/receiptpage`,
  443. });
  444. } else {
  445. if (this.options.gdState == 4) {
  446. // 待到达
  447. uni.navigateTo({
  448. url: `../../pages/receiptpage/receiptpage`,
  449. });
  450. } else if (this.options.gdState == 5) {
  451. // 待送达
  452. if (res.type1 === "plan-spe-ddd-2") {} else {
  453. let content = `本工单已签到<strong class="red">${
  454. res.scanSet ? res.scanSet.join("、") : ""
  455. }</strong>,剩余需签到科室<strong class="red">${
  456. res.notScanSet ? res.notScanSet.join("、") : ""
  457. }</strong>,您确定完成工单吗?`;
  458. uni.navigateTo({
  459. url: `../scanning/scanning?type=${res.type}&type1=${
  460. res.type1
  461. }&id=${encodeURIComponent(
  462. JSON.stringify([res.gdid])
  463. )}&content=${content}`,
  464. });
  465. }
  466. }
  467. }
  468. } else {
  469. uni.navigateTo({
  470. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  471. JSON.stringify(this.msg)
  472. )}`,
  473. });
  474. }
  475. } else if (result.cancel) {
  476. console.log("用户点击取消");
  477. }
  478. },
  479. });
  480. return;
  481. }
  482. let n = 0;
  483. imageValue.forEach((v) => {
  484. // 图片上传 start
  485. console.log("压缩前");
  486. let canvasWidth = v.image.width; //图片原始长宽
  487. let canvasHeight = v.image.height;
  488. let img = new Image();
  489. img.src = v.path;
  490. let canvas = document.createElement("canvas");
  491. let ctx = canvas.getContext("2d");
  492. canvas.width = canvasWidth;
  493. canvas.height = canvasHeight;
  494. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight);
  495. canvas.toBlob(
  496. (fileSrc) => {
  497. let tp = window.URL.createObjectURL(fileSrc);
  498. console.log("压缩后");
  499. n++;
  500. uni.uploadFile({
  501. url: pathUrl +
  502. "/common/common/uploadAttachment/specimenPhotos/" +
  503. res.deptSpecimensNumId +
  504. "/666",
  505. filePath: tp,
  506. name: "file",
  507. formData: {
  508. filename: v.cloudPath,
  509. },
  510. success: (uploadFileRes) => {
  511. console.log(uploadFileRes);
  512. if (--n === 0) {
  513. uni.hideLoading();
  514. uni.showModal({
  515. title: "提示",
  516. content: "修改成功!",
  517. showCancel: false,
  518. success: (result) => {
  519. if (result.confirm) {
  520. console.log("用户点击确定", this.options.t);
  521. if (this.options.t == "big") {
  522. if (this.options.gdState == 4) {
  523. // 待到达
  524. uni.navigateTo({
  525. url: `../../pages/receiptpage/receiptpage`,
  526. });
  527. } else if (this.options.gdState == 5) {
  528. // 待送达
  529. if (res.type1 === "plan-spe-ddd-2") {} else {
  530. let content = `本工单已签到<strong class="red">${
  531. res.scanSet ? res.scanSet.join("、") : ""
  532. }</strong>,剩余需签到科室<strong class="red">${
  533. res.notScanSet ? res.notScanSet.join("、") : ""
  534. }</strong>,您确定完成工单吗?`;
  535. uni.navigateTo({
  536. url: `../scanning/scanning?type=${res.type}&type1=${
  537. res.type1
  538. }&id=${encodeURIComponent(
  539. JSON.stringify([res.gdid])
  540. )}&content=${content}`,
  541. });
  542. }
  543. }
  544. } else if (this.options.t == "small") {
  545. if (this.selectDeptId == "undefined") {
  546. //快捷建单建单进入
  547. uni.navigateTo({
  548. url: `../../pages/receiptpage/receiptpage`,
  549. });
  550. } else {
  551. if (this.options.gdState == 4) {
  552. // 待到达
  553. uni.navigateTo({
  554. url: `../../pages/receiptpage/receiptpage`,
  555. });
  556. } else if (this.options.gdState == 5) {
  557. // 待送达
  558. if (res.type1 === "plan-spe-ddd-2") {} else {
  559. let content = `本工单已签到<strong class="red">${
  560. res.scanSet ? res.scanSet.join("、") : ""
  561. }</strong>,剩余需签到科室<strong class="red">${
  562. res.notScanSet ? res.notScanSet.join("、") : ""
  563. }</strong>,您确定完成工单吗?`;
  564. uni.navigateTo({
  565. url: `../scanning/scanning?type=${res.type}&type1=${
  566. res.type1
  567. }&id=${encodeURIComponent(
  568. JSON.stringify([res.gdid])
  569. )}&content=${content}`,
  570. });
  571. }
  572. }
  573. }
  574. } else {
  575. uni.navigateTo({
  576. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  577. JSON.stringify(this.msg)
  578. )}`,
  579. });
  580. }
  581. } else if (result.cancel) {
  582. console.log("用户点击取消");
  583. }
  584. },
  585. });
  586. }
  587. },
  588. fail: (err) => {
  589. n--;
  590. console.error(err);
  591. uni.hideLoading();
  592. uni.showToast({
  593. icon: "none",
  594. title: "上传失败",
  595. duration: 2000,
  596. });
  597. },
  598. });
  599. },
  600. "image/jpeg",
  601. 0.3
  602. );
  603. // 图片上传 end
  604. });
  605. } else {
  606. uni.hideLoading();
  607. uni.showToast({
  608. icon: "none",
  609. title: "请求失败!",
  610. });
  611. }
  612. });
  613. },
  614. // 修改标本数量-取消
  615. speCancel() {
  616. this.changeSpeModels.disjunctor = false;
  617. },
  618. // 修改标本数量弹窗
  619. showChangeSpe() {
  620. this.changeSpeModels = {
  621. title: "修改标本数量",
  622. disjunctor: true,
  623. };
  624. },
  625. },
  626. onLoad(options) {
  627. console.log(options, "快捷建单");
  628. this.options = options;
  629. this.msg = JSON.parse(options.infoDATA);
  630. this.selectDeptId = options.id;
  631. // this.msg = JSON.parse(options.infoDATA);
  632. // this.targetDeptShow = this.msg.targetDeptShow.split(",");
  633. this.getList();
  634. // #ifdef APP-PLUS
  635. webHandle("no", "app");
  636. // #endif
  637. // #ifdef H5
  638. webHandle("no", "wx");
  639. // #endif
  640. },
  641. onPullDownRefresh() {
  642. this.getList();
  643. },
  644. };
  645. </script>
  646. <style lang="less" scoped>
  647. .specimenCheckingDetail {
  648. padding-bottom: 100rpx;
  649. .page_header {
  650. margin: 20rpx;
  651. padding: 16rpx;
  652. border: 2rpx solid #e5e9ed;
  653. background: #fff;
  654. border-radius: 8rpx;
  655. .page_header_item {
  656. margin-bottom: 16rpx;
  657. .page_header_title {
  658. margin-bottom: 8rpx;
  659. font-weight: bold;
  660. }
  661. .page_header_content {
  662. display: flex;
  663. image {
  664. height: 100rpx;
  665. width: 30%;
  666. margin: 0 8rpx;
  667. }
  668. }
  669. }
  670. }
  671. .page_item_wrap {
  672. width: 100%;
  673. height: auto;
  674. box-sizing: border-box;
  675. position: relative;
  676. margin-bottom: 16rpx;
  677. .page_item {
  678. margin-top: 16rpx;
  679. margin-bottom: 124rpx;
  680. background: #fff;
  681. border-radius: 8rpx;
  682. margin: 0 20rpx;
  683. border: 2rpx solid #e5e9ed;
  684. position: relative;
  685. overflow: hidden;
  686. padding: 0 16rpx;
  687. .L {
  688. width: 40rpx;
  689. height: 40rpx;
  690. border-radius: 50%;
  691. background: #f9fafb;
  692. position: absolute;
  693. left: -20rpx;
  694. top: 68rpx;
  695. border: 2rpx solid #e5e9ed;
  696. }
  697. .R {
  698. width: 40rpx;
  699. height: 40rpx;
  700. border-radius: 50%;
  701. background: #f9fafb;
  702. position: absolute;
  703. float: right;
  704. right: -20rpx;
  705. top: 68rpx;
  706. border: 2rpx solid #e5e9ed;
  707. }
  708. .starting {
  709. width: 50rpx;
  710. height: 50rpx;
  711. color: #fff;
  712. background: #49b856;
  713. display: inline-block;
  714. border-radius: 50%;
  715. text-align: center;
  716. line-height: 46rpx;
  717. font-size: 32rpx;
  718. margin-right: 6rpx;
  719. }
  720. .End {
  721. width: 50rpx;
  722. height: 50rpx;
  723. color: #fff;
  724. background: #39b199;
  725. display: inline-block;
  726. border-radius: 50%;
  727. text-align: center;
  728. line-height: 46rpx;
  729. font-size: 32rpx;
  730. margin-right: 6rpx;
  731. }
  732. .page_item_top {
  733. height: 88rpx;
  734. border-bottom: 2rpx dashed #e5e9ed;
  735. padding: 0 16rpx;
  736. .page_item_top-inner {
  737. display: flex;
  738. justify-content: space-between;
  739. align-items: center;
  740. height: 100%;
  741. .page_item_top_L {
  742. .emergencys {
  743. background: #ff3b53 !important;
  744. width: 124rpx !important;
  745. }
  746. .emergency {
  747. background: #ff3b53 !important;
  748. }
  749. .emergency1 {
  750. background: #49b856 !important;
  751. }
  752. .page_item_cont_start {
  753. text-align: center;
  754. height: 44rpx;
  755. width: 104rpx;
  756. line-height: 44rpx;
  757. border-radius: 8rpx;
  758. background: #49b856;
  759. color: #fff;
  760. display: inline-block;
  761. }
  762. .L_time {
  763. color: #6cc076;
  764. font-size: 32rpx;
  765. }
  766. .L_text {
  767. font-size: 32rpx;
  768. font-weight: 700;
  769. }
  770. }
  771. .page_item_top_R {
  772. font-size: 32rpx;
  773. .back {
  774. background-color: #49b856;
  775. }
  776. .L_iocn {
  777. color: rgb(7, 134, 60);
  778. font-size: 36rpx;
  779. font-weight: 700;
  780. }
  781. }
  782. }
  783. }
  784. .page_item_cont {
  785. min-height: 90rpx;
  786. padding: 0 16rpx;
  787. text-align: left;
  788. position: relative;
  789. .text_big {
  790. font-size: 32rpx;
  791. font-weight: 700;
  792. margin-top: 10rpx;
  793. p {
  794. font-weight: 700;
  795. line-height: 1.5;
  796. }
  797. }
  798. .page_item_cont_T {
  799. padding-top: 28rpx;
  800. padding-bottom: 28rpx;
  801. font-size: 28rpx;
  802. .page_item_cont_title {
  803. height: 100%;
  804. font-size: 32rpx;
  805. display: flex;
  806. justify-content: space-between;
  807. }
  808. }
  809. .page_item_cont_B {
  810. padding-top: 28rpx;
  811. margin-bottom: 28rpx;
  812. .page_item_cont_title {
  813. font-size: 32rpx;
  814. display: flex;
  815. justify-content: space-between;
  816. }
  817. .page_item_cont_title1 {
  818. height: 60rpx;
  819. line-height: 60rpx;
  820. font-size: 32rpx;
  821. padding-left: 64rpx;
  822. }
  823. }
  824. }
  825. .page_item_foot {
  826. border-top: 2rpx dashed #e5e9ed;
  827. border-bottom: 2rpx dashed #e5e9ed;
  828. padding: 28rpx 16rpx;
  829. text-align: left;
  830. .page_item_foot_text {
  831. font-size: 32rpx;
  832. margin-bottom: 20rpx;
  833. .text1 {
  834. color: rgb(102, 102, 102);
  835. }
  836. .text2 {
  837. float: right;
  838. font-weight: 700;
  839. }
  840. }
  841. }
  842. #infos {
  843. display: none;
  844. }
  845. .page_item_infos {
  846. padding-bottom: 20rpx;
  847. border-bottom: 2rpx dashed #e5e9ed;
  848. .page_item_info2 {
  849. text-align: left;
  850. line-height: 60rpx;
  851. font-size: 32rpx;
  852. padding-left: 16rpx;
  853. .page_item_foot_text {
  854. font-size: 32rpx;
  855. margin-bottom: 20rpx;
  856. .text1 {
  857. color: rgb(102, 102, 102);
  858. }
  859. .text2 {
  860. float: right;
  861. font-weight: 700;
  862. }
  863. }
  864. }
  865. }
  866. }
  867. .L-l {
  868. width: 2rpx;
  869. height: 40rpx;
  870. background: #f9fafb;
  871. position: absolute;
  872. left: 20rpx;
  873. top: 72rpx;
  874. }
  875. .R-l {
  876. width: 2rpx;
  877. height: 40rpx;
  878. background: #f9fafb;
  879. position: absolute;
  880. right: 20rpx;
  881. top: 72rpx;
  882. }
  883. }
  884. .foot_btn2 {
  885. position: fixed;
  886. bottom: 0;
  887. width: 100vw;
  888. padding: 0 20rpx;
  889. box-sizing: border-box;
  890. line-height: 66rpx;
  891. height: 100rpx;
  892. border-top: 2rpx solid #e5e9ed;
  893. background: #f9fafb;
  894. text-align: center;
  895. display: flex;
  896. justify-content: center;
  897. align-items: center;
  898. .btn2 {
  899. height: 66rpx;
  900. flex: 1;
  901. margin: 16rpx 16rpx 0;
  902. background-image: linear-gradient(to right, #72c172, #3bb197);
  903. color: #fff;
  904. border-radius: 8rpx;
  905. font-size: 32rpx;
  906. }
  907. }
  908. }
  909. </style>