specimenCheckingDetail.vue 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997
  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, i) 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"><text class="serialNumber">{{i + 1}}</text>{{ item.specimenDesc || "无" }}</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 style="width: 10em;"> {{item.stype ? item.stype.name : '无'}} </view>
  39. <view class="text_big">{{ item.scode || "无" }}</view>
  40. </view>
  41. <view class="page_item_cont_title">
  42. <view class="text_big"> {{ item.patientName }}<text v-if="item.bedNum">({{item.bedNum}}床)</text> </view>
  43. <view class="text_big">{{ item.residenceNo }}</view>
  44. </view>
  45. <view class="page_item_cont_title">
  46. <view class="text_big"> 收取:{{item.receiverName||'无'}} </view>
  47. <view class="text_big">{{item.arriveTime||'无'}}</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="newicon newicon-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" :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. disjunctor: true,
  245. };
  246. },
  247. // 退回-确认
  248. backOk(data) {
  249. console.log(data);
  250. this.backParams = data;
  251. this.hosModels.disjunctor = false;
  252. // ====================================
  253. uni.showLoading({
  254. title: "加载中",
  255. mask: true,
  256. });
  257. const userData = uni.getStorageSync("userData");
  258. // 查询标本配送业务
  259. post("/simple/data/fetchDataList/taskType",{
  260. "idx": 0,
  261. "sum": 10,
  262. "taskType": {
  263. "simpleQuery": true,
  264. "hosId": {
  265. "id": userData.user.currentHospital.id
  266. },
  267. "associationType": {
  268. "key": "association_types",
  269. "value": "specimen"
  270. }
  271. }
  272. }).then((res) => {
  273. if (res.status == 200) {
  274. let taskTypeDTO = res.list[0];
  275. if(taskTypeDTO){
  276. // 查询业务页面控制-标本
  277. post("/simple/data/fetchDataList/taskTypeConfig",{
  278. "idx": 0,
  279. "sum": 10,
  280. "taskTypeConfig": {
  281. taskTypeDTO,
  282. }
  283. }).then((res) => {
  284. uni.hideLoading();
  285. if (res.status == 200) {
  286. let data = res.list[0];
  287. if(data){
  288. if (data.returnSpecimenWhetherHandover == 1 && this.backParams.reasonForReturn.extra1 == 1) {
  289. this.backCancel();
  290. this.showSelectAccount();
  291. } else {
  292. this.backHandler(this.backSpecimen, this.workOrderId);
  293. }
  294. }else{
  295. this.backHandler(this.backSpecimen, this.workOrderId);
  296. }
  297. } else {
  298. uni.showToast({
  299. icon: "none",
  300. title: res.msg || "接口获取数据失败!",
  301. });
  302. }
  303. });
  304. }else{
  305. uni.hideLoading();
  306. uni.showToast({
  307. icon: "none",
  308. title: "未查询到标本配送业务!",
  309. });
  310. }
  311. } else {
  312. uni.hideLoading();
  313. uni.showToast({
  314. icon: "none",
  315. title: res.msg || "接口获取数据失败!",
  316. });
  317. }
  318. });
  319. // ====================================
  320. },
  321. // 退回-取消
  322. backCancel() {
  323. this.backModels.disjunctor = false;
  324. },
  325. // 退回弹窗
  326. showBack() {
  327. this.backModels = {
  328. title: "退回",
  329. disjunctor: true,
  330. };
  331. },
  332. previewImage(index) {
  333. //uniapp预览轮播图
  334. uni.previewImage({
  335. current: index, //预览图片的下标
  336. urls: this.imgs, //预览图片的地址,必须要数组形式,如果不是数组形式就转换成数组形式就可以
  337. });
  338. },
  339. // ---------------------------
  340. getInfo() {
  341. uni.showLoading({
  342. mask: true,
  343. title: "加载中",
  344. });
  345. let postData = {
  346. deptId: this.selectDeptId == "undefined" ?
  347. this.msg.startDept : this.selectDeptId,
  348. gdId: this.msg.uuid,
  349. };
  350. post(`/api/getStartDeptSpecimensNum`, postData).then((res) => {
  351. uni.hideLoading();
  352. if (res.status == 200) {
  353. this.speNum = res.data[0].deptSpecimensNum;
  354. this.modifyReason = res.data[0].modifyReason;
  355. get(
  356. `/common/common/listAttachment/specimenPhotos/${res.data[0].bindId}`
  357. ).then((result) => {
  358. if (result.status == 200) {
  359. this.imgs = result.data.map((v) => v.previewUrl);
  360. } else {
  361. this.imgs = [];
  362. }
  363. });
  364. } else {
  365. this.speNum = "";
  366. this.modifyReason = "";
  367. }
  368. });
  369. },
  370. getList() {
  371. uni.showLoading({
  372. mask: true,
  373. title: "加载中",
  374. });
  375. let postData = {
  376. checkDept: this.options.endDepts, //终点科室
  377. transDept: Number(this.msg.startDept), //起点科室id
  378. gdId: this.msg.uuid, //工单id或uuid
  379. };
  380. if (this.selectDeptId != "undefined") {
  381. if (Number(this.msg.startDept) != Number(this.selectDeptId)) {
  382. postData.checkDept = Number(this.selectDeptId); //签到的科室或者选择的科室
  383. if (this.options.t) {
  384. postData.sign = true; //待送达
  385. }
  386. }
  387. }
  388. post(`/api/getTransDeptSpecimens`, postData).then((res) => {
  389. uni.hideLoading();
  390. uni.stopPullDownRefresh();
  391. if (res.status == 200) {
  392. this.list = res.data;
  393. this.getInfo();
  394. } else {
  395. uni.showToast({
  396. icon: "none",
  397. title: res.msg || "接口获取数据失败!",
  398. });
  399. }
  400. });
  401. },
  402. // 返回
  403. goto() {
  404. if (this.options.t == "big") {
  405. uni.navigateBack();
  406. } else if (this.options.t == "small") {
  407. uni.navigateBack();
  408. } else {
  409. uni.navigateTo({
  410. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  411. JSON.stringify(this.msg)
  412. )}`,
  413. });
  414. }
  415. },
  416. // 修改标本数量-确认
  417. speOk(data) {
  418. console.log(data);
  419. const pathUrl = uni.getStorageSync("path");
  420. const {
  421. speNum,
  422. reason,
  423. imageValue
  424. } = data;
  425. this.changeSpeModels.disjunctor = false;
  426. uni.showLoading({
  427. mask: true,
  428. title: "加载中",
  429. });
  430. let postData = {
  431. checkDept: this.options.endDepts, //终点科室
  432. transDeptId: this.msg.startDept,
  433. gdId: this.msg.uuid,
  434. deptId: this.selectDeptId == "undefined" ?
  435. this.msg.startDept : this.selectDeptId,
  436. specimensNum: speNum,
  437. modifyReason: reason,
  438. };
  439. post("/api/updateCheckDeptSpecimensNum", postData).then((res) => {
  440. if (res.status == 200) {
  441. console.log(imageValue);
  442. if (!imageValue.length) {
  443. uni.hideLoading();
  444. if (this.options.t == "big") {
  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. } else if (this.options.t == "small") {
  468. if (this.selectDeptId == "undefined") {
  469. //快捷建单建单进入
  470. uni.navigateTo({
  471. url: `../../pages/receiptpage/receiptpage`,
  472. });
  473. } else {
  474. if (this.options.gdState == 4) {
  475. // 待到达
  476. uni.navigateTo({
  477. url: `../../pages/receiptpage/receiptpage`,
  478. });
  479. } else if (this.options.gdState == 5) {
  480. // 待送达
  481. if (res.type1 === "plan-spe-ddd-2") {} else {
  482. let content = `本工单已签到<strong class="red">${
  483. res.scanSet ? res.scanSet.join("、") : ""
  484. }</strong>,剩余需签到科室<strong class="red">${
  485. res.notScanSet ? res.notScanSet.join("、") : ""
  486. }</strong>,您确定完成工单吗?`;
  487. uni.navigateTo({
  488. url: `../scanning/scanning?type=${res.type}&type1=${
  489. res.type1
  490. }&id=${encodeURIComponent(
  491. JSON.stringify([res.gdid])
  492. )}&content=${content}`,
  493. });
  494. }
  495. }
  496. }
  497. } else {
  498. uni.navigateTo({
  499. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  500. JSON.stringify(this.msg)
  501. )}`,
  502. });
  503. }
  504. return;
  505. }
  506. let n = 0;
  507. imageValue.forEach((v) => {
  508. // 图片上传 start
  509. console.log("压缩前");
  510. let canvasWidth = v.image.width; //图片原始长宽
  511. let canvasHeight = v.image.height;
  512. let img = new Image();
  513. img.src = v.path;
  514. let canvas = document.createElement("canvas");
  515. let ctx = canvas.getContext("2d");
  516. canvas.width = canvasWidth;
  517. canvas.height = canvasHeight;
  518. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight);
  519. canvas.toBlob(
  520. (fileSrc) => {
  521. let tp = window.URL.createObjectURL(fileSrc);
  522. console.log("压缩后");
  523. n++;
  524. uni.uploadFile({
  525. url: pathUrl +
  526. "/common/common/uploadAttachment/specimenPhotos/" +
  527. res.deptSpecimensNumId +
  528. "/666",
  529. filePath: tp,
  530. name: "file",
  531. formData: {
  532. filename: v.name,
  533. },
  534. success: (uploadFileRes) => {
  535. console.log(uploadFileRes);
  536. if (--n === 0) {
  537. uni.hideLoading();
  538. uni.showModal({
  539. title: "提示",
  540. content: "修改成功!",
  541. showCancel: false,
  542. success: (result) => {
  543. if (result.confirm) {
  544. console.log("用户点击确定", this.options.t);
  545. if (this.options.t == "big") {
  546. if (this.options.gdState == 4) {
  547. // 待到达
  548. uni.navigateTo({
  549. url: `../../pages/receiptpage/receiptpage`,
  550. });
  551. } else if (this.options.gdState == 5) {
  552. // 待送达
  553. if (res.type1 === "plan-spe-ddd-2") {} else {
  554. let content = `本工单已签到<strong class="red">${
  555. res.scanSet ? res.scanSet.join("、") : ""
  556. }</strong>,剩余需签到科室<strong class="red">${
  557. res.notScanSet ? res.notScanSet.join("、") : ""
  558. }</strong>,您确定完成工单吗?`;
  559. uni.navigateTo({
  560. url: `../scanning/scanning?type=${res.type}&type1=${
  561. res.type1
  562. }&id=${encodeURIComponent(
  563. JSON.stringify([res.gdid])
  564. )}&content=${content}`,
  565. });
  566. }
  567. }
  568. } else if (this.options.t == "small") {
  569. if (this.selectDeptId == "undefined") {
  570. //快捷建单建单进入
  571. uni.navigateTo({
  572. url: `../../pages/receiptpage/receiptpage`,
  573. });
  574. } else {
  575. if (this.options.gdState == 4) {
  576. // 待到达
  577. uni.navigateTo({
  578. url: `../../pages/receiptpage/receiptpage`,
  579. });
  580. } else if (this.options.gdState == 5) {
  581. // 待送达
  582. if (res.type1 === "plan-spe-ddd-2") {} else {
  583. let content = `本工单已签到<strong class="red">${
  584. res.scanSet ? res.scanSet.join("、") : ""
  585. }</strong>,剩余需签到科室<strong class="red">${
  586. res.notScanSet ? res.notScanSet.join("、") : ""
  587. }</strong>,您确定完成工单吗?`;
  588. uni.navigateTo({
  589. url: `../scanning/scanning?type=${res.type}&type1=${
  590. res.type1
  591. }&id=${encodeURIComponent(
  592. JSON.stringify([res.gdid])
  593. )}&content=${content}`,
  594. });
  595. }
  596. }
  597. }
  598. } else {
  599. uni.navigateTo({
  600. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  601. JSON.stringify(this.msg)
  602. )}`,
  603. });
  604. }
  605. } else if (result.cancel) {
  606. console.log("用户点击取消");
  607. }
  608. },
  609. });
  610. }
  611. },
  612. fail: (err) => {
  613. n--;
  614. console.error(err);
  615. uni.hideLoading();
  616. uni.showToast({
  617. icon: "none",
  618. title: "上传失败",
  619. duration: 2000,
  620. });
  621. },
  622. });
  623. },
  624. "image/jpeg",
  625. 0.3
  626. );
  627. // 图片上传 end
  628. });
  629. } else {
  630. uni.hideLoading();
  631. uni.showToast({
  632. icon: "none",
  633. title: res.msg || "接口获取数据失败!",
  634. });
  635. }
  636. });
  637. },
  638. // 修改标本数量-取消
  639. speCancel() {
  640. this.changeSpeModels.disjunctor = false;
  641. },
  642. // 修改标本数量弹窗
  643. showChangeSpe() {
  644. this.changeSpeModels = {
  645. title: "修改标本数量",
  646. disjunctor: true,
  647. };
  648. },
  649. },
  650. onLoad(options) {
  651. console.log(options, "快捷建单");
  652. this.options = options;
  653. this.msg = JSON.parse(options.infoDATA);
  654. this.selectDeptId = options.id;
  655. // this.msg = JSON.parse(options.infoDATA);
  656. // this.targetDeptShow = this.msg.targetDeptShow.split(",");
  657. this.getList();
  658. // #ifdef APP-PLUS
  659. webHandle("no", "app");
  660. // #endif
  661. // #ifdef H5
  662. webHandle("no", "wx");
  663. // #endif
  664. },
  665. onPullDownRefresh() {
  666. this.getList();
  667. },
  668. };
  669. </script>
  670. <style lang="less" scoped>
  671. .specimenCheckingDetail {
  672. padding-bottom: 100rpx;
  673. .page_header {
  674. margin: 20rpx;
  675. padding: 16rpx;
  676. border: 2rpx solid #e5e9ed;
  677. background: #fff;
  678. border-radius: 8rpx;
  679. .page_header_item {
  680. margin-bottom: 16rpx;
  681. .page_header_title {
  682. margin-bottom: 8rpx;
  683. font-weight: bold;
  684. }
  685. .page_header_content {
  686. display: flex;
  687. image {
  688. height: 100rpx;
  689. width: 30%;
  690. margin: 0 8rpx;
  691. }
  692. }
  693. }
  694. }
  695. .page_item_wrap {
  696. width: 100%;
  697. height: auto;
  698. box-sizing: border-box;
  699. position: relative;
  700. margin-bottom: 16rpx;
  701. .page_item {
  702. margin-top: 16rpx;
  703. margin-bottom: 124rpx;
  704. background: #fff;
  705. border-radius: 8rpx;
  706. margin: 0 20rpx;
  707. border: 2rpx solid #e5e9ed;
  708. position: relative;
  709. overflow: hidden;
  710. padding: 0 16rpx;
  711. .L {
  712. width: 40rpx;
  713. height: 40rpx;
  714. border-radius: 50%;
  715. background: #f9fafb;
  716. position: absolute;
  717. left: -20rpx;
  718. top: 68rpx;
  719. border: 2rpx solid #e5e9ed;
  720. }
  721. .R {
  722. width: 40rpx;
  723. height: 40rpx;
  724. border-radius: 50%;
  725. background: #f9fafb;
  726. position: absolute;
  727. float: right;
  728. right: -20rpx;
  729. top: 68rpx;
  730. border: 2rpx solid #e5e9ed;
  731. }
  732. .starting {
  733. width: 50rpx;
  734. height: 50rpx;
  735. color: #fff;
  736. background: #49b856;
  737. display: inline-block;
  738. border-radius: 50%;
  739. text-align: center;
  740. line-height: 46rpx;
  741. font-size: 32rpx;
  742. margin-right: 6rpx;
  743. }
  744. .End {
  745. width: 50rpx;
  746. height: 50rpx;
  747. color: #fff;
  748. background: #39b199;
  749. display: inline-block;
  750. border-radius: 50%;
  751. text-align: center;
  752. line-height: 46rpx;
  753. font-size: 32rpx;
  754. margin-right: 6rpx;
  755. }
  756. .page_item_top {
  757. height: 88rpx;
  758. border-bottom: 2rpx dashed #e5e9ed;
  759. padding: 0 16rpx;
  760. .page_item_top-inner {
  761. display: flex;
  762. justify-content: space-between;
  763. align-items: center;
  764. height: 100%;
  765. .page_item_top_L {
  766. .serialNumber{
  767. width: 50rpx;
  768. height: 50rpx;
  769. border-radius: 50%;
  770. background-color: #49b856;
  771. display: flex;
  772. justify-content: center;
  773. align-items: center;
  774. color: #fff;
  775. line-height: 0;
  776. margin-right: 8rpx;
  777. }
  778. .emergencys {
  779. background: #ff3b53 !important;
  780. width: 124rpx !important;
  781. }
  782. .emergency {
  783. background: #ff3b53 !important;
  784. }
  785. .emergency1 {
  786. background: #49b856 !important;
  787. }
  788. .page_item_cont_start {
  789. text-align: center;
  790. height: 44rpx;
  791. width: 104rpx;
  792. line-height: 44rpx;
  793. border-radius: 8rpx;
  794. background: #49b856;
  795. color: #fff;
  796. display: inline-block;
  797. }
  798. .L_time {
  799. color: #6cc076;
  800. font-size: 32rpx;
  801. }
  802. .L_text {
  803. font-size: 32rpx;
  804. font-weight: 700;
  805. display: flex;
  806. align-items: center;
  807. }
  808. }
  809. .page_item_top_R {
  810. font-size: 32rpx;
  811. .back {
  812. color: rgb(7, 134, 60);
  813. background-color: #49b856;
  814. margin-left: 16rpx;
  815. }
  816. .L_iocn {
  817. display: flex;
  818. justify-content: space-between;
  819. align-items: center;
  820. font-size: 36rpx;
  821. font-weight: 700;
  822. }
  823. }
  824. }
  825. }
  826. .page_item_cont {
  827. min-height: 90rpx;
  828. padding: 0 16rpx;
  829. text-align: left;
  830. position: relative;
  831. .text_big {
  832. font-size: 32rpx;
  833. font-weight: 700;
  834. margin-top: 10rpx;
  835. p {
  836. font-weight: 700;
  837. line-height: 1.5;
  838. }
  839. }
  840. .page_item_cont_T {
  841. padding-top: 28rpx;
  842. padding-bottom: 28rpx;
  843. font-size: 28rpx;
  844. .page_item_cont_title {
  845. height: 100%;
  846. font-size: 32rpx;
  847. display: flex;
  848. justify-content: space-between;
  849. align-items: center;
  850. }
  851. }
  852. .page_item_cont_B {
  853. padding-top: 28rpx;
  854. margin-bottom: 28rpx;
  855. .page_item_cont_title {
  856. font-size: 32rpx;
  857. display: flex;
  858. justify-content: space-between;
  859. }
  860. .page_item_cont_title1 {
  861. height: 60rpx;
  862. line-height: 60rpx;
  863. font-size: 32rpx;
  864. padding-left: 64rpx;
  865. }
  866. }
  867. }
  868. .page_item_foot {
  869. border-top: 2rpx dashed #e5e9ed;
  870. border-bottom: 2rpx dashed #e5e9ed;
  871. padding: 28rpx 16rpx;
  872. text-align: left;
  873. .page_item_foot_text {
  874. font-size: 32rpx;
  875. margin-bottom: 20rpx;
  876. .text1 {
  877. color: rgb(102, 102, 102);
  878. }
  879. .text2 {
  880. float: right;
  881. font-weight: 700;
  882. }
  883. }
  884. }
  885. #infos {
  886. display: none;
  887. }
  888. .page_item_infos {
  889. padding-bottom: 20rpx;
  890. border-bottom: 2rpx dashed #e5e9ed;
  891. .page_item_info2 {
  892. text-align: left;
  893. line-height: 60rpx;
  894. font-size: 32rpx;
  895. padding-left: 16rpx;
  896. .page_item_foot_text {
  897. font-size: 32rpx;
  898. margin-bottom: 20rpx;
  899. .text1 {
  900. color: rgb(102, 102, 102);
  901. }
  902. .text2 {
  903. float: right;
  904. font-weight: 700;
  905. }
  906. }
  907. }
  908. }
  909. }
  910. .L-l {
  911. width: 2rpx;
  912. height: 40rpx;
  913. background: #f9fafb;
  914. position: absolute;
  915. left: 20rpx;
  916. top: 72rpx;
  917. }
  918. .R-l {
  919. width: 2rpx;
  920. height: 40rpx;
  921. background: #f9fafb;
  922. position: absolute;
  923. right: 20rpx;
  924. top: 72rpx;
  925. }
  926. }
  927. .foot_btn2 {
  928. position: fixed;
  929. bottom: 0;
  930. width: 100vw;
  931. padding: 0 20rpx;
  932. box-sizing: border-box;
  933. line-height: 66rpx;
  934. height: 100rpx;
  935. border-top: 2rpx solid #e5e9ed;
  936. background: #f9fafb;
  937. text-align: center;
  938. display: flex;
  939. justify-content: center;
  940. align-items: center;
  941. .btn2 {
  942. height: 66rpx;
  943. flex: 1;
  944. margin: 16rpx 16rpx 0;
  945. background-image: linear-gradient(to right, #72c172, #3bb197);
  946. color: #fff;
  947. border-radius: 8rpx;
  948. font-size: 32rpx;
  949. }
  950. }
  951. }
  952. </style>