specimenCheckingDetail.vue 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946
  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.data[0].deptSpecimensNum;
  317. this.modifyReason = res.data[0].modifyReason;
  318. get(
  319. `/common/common/listAttachment/specimenPhotos/${res.data[0].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. if (this.options.t == "big") {
  408. if (this.options.gdState == 4) {
  409. // 待到达
  410. uni.navigateTo({
  411. url: `../../pages/receiptpage/receiptpage`,
  412. });
  413. } else if (this.options.gdState == 5) {
  414. // 待送达
  415. if (res.type1 === "plan-spe-ddd-2") {} else {
  416. let content = `本工单已签到<strong class="red">${
  417. res.scanSet ? res.scanSet.join("、") : ""
  418. }</strong>,剩余需签到科室<strong class="red">${
  419. res.notScanSet ? res.notScanSet.join("、") : ""
  420. }</strong>,您确定完成工单吗?`;
  421. uni.navigateTo({
  422. url: `../scanning/scanning?type=${res.type}&type1=${
  423. res.type1
  424. }&id=${encodeURIComponent(
  425. JSON.stringify([res.gdid])
  426. )}&content=${content}`,
  427. });
  428. }
  429. }
  430. } else if (this.options.t == "small") {
  431. if (this.selectDeptId == "undefined") {
  432. //快捷建单建单进入
  433. uni.navigateTo({
  434. url: `../../pages/receiptpage/receiptpage`,
  435. });
  436. } else {
  437. if (this.options.gdState == 4) {
  438. // 待到达
  439. uni.navigateTo({
  440. url: `../../pages/receiptpage/receiptpage`,
  441. });
  442. } else if (this.options.gdState == 5) {
  443. // 待送达
  444. if (res.type1 === "plan-spe-ddd-2") {} else {
  445. let content = `本工单已签到<strong class="red">${
  446. res.scanSet ? res.scanSet.join("、") : ""
  447. }</strong>,剩余需签到科室<strong class="red">${
  448. res.notScanSet ? res.notScanSet.join("、") : ""
  449. }</strong>,您确定完成工单吗?`;
  450. uni.navigateTo({
  451. url: `../scanning/scanning?type=${res.type}&type1=${
  452. res.type1
  453. }&id=${encodeURIComponent(
  454. JSON.stringify([res.gdid])
  455. )}&content=${content}`,
  456. });
  457. }
  458. }
  459. }
  460. } else {
  461. uni.navigateTo({
  462. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  463. JSON.stringify(this.msg)
  464. )}`,
  465. });
  466. }
  467. return;
  468. }
  469. let n = 0;
  470. imageValue.forEach((v) => {
  471. // 图片上传 start
  472. console.log("压缩前");
  473. let canvasWidth = v.image.width; //图片原始长宽
  474. let canvasHeight = v.image.height;
  475. let img = new Image();
  476. img.src = v.path;
  477. let canvas = document.createElement("canvas");
  478. let ctx = canvas.getContext("2d");
  479. canvas.width = canvasWidth;
  480. canvas.height = canvasHeight;
  481. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight);
  482. canvas.toBlob(
  483. (fileSrc) => {
  484. let tp = window.URL.createObjectURL(fileSrc);
  485. console.log("压缩后");
  486. n++;
  487. uni.uploadFile({
  488. url: pathUrl +
  489. "/common/common/uploadAttachment/specimenPhotos/" +
  490. res.deptSpecimensNumId +
  491. "/666",
  492. filePath: tp,
  493. name: "file",
  494. formData: {
  495. filename: v.cloudPath,
  496. },
  497. success: (uploadFileRes) => {
  498. console.log(uploadFileRes);
  499. if (--n === 0) {
  500. uni.hideLoading();
  501. uni.showModal({
  502. title: "提示",
  503. content: "修改成功!",
  504. showCancel: false,
  505. success: (result) => {
  506. if (result.confirm) {
  507. console.log("用户点击确定", this.options.t);
  508. if (this.options.t == "big") {
  509. if (this.options.gdState == 4) {
  510. // 待到达
  511. uni.navigateTo({
  512. url: `../../pages/receiptpage/receiptpage`,
  513. });
  514. } else if (this.options.gdState == 5) {
  515. // 待送达
  516. if (res.type1 === "plan-spe-ddd-2") {} else {
  517. let content = `本工单已签到<strong class="red">${
  518. res.scanSet ? res.scanSet.join("、") : ""
  519. }</strong>,剩余需签到科室<strong class="red">${
  520. res.notScanSet ? res.notScanSet.join("、") : ""
  521. }</strong>,您确定完成工单吗?`;
  522. uni.navigateTo({
  523. url: `../scanning/scanning?type=${res.type}&type1=${
  524. res.type1
  525. }&id=${encodeURIComponent(
  526. JSON.stringify([res.gdid])
  527. )}&content=${content}`,
  528. });
  529. }
  530. }
  531. } else if (this.options.t == "small") {
  532. if (this.selectDeptId == "undefined") {
  533. //快捷建单建单进入
  534. uni.navigateTo({
  535. url: `../../pages/receiptpage/receiptpage`,
  536. });
  537. } else {
  538. if (this.options.gdState == 4) {
  539. // 待到达
  540. uni.navigateTo({
  541. url: `../../pages/receiptpage/receiptpage`,
  542. });
  543. } else if (this.options.gdState == 5) {
  544. // 待送达
  545. if (res.type1 === "plan-spe-ddd-2") {} else {
  546. let content = `本工单已签到<strong class="red">${
  547. res.scanSet ? res.scanSet.join("、") : ""
  548. }</strong>,剩余需签到科室<strong class="red">${
  549. res.notScanSet ? res.notScanSet.join("、") : ""
  550. }</strong>,您确定完成工单吗?`;
  551. uni.navigateTo({
  552. url: `../scanning/scanning?type=${res.type}&type1=${
  553. res.type1
  554. }&id=${encodeURIComponent(
  555. JSON.stringify([res.gdid])
  556. )}&content=${content}`,
  557. });
  558. }
  559. }
  560. }
  561. } else {
  562. uni.navigateTo({
  563. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  564. JSON.stringify(this.msg)
  565. )}`,
  566. });
  567. }
  568. } else if (result.cancel) {
  569. console.log("用户点击取消");
  570. }
  571. },
  572. });
  573. }
  574. },
  575. fail: (err) => {
  576. n--;
  577. console.error(err);
  578. uni.hideLoading();
  579. uni.showToast({
  580. icon: "none",
  581. title: "上传失败",
  582. duration: 2000,
  583. });
  584. },
  585. });
  586. },
  587. "image/jpeg",
  588. 0.3
  589. );
  590. // 图片上传 end
  591. });
  592. } else {
  593. uni.hideLoading();
  594. uni.showToast({
  595. icon: "none",
  596. title: "请求失败!",
  597. });
  598. }
  599. });
  600. },
  601. // 修改标本数量-取消
  602. speCancel() {
  603. this.changeSpeModels.disjunctor = false;
  604. },
  605. // 修改标本数量弹窗
  606. showChangeSpe() {
  607. this.changeSpeModels = {
  608. title: "修改标本数量",
  609. disjunctor: true,
  610. };
  611. },
  612. },
  613. onLoad(options) {
  614. console.log(options, "快捷建单");
  615. this.options = options;
  616. this.msg = JSON.parse(options.infoDATA);
  617. this.selectDeptId = options.id;
  618. // this.msg = JSON.parse(options.infoDATA);
  619. // this.targetDeptShow = this.msg.targetDeptShow.split(",");
  620. this.getList();
  621. // #ifdef APP-PLUS
  622. webHandle("no", "app");
  623. // #endif
  624. // #ifdef H5
  625. webHandle("no", "wx");
  626. // #endif
  627. },
  628. onPullDownRefresh() {
  629. this.getList();
  630. },
  631. };
  632. </script>
  633. <style lang="less" scoped>
  634. .specimenCheckingDetail {
  635. padding-bottom: 100rpx;
  636. .page_header {
  637. margin: 20rpx;
  638. padding: 16rpx;
  639. border: 2rpx solid #e5e9ed;
  640. background: #fff;
  641. border-radius: 8rpx;
  642. .page_header_item {
  643. margin-bottom: 16rpx;
  644. .page_header_title {
  645. margin-bottom: 8rpx;
  646. font-weight: bold;
  647. }
  648. .page_header_content {
  649. display: flex;
  650. image {
  651. height: 100rpx;
  652. width: 30%;
  653. margin: 0 8rpx;
  654. }
  655. }
  656. }
  657. }
  658. .page_item_wrap {
  659. width: 100%;
  660. height: auto;
  661. box-sizing: border-box;
  662. position: relative;
  663. margin-bottom: 16rpx;
  664. .page_item {
  665. margin-top: 16rpx;
  666. margin-bottom: 124rpx;
  667. background: #fff;
  668. border-radius: 8rpx;
  669. margin: 0 20rpx;
  670. border: 2rpx solid #e5e9ed;
  671. position: relative;
  672. overflow: hidden;
  673. padding: 0 16rpx;
  674. .L {
  675. width: 40rpx;
  676. height: 40rpx;
  677. border-radius: 50%;
  678. background: #f9fafb;
  679. position: absolute;
  680. left: -20rpx;
  681. top: 68rpx;
  682. border: 2rpx solid #e5e9ed;
  683. }
  684. .R {
  685. width: 40rpx;
  686. height: 40rpx;
  687. border-radius: 50%;
  688. background: #f9fafb;
  689. position: absolute;
  690. float: right;
  691. right: -20rpx;
  692. top: 68rpx;
  693. border: 2rpx solid #e5e9ed;
  694. }
  695. .starting {
  696. width: 50rpx;
  697. height: 50rpx;
  698. color: #fff;
  699. background: #49b856;
  700. display: inline-block;
  701. border-radius: 50%;
  702. text-align: center;
  703. line-height: 46rpx;
  704. font-size: 32rpx;
  705. margin-right: 6rpx;
  706. }
  707. .End {
  708. width: 50rpx;
  709. height: 50rpx;
  710. color: #fff;
  711. background: #39b199;
  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. .page_item_top {
  720. height: 88rpx;
  721. border-bottom: 2rpx dashed #e5e9ed;
  722. padding: 0 16rpx;
  723. .page_item_top-inner {
  724. display: flex;
  725. justify-content: space-between;
  726. align-items: center;
  727. height: 100%;
  728. .page_item_top_L {
  729. .emergencys {
  730. background: #ff3b53 !important;
  731. width: 124rpx !important;
  732. }
  733. .emergency {
  734. background: #ff3b53 !important;
  735. }
  736. .emergency1 {
  737. background: #49b856 !important;
  738. }
  739. .page_item_cont_start {
  740. text-align: center;
  741. height: 44rpx;
  742. width: 104rpx;
  743. line-height: 44rpx;
  744. border-radius: 8rpx;
  745. background: #49b856;
  746. color: #fff;
  747. display: inline-block;
  748. }
  749. .L_time {
  750. color: #6cc076;
  751. font-size: 32rpx;
  752. }
  753. .L_text {
  754. font-size: 32rpx;
  755. font-weight: 700;
  756. }
  757. }
  758. .page_item_top_R {
  759. font-size: 32rpx;
  760. .back {
  761. color: rgb(7, 134, 60);
  762. background-color: #49b856;
  763. margin-left: 16rpx;
  764. }
  765. .L_iocn {
  766. display: flex;
  767. justify-content: space-between;
  768. align-items: center;
  769. font-size: 36rpx;
  770. font-weight: 700;
  771. }
  772. }
  773. }
  774. }
  775. .page_item_cont {
  776. min-height: 90rpx;
  777. padding: 0 16rpx;
  778. text-align: left;
  779. position: relative;
  780. .text_big {
  781. font-size: 32rpx;
  782. font-weight: 700;
  783. margin-top: 10rpx;
  784. p {
  785. font-weight: 700;
  786. line-height: 1.5;
  787. }
  788. }
  789. .page_item_cont_T {
  790. padding-top: 28rpx;
  791. padding-bottom: 28rpx;
  792. font-size: 28rpx;
  793. .page_item_cont_title {
  794. height: 100%;
  795. font-size: 32rpx;
  796. display: flex;
  797. justify-content: space-between;
  798. align-items: center;
  799. }
  800. }
  801. .page_item_cont_B {
  802. padding-top: 28rpx;
  803. margin-bottom: 28rpx;
  804. .page_item_cont_title {
  805. font-size: 32rpx;
  806. display: flex;
  807. justify-content: space-between;
  808. }
  809. .page_item_cont_title1 {
  810. height: 60rpx;
  811. line-height: 60rpx;
  812. font-size: 32rpx;
  813. padding-left: 64rpx;
  814. }
  815. }
  816. }
  817. .page_item_foot {
  818. border-top: 2rpx dashed #e5e9ed;
  819. border-bottom: 2rpx dashed #e5e9ed;
  820. padding: 28rpx 16rpx;
  821. text-align: left;
  822. .page_item_foot_text {
  823. font-size: 32rpx;
  824. margin-bottom: 20rpx;
  825. .text1 {
  826. color: rgb(102, 102, 102);
  827. }
  828. .text2 {
  829. float: right;
  830. font-weight: 700;
  831. }
  832. }
  833. }
  834. #infos {
  835. display: none;
  836. }
  837. .page_item_infos {
  838. padding-bottom: 20rpx;
  839. border-bottom: 2rpx dashed #e5e9ed;
  840. .page_item_info2 {
  841. text-align: left;
  842. line-height: 60rpx;
  843. font-size: 32rpx;
  844. padding-left: 16rpx;
  845. .page_item_foot_text {
  846. font-size: 32rpx;
  847. margin-bottom: 20rpx;
  848. .text1 {
  849. color: rgb(102, 102, 102);
  850. }
  851. .text2 {
  852. float: right;
  853. font-weight: 700;
  854. }
  855. }
  856. }
  857. }
  858. }
  859. .L-l {
  860. width: 2rpx;
  861. height: 40rpx;
  862. background: #f9fafb;
  863. position: absolute;
  864. left: 20rpx;
  865. top: 72rpx;
  866. }
  867. .R-l {
  868. width: 2rpx;
  869. height: 40rpx;
  870. background: #f9fafb;
  871. position: absolute;
  872. right: 20rpx;
  873. top: 72rpx;
  874. }
  875. }
  876. .foot_btn2 {
  877. position: fixed;
  878. bottom: 0;
  879. width: 100vw;
  880. padding: 0 20rpx;
  881. box-sizing: border-box;
  882. line-height: 66rpx;
  883. height: 100rpx;
  884. border-top: 2rpx solid #e5e9ed;
  885. background: #f9fafb;
  886. text-align: center;
  887. display: flex;
  888. justify-content: center;
  889. align-items: center;
  890. .btn2 {
  891. height: 66rpx;
  892. flex: 1;
  893. margin: 16rpx 16rpx 0;
  894. background-image: linear-gradient(to right, #72c172, #3bb197);
  895. color: #fff;
  896. border-radius: 8rpx;
  897. font-size: 32rpx;
  898. }
  899. }
  900. }
  901. </style>