specimenChecking.vue 25 KB

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