specimenCheckingDetail.vue 30 KB

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