specimenChecking.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839
  1. <template>
  2. <view class="specimenChecking">
  3. <view class="title">请您确认一下科室标本数量!</view>
  4. <view class="page_item_wrap" v-for="item in list" :key="item.deptId">
  5. <view class="page_item">
  6. <view class="page_item_top">
  7. <uni-collapse :border="false">
  8. <uni-collapse-item titleBorder="none">
  9. <template v-slot:title>
  10. <view class="page_item_cont_title_coll" @click.stop="gotoDetail(item)">
  11. <view class="page_item_top-inner">
  12. <!-- <view class="page_item_top_L"> -->
  13. <view class="L_text">{{item.deptName}}</view>
  14. <!-- </view> -->
  15. <view class="page_item_top_R">
  16. <view class="L_iocn">{{item.speNum}}</view>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <view class="content">
  22. <view class="list" v-for="x in item.tubeTypeDataList" @click="viewSpe(item, x.tubeTypeId)">
  23. {{x.tubeTypeName}}:<text class="underline-item">{{x.speNum}}</text>
  24. </view>
  25. </view>
  26. </uni-collapse-item>
  27. </uni-collapse>
  28. </view>
  29. <!-- <view class="page_item_cont">
  30. <view class="page_item_cont_T">
  31. <view class="page_item_cont_title">
  32. <view>
  33. 标本数量
  34. </view>
  35. <view class="text_big">{{item[2]}}</view>
  36. </view>
  37. </view>
  38. </view> -->
  39. <!-- <view class="L"></view>
  40. <view class="R"></view> -->
  41. </view>
  42. <!-- <view class="L-l"></view> -->
  43. <!-- <view class="R-l"></view> -->
  44. </view>
  45. <view class="foot_btn2">
  46. <view class="btn2" @click="createOrder">确认数量并建单</view>
  47. <view class="btn2" @click="goto()">返回</view>
  48. </view>
  49. <!-- 修改标本数量弹窗 -->
  50. <changeSpeNum v-if="changeSpeModels.disjunctor" :operate="{ok:'确认数量',check:'详细核对',cancel:'取消'}" :title="changeSpeModels.title" :content="changeSpeModels.content"
  51. :disjunctor="changeSpeModels.disjunctor" @ok="changeSpeOk" @check="changeSpeCheck" @cancel="changeSpeCancel" :num="speNumChange">
  52. </changeSpeNum>
  53. <!-- 弹窗 -->
  54. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  55. @ok="ok" @no="no" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
  56. </view>
  57. </template>
  58. <script>
  59. import showModel from "../../components/showModel/showModel.vue";
  60. import {
  61. get,
  62. post,
  63. webHandle
  64. } from "../../http/http.js";
  65. export default {
  66. components: {
  67. showModel,
  68. },
  69. data() {
  70. return {
  71. // 弹窗model
  72. models: {
  73. disjunctor: false,
  74. },
  75. list: [],
  76. msg: {}, //页面展示信息
  77. // 修改标本数量弹窗model
  78. changeSpeModels: {
  79. disjunctor: false,
  80. },
  81. speNumChange: 0,
  82. changeSpeObj: {},
  83. };
  84. },
  85. methods: {
  86. viewSpe(item, tubeTypeId){
  87. this.speNumChange = item.speNum;
  88. this.changeSpeObj = {
  89. infoDATA: this.msg,
  90. id: item.deptId,
  91. endDepts:this.msg.targetDept,
  92. }
  93. uni.navigateTo({
  94. url: `../../pages/specimenCheckingDetail/specimenCheckingDetail?infoDATA=${encodeURIComponent(JSON.stringify(this.changeSpeObj.infoDATA))}&id=${this.changeSpeObj.id}&endDepts=${this.changeSpeObj.endDepts}&tubeTypeId=${tubeTypeId}`,
  95. });
  96. },
  97. //确认数量并建单-返回
  98. know() {
  99. this.models.disjunctor = false;
  100. },
  101. //确认数量并建单-确定
  102. ok() {
  103. this.models.disjunctor = false;
  104. const speNumNot0Depts = this.list.filter(v => v.speNum !== 0);
  105. const speNumNot0DeptsStr = speNumNot0Depts.map(v => v.deptId).toString();
  106. uni.showLoading({
  107. mask: true,
  108. title: '加载中'
  109. })
  110. post(`/workerOrder/createQuickOrder`, {
  111. id: this.msg.id,
  112. notEmptyEndDeptIds: speNumNot0DeptsStr || undefined,
  113. }).then((res) => {
  114. uni.hideLoading();
  115. if (res.status == 200) {
  116. if (res.type === 'plan-spe-ddd-2') {
  117. //需要扫描标本
  118. uni.navigateTo({
  119. url: `../../pages/scanning_code/scanning_code?type=${res.associationTypeName}&type1=${res.type}&id=${res.id}&deptCode=${res.deptCode}&dept=${res.deptName}&accountObj=undefined&endDepts=${this.msg.targetDept}&deptId=${res.deptId}`,
  120. });
  121. } else {
  122. uni.navigateTo({
  123. url: "../receiptpage/receiptpage",
  124. });
  125. }
  126. } else {
  127. uni.showToast({
  128. icon: "none",
  129. title: res.msg || "接口获取数据失败!",
  130. });
  131. }
  132. });
  133. },
  134. //确认数量并建单-否
  135. no() {
  136. this.models.disjunctor = false;
  137. this.createOrderFun();
  138. },
  139. //确认数量并建单-取消
  140. cancel() {
  141. this.models.disjunctor = false;
  142. },
  143. // 数量核对 start
  144. // 修改标本数量-核对
  145. changeSpeCheck(){
  146. this.changeSpeModels.disjunctor = false;
  147. uni.navigateTo({
  148. url: `../../pages/specimenCheckingDetail/specimenCheckingDetail?infoDATA=${encodeURIComponent(JSON.stringify(this.changeSpeObj.infoDATA))}&id=${this.changeSpeObj.id}&endDepts=${this.changeSpeObj.endDepts}`,
  149. });
  150. },
  151. // 修改标本数量-确认
  152. changeSpeOk(data) {
  153. console.log(data);
  154. const pathUrl = uni.getStorageSync("path");
  155. const {
  156. speNum,
  157. reason,
  158. imageValue
  159. } = data;
  160. this.changeSpeModels.disjunctor = false;
  161. uni.showLoading({
  162. mask: true,
  163. title: "加载中",
  164. });
  165. let postData = {
  166. checkDept: this.changeSpeObj.endDepts, //终点科室
  167. transDeptId: this.changeSpeObj.infoDATA.startDept,
  168. gdId: this.changeSpeObj.infoDATA.uuid,
  169. deptId: this.changeSpeObj.id == "undefined" ?
  170. this.changeSpeObj.infoDATA.startDept : this.changeSpeObj.id,
  171. specimensNum: speNum,
  172. modifyReason: reason,
  173. };
  174. post("/api/updateCheckDeptSpecimensNum", postData).then((res) => {
  175. if (res.status == 200) {
  176. console.log(imageValue);
  177. if (!imageValue.length) {
  178. uni.hideLoading();
  179. if (this.changeSpeObj.t == "big") {
  180. if (this.changeSpeObj.gdState == 4) {
  181. // 待到达
  182. uni.navigateTo({
  183. url: `../../pages/receiptpage/receiptpage`,
  184. });
  185. } else if (this.changeSpeObj.gdState == 5) {
  186. // 待送达
  187. if (res.type1 === "plan-spe-ddd-2") {} else {
  188. let content = `本工单已签到<strong class="red">${
  189. res.scanSet ? res.scanSet.join("、") : ""
  190. }</strong>,剩余需签到科室<strong class="red">${
  191. res.notScanSet ? res.notScanSet.join("、") : ""
  192. }</strong>,您确定完成工单吗?`;
  193. uni.navigateTo({
  194. url: `../scanning/scanning?type=${res.type}&type1=${
  195. res.type1
  196. }&id=${encodeURIComponent(
  197. JSON.stringify([res.gdid])
  198. )}&content=${content}`,
  199. });
  200. }
  201. }
  202. } else if (this.changeSpeObj.t == "small") {
  203. if (this.changeSpeObj.id == "undefined") {
  204. //快捷建单建单进入
  205. uni.navigateTo({
  206. url: `../../pages/receiptpage/receiptpage`,
  207. });
  208. } else {
  209. if (this.changeSpeObj.gdState == 4) {
  210. // 待到达
  211. uni.navigateTo({
  212. url: `../../pages/receiptpage/receiptpage`,
  213. });
  214. } else if (this.changeSpeObj.gdState == 5) {
  215. // 待送达
  216. if (res.type1 === "plan-spe-ddd-2") {} else {
  217. let content = `本工单已签到<strong class="red">${
  218. res.scanSet ? res.scanSet.join("、") : ""
  219. }</strong>,剩余需签到科室<strong class="red">${
  220. res.notScanSet ? res.notScanSet.join("、") : ""
  221. }</strong>,您确定完成工单吗?`;
  222. uni.navigateTo({
  223. url: `../scanning/scanning?type=${res.type}&type1=${
  224. res.type1
  225. }&id=${encodeURIComponent(
  226. JSON.stringify([res.gdid])
  227. )}&content=${content}`,
  228. });
  229. }
  230. }
  231. }
  232. } else {
  233. uni.navigateTo({
  234. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  235. JSON.stringify(this.changeSpeObj.infoDATA)
  236. )}`,
  237. });
  238. }
  239. return;
  240. }
  241. let n = 0;
  242. imageValue.forEach((v) => {
  243. // 图片上传 start
  244. console.log("压缩前");
  245. let canvasWidth = v.image.width; //图片原始长宽
  246. let canvasHeight = v.image.height;
  247. let img = new Image();
  248. img.src = v.path;
  249. let canvas = document.createElement("canvas");
  250. let ctx = canvas.getContext("2d");
  251. canvas.width = canvasWidth;
  252. canvas.height = canvasHeight;
  253. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight);
  254. canvas.toBlob(
  255. (fileSrc) => {
  256. let tp = window.URL.createObjectURL(fileSrc);
  257. console.log("压缩后");
  258. n++;
  259. uni.uploadFile({
  260. url: pathUrl +
  261. "/common/common/uploadAttachment/specimenPhotos/" +
  262. res.deptSpecimensNumId +
  263. "/666",
  264. filePath: tp,
  265. name: "file",
  266. formData: {
  267. filename: v.name,
  268. },
  269. success: (uploadFileRes) => {
  270. console.log(uploadFileRes);
  271. if (--n === 0) {
  272. uni.hideLoading();
  273. uni.showModal({
  274. title: "提示",
  275. content: "修改成功!",
  276. showCancel: false,
  277. success: (result) => {
  278. if (result.confirm) {
  279. console.log("用户点击确定", this.changeSpeObj.t);
  280. if (this.changeSpeObj.t == "big") {
  281. if (this.changeSpeObj.gdState == 4) {
  282. // 待到达
  283. uni.navigateTo({
  284. url: `../../pages/receiptpage/receiptpage`,
  285. });
  286. } else if (this.changeSpeObj.gdState == 5) {
  287. // 待送达
  288. if (res.type1 === "plan-spe-ddd-2") {} else {
  289. let content = `本工单已签到<strong class="red">${
  290. res.scanSet ? res.scanSet.join("、") : ""
  291. }</strong>,剩余需签到科室<strong class="red">${
  292. res.notScanSet ? res.notScanSet.join("、") : ""
  293. }</strong>,您确定完成工单吗?`;
  294. uni.navigateTo({
  295. url: `../scanning/scanning?type=${res.type}&type1=${
  296. res.type1
  297. }&id=${encodeURIComponent(
  298. JSON.stringify([res.gdid])
  299. )}&content=${content}`,
  300. });
  301. }
  302. }
  303. } else if (this.changeSpeObj.t == "small") {
  304. if (this.changeSpeObj.id == "undefined") {
  305. //快捷建单建单进入
  306. uni.navigateTo({
  307. url: `../../pages/receiptpage/receiptpage`,
  308. });
  309. } else {
  310. if (this.changeSpeObj.gdState == 4) {
  311. // 待到达
  312. uni.navigateTo({
  313. url: `../../pages/receiptpage/receiptpage`,
  314. });
  315. } else if (this.changeSpeObj.gdState == 5) {
  316. // 待送达
  317. if (res.type1 === "plan-spe-ddd-2") {} else {
  318. let content = `本工单已签到<strong class="red">${
  319. res.scanSet ? res.scanSet.join("、") : ""
  320. }</strong>,剩余需签到科室<strong class="red">${
  321. res.notScanSet ? res.notScanSet.join("、") : ""
  322. }</strong>,您确定完成工单吗?`;
  323. uni.navigateTo({
  324. url: `../scanning/scanning?type=${res.type}&type1=${
  325. res.type1
  326. }&id=${encodeURIComponent(
  327. JSON.stringify([res.gdid])
  328. )}&content=${content}`,
  329. });
  330. }
  331. }
  332. }
  333. } else {
  334. uni.navigateTo({
  335. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  336. JSON.stringify(this.changeSpeObj.infoDATA)
  337. )}`,
  338. });
  339. }
  340. } else if (result.cancel) {
  341. console.log("用户点击取消");
  342. }
  343. },
  344. });
  345. }
  346. },
  347. fail: (err) => {
  348. n--;
  349. console.error(err);
  350. uni.hideLoading();
  351. uni.showToast({
  352. icon: "none",
  353. title: "上传失败",
  354. duration: 2000,
  355. });
  356. },
  357. });
  358. },
  359. "image/jpeg",
  360. 0.3
  361. );
  362. // 图片上传 end
  363. });
  364. } else {
  365. uni.hideLoading();
  366. uni.showToast({
  367. icon: "none",
  368. title: res.msg || "接口获取数据失败!",
  369. });
  370. }
  371. });
  372. },
  373. // 修改标本数量-取消
  374. changeSpeCancel() {
  375. this.changeSpeModels.disjunctor = false;
  376. },
  377. // 修改标本数量弹窗
  378. showChangeSpe() {
  379. this.changeSpeModels = {
  380. title: "修改标本数量",
  381. disjunctor: true,
  382. };
  383. },
  384. // 数量核对 end
  385. // 获取列表
  386. getList() {
  387. uni.showLoading({
  388. mask: true,
  389. title: '加载中'
  390. })
  391. let postData = {
  392. startDept: this.msg.startDept,
  393. targetDept: this.msg.targetDept,
  394. uuid: this.msg.uuid
  395. }; //起点科室id,选择的科室ids
  396. post(`/api/getDeptSpecimensNum`, postData).then((res) => {
  397. uni.hideLoading();
  398. uni.stopPullDownRefresh();
  399. if (res.status == 200) {
  400. this.list = res.data;
  401. } else {
  402. uni.showToast({
  403. icon: "none",
  404. title: res.msg || "接口获取数据失败!",
  405. });
  406. }
  407. });
  408. },
  409. // 跳转到详情页
  410. gotoDetail(item) {
  411. this.speNumChange = item.speNum;
  412. this.changeSpeObj = {
  413. infoDATA: this.msg,
  414. id: item.deptId,
  415. endDepts:this.msg.targetDept,
  416. }
  417. this.showChangeSpe();
  418. },
  419. // 返回
  420. goto() {
  421. uni.navigateTo({
  422. url: `../../pages/receiptpage/receiptpage`,
  423. });
  424. },
  425. // 确认数量并建单-方法
  426. createOrderFun(){
  427. uni.showLoading({
  428. mask: true,
  429. title: '加载中'
  430. })
  431. post(`/workerOrder/createQuickOrder`, {
  432. id: this.msg.id,
  433. }).then((res) => {
  434. console.log(res)
  435. uni.hideLoading();
  436. if (res.status == 200) {
  437. if (res.type === 'plan-spe-ddd-2') {
  438. //需要扫描标本
  439. uni.navigateTo({
  440. url: `../../pages/scanning_code/scanning_code?type=${res.associationTypeName}&type1=${res.type}&id=${res.id}&deptCode=${res.deptCode}&dept=${res.deptName}&accountObj=undefined&endDepts=${this.msg.targetDept}&deptId=${res.deptId}`,
  441. });
  442. } else {
  443. uni.navigateTo({
  444. url: "../receiptpage/receiptpage",
  445. });
  446. }
  447. } else {
  448. uni.showToast({
  449. icon: "none",
  450. title: res.msg || "接口获取数据失败!",
  451. });
  452. }
  453. });
  454. },
  455. // 确认数量并建单
  456. createOrder() {
  457. console.log(this.list);
  458. const speNum0Depts = this.list.filter(v => v.speNum === 0);
  459. const speNumNot0Depts = this.list.filter(v => v.speNum !== 0);
  460. if(!speNumNot0Depts.length){
  461. uni.showModal({
  462. title: '提示',
  463. content: "您所有科室本轮配送均无标本,无法建单!",
  464. showCancel: false,
  465. success: (res) => {
  466. if (res.confirm) {
  467. console.log('用户点击确定');
  468. } else if (res.cancel) {
  469. console.log('用户点击取消');
  470. }
  471. }
  472. });
  473. }else{
  474. if(speNum0Depts.length){
  475. const speNum0DeptsName = speNum0Depts.map(v => v.deptName).toString();
  476. this.models = {
  477. disjunctor: true,
  478. title: "提示",
  479. content: `您有科室本轮配送无标本,是否清除。科室分别为:<span class="red">${speNum0DeptsName}</span>`,
  480. icon: "warn",
  481. operate: {
  482. ok: "是",
  483. no: '否',
  484. cancel: "取消",
  485. },
  486. };
  487. }else{
  488. uni.showModal({
  489. title: '提示',
  490. content: "您确认建单吗?",
  491. success: (res) => {
  492. if (res.confirm) {
  493. console.log('用户点击确定');
  494. this.createOrderFun();
  495. } else if (res.cancel) {
  496. console.log('用户点击取消');
  497. }
  498. }
  499. });
  500. }
  501. }
  502. },
  503. },
  504. onLoad(options) {
  505. console.log(options, "快捷建单");
  506. this.msg = JSON.parse(options.infoDATA);
  507. this.getList();
  508. // #ifdef APP-PLUS
  509. webHandle("no", "app");
  510. // #endif
  511. // #ifdef H5
  512. webHandle("no", "wx");
  513. // #endif
  514. },
  515. onPullDownRefresh() {
  516. this.getList();
  517. },
  518. };
  519. </script>
  520. <style lang="less" scoped>
  521. /deep/ .uni-collapse-item--border{
  522. border-bottom-color: #fff !important;
  523. }
  524. /deep/ .uni-collapse-item__title-arrow{
  525. margin-right: 0 !important;
  526. }
  527. .specimenChecking {
  528. padding-bottom: 100rpx;
  529. .title {
  530. font-size: 48rpx;
  531. margin-top: 24rpx;
  532. margin-bottom: 24rpx;
  533. text-align: center;
  534. }
  535. .page_item_wrap {
  536. width: 100%;
  537. height: auto;
  538. box-sizing: border-box;
  539. position: relative;
  540. margin-bottom: 16rpx;
  541. .page_item {
  542. margin-top: 16rpx;
  543. margin-bottom: 124rpx;
  544. background: #fff;
  545. border-radius: 8rpx;
  546. margin: 0 20rpx;
  547. border: 2rpx solid #e5e9ed;
  548. position: relative;
  549. overflow: hidden;
  550. padding: 0 16rpx;
  551. .L {
  552. width: 40rpx;
  553. height: 40rpx;
  554. border-radius: 50%;
  555. background: #f9fafb;
  556. position: absolute;
  557. left: -20rpx;
  558. top: 68rpx;
  559. border: 2rpx solid #e5e9ed;
  560. }
  561. .R {
  562. width: 40rpx;
  563. height: 40rpx;
  564. border-radius: 50%;
  565. background: #f9fafb;
  566. position: absolute;
  567. float: right;
  568. right: -20rpx;
  569. top: 68rpx;
  570. border: 2rpx solid #e5e9ed;
  571. }
  572. .starting {
  573. width: 50rpx;
  574. height: 50rpx;
  575. color: #fff;
  576. background: #49b856;
  577. display: inline-block;
  578. border-radius: 50%;
  579. text-align: center;
  580. line-height: 46rpx;
  581. font-size: 32rpx;
  582. margin-right: 6rpx;
  583. }
  584. .End {
  585. width: 50rpx;
  586. height: 50rpx;
  587. color: #fff;
  588. background: #39b199;
  589. display: inline-block;
  590. border-radius: 50%;
  591. text-align: center;
  592. line-height: 46rpx;
  593. font-size: 32rpx;
  594. margin-right: 6rpx;
  595. }
  596. .page_item_top {
  597. // height: 88rpx;
  598. // border-bottom: 2rpx dashed #e5e9ed;
  599. padding: 20rpx 16rpx;
  600. .page_item_cont_title_coll{
  601. display: flex;
  602. justify-content: space-between;
  603. align-items: center;
  604. margin-right: 8rpx;
  605. .page_item_top-inner {
  606. display: flex;
  607. justify-content: space-between;
  608. align-items: center;
  609. height: 100%;
  610. width: 100%;
  611. .page_item_top_L {
  612. .emergencys {
  613. background: #ff3b53 !important;
  614. width: 124rpx !important;
  615. }
  616. .emergency {
  617. background: #ff3b53 !important;
  618. }
  619. .emergency1 {
  620. background: #49b856 !important;
  621. }
  622. .page_item_cont_start {
  623. text-align: center;
  624. height: 44rpx;
  625. width: 104rpx;
  626. line-height: 44rpx;
  627. border-radius: 8rpx;
  628. background: #49b856;
  629. color: #fff;
  630. display: inline-block;
  631. }
  632. .L_time {
  633. color: #6cc076;
  634. font-size: 32rpx;
  635. }
  636. .L_text {
  637. font-size: 32rpx;
  638. font-weight: 700;
  639. }
  640. }
  641. .page_item_top_R {
  642. font-size: 32rpx;
  643. .L_iocn {
  644. color: rgb(7, 134, 60);
  645. font-size: 36rpx;
  646. font-weight: 700;
  647. }
  648. }
  649. }
  650. }
  651. .content{
  652. display: flex;
  653. flex-wrap: wrap;
  654. .list{
  655. font-size: 28rpx;
  656. height: 60rpx;
  657. line-height: 60rpx;
  658. width: 50%;
  659. border-bottom: 1rpx solid #E6E6E6;
  660. &:last-child{
  661. border-bottom: none;
  662. }
  663. }
  664. }
  665. }
  666. .underline-item{
  667. // text-decoration: underline;
  668. // margin-right: 40rpx;
  669. }
  670. .page_item_cont {
  671. min-height: 90rpx;
  672. padding: 0 16rpx;
  673. text-align: left;
  674. position: relative;
  675. .text_big {
  676. font-size: 32rpx;
  677. font-weight: 700;
  678. margin-top: 10rpx;
  679. p {
  680. font-weight: 700;
  681. line-height: 1.5;
  682. }
  683. }
  684. .page_item_cont_T {
  685. padding-top: 28rpx;
  686. font-size: 28rpx;
  687. .page_item_cont_title {
  688. height: 100%;
  689. font-size: 32rpx;
  690. display: flex;
  691. justify-content: space-between;
  692. }
  693. }
  694. .page_item_cont_B {
  695. padding-top: 28rpx;
  696. margin-bottom: 28rpx;
  697. .page_item_cont_title {
  698. font-size: 32rpx;
  699. display: flex;
  700. justify-content: space-between;
  701. }
  702. .page_item_cont_title1 {
  703. height: 60rpx;
  704. line-height: 60rpx;
  705. font-size: 32rpx;
  706. padding-left: 64rpx;
  707. }
  708. }
  709. }
  710. .page_item_foot {
  711. border-top: 2rpx dashed #e5e9ed;
  712. border-bottom: 2rpx dashed #e5e9ed;
  713. padding: 28rpx 16rpx;
  714. text-align: left;
  715. .page_item_foot_text {
  716. font-size: 32rpx;
  717. margin-bottom: 20rpx;
  718. .text1 {
  719. color: rgb(102, 102, 102);
  720. }
  721. .text2 {
  722. float: right;
  723. font-weight: 700;
  724. }
  725. }
  726. }
  727. #infos {
  728. display: none;
  729. }
  730. .page_item_infos {
  731. padding-bottom: 20rpx;
  732. border-bottom: 2rpx dashed #e5e9ed;
  733. .page_item_info2 {
  734. text-align: left;
  735. line-height: 60rpx;
  736. font-size: 32rpx;
  737. padding-left: 16rpx;
  738. .page_item_foot_text {
  739. font-size: 32rpx;
  740. margin-bottom: 20rpx;
  741. .text1 {
  742. color: rgb(102, 102, 102);
  743. }
  744. .text2 {
  745. float: right;
  746. font-weight: 700;
  747. }
  748. }
  749. }
  750. }
  751. }
  752. .L-l {
  753. width: 2rpx;
  754. height: 40rpx;
  755. background: #f9fafb;
  756. position: absolute;
  757. left: 20rpx;
  758. top: 72rpx;
  759. }
  760. .R-l {
  761. width: 2rpx;
  762. height: 40rpx;
  763. background: #f9fafb;
  764. position: absolute;
  765. right: 20rpx;
  766. top: 72rpx;
  767. }
  768. }
  769. .foot_btn2 {
  770. position: fixed;
  771. bottom: 0;
  772. width: 100vw;
  773. padding: 0 20rpx;
  774. box-sizing: border-box;
  775. line-height: 66rpx;
  776. height: 100rpx;
  777. border-top: 2rpx solid #e5e9ed;
  778. background: #f9fafb;
  779. text-align: center;
  780. display: flex;
  781. justify-content: center;
  782. align-items: center;
  783. .btn2 {
  784. height: 66rpx;
  785. flex: 1;
  786. margin: 16rpx 16rpx 0;
  787. background-image: linear-gradient(to right, #72c172, #3bb197);
  788. color: #fff;
  789. border-radius: 8rpx;
  790. font-size: 32rpx;
  791. }
  792. }
  793. }
  794. </style>