specimenCheckingDetail.vue 30 KB

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