patientInformationList.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845
  1. <template>
  2. <view class="patientInformationList">
  3. <view class="page_tab">
  4. <view class="page_tab_bar active">
  5. <view class="tab_dept">
  6. {{ currenDept.dept}}
  7. <text class="newicon newicon-weibiaoti2010104" @click="changeDept"></text>
  8. </view>
  9. </view>
  10. </view>
  11. <view v-if="zxzData.length == 0" class="zwsj">
  12. <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  13. <view class="zwsj-txt">暂无数据</view>
  14. </view>
  15. <view v-if="zxzData.length" class="page_items">
  16. <scroll-view class="page_items_scroll" scroll-y :refresher-enabled="scroll_refresher_enabled"
  17. :refresher-triggered="triggered" @refresherrefresh="refresherrefresh" @refresherrestore="refresherrestore"
  18. @scrolltolower="scrolltolower" :scroll-top="scroll_top" @refresherabort="refresherabort" @scroll="scroll"
  19. refresher-background="transport">
  20. <view class="page_item_wrap" v-for="(item, index) of zxzData" :key="index">
  21. <view class="page_item">
  22. <view class="page_item_top">
  23. <view class="page_item_top_L">
  24. {{ item.patientName }}({{ item.residenceNo }})({{ item.bedNum }})
  25. </view>
  26. <view class="send_wrap">
  27. <template v-if="item.gender || item.age !== undefined">
  28. {{item.gender ? item.gender.name: ''}} {{item.age !== undefined ? item.age + '岁': ''}}
  29. </template>
  30. <template v-else>--</template>
  31. </view>
  32. </view>
  33. <view class="page_item_cont">
  34. <view class="page_item_conts">
  35. <view class="page_item_conts_item">
  36. <view class="column">
  37. <text class="p_title">护理信息:</text>
  38. <text class="p_info">
  39. <text :class="{red:item.careLevel&&(item.careLevel.value==0||item.careLevel.value==1)}">{{item.careLevel ? item.careLevel.name : '' }}</text>(<text :class="{red:item.illnessState&&(item.illnessState.value==2||item.illnessState.value==3)}">{{item.illnessState ? item.illnessState.name : ''}}</text>)
  40. </text>
  41. </view>
  42. <view class="column">
  43. <text class="p_title">待检:</text>
  44. <text class="p_info">{{ item.watingCount }}</text>
  45. </view>
  46. </view>
  47. <view class="page_item_conts_item">
  48. <view class="column">
  49. <text class="p_title">陪检方式:</text>
  50. <text class="p_info">{{ item.tripTypeDTO ? item.tripTypeDTO.inspectMode : '' }}</text>
  51. </view>
  52. </view>
  53. <view class="page_item_conts_item">
  54. <view class="column">
  55. <text class="p_title">注意事项:</text>
  56. <text class="p_info">{{ item.remark }}</text>
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. <view class="page_item_btns">
  62. <view class="page_item_btn" hover-class="seimin-btn-hover" @click="itemInfo(item.patientCode)">患者详情</view>
  63. <view class="page_item_btn" hover-class="seimin-btn-hover" @click="scanDept(item)">送回病房</view>
  64. </view>
  65. </view>
  66. </view>
  67. </scroll-view>
  68. </view>
  69. <!-- 底部扫一扫 -->
  70. <bigScreen></bigScreen>
  71. <!-- 送回病房弹窗 -->
  72. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  73. :operate="models1.operate" @ok="ok1" @cancel="cancel1"></showModel>
  74. <!-- 送回病房建单弹窗 -->
  75. <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
  76. :operate="models2.operate" @ok="ok2" @cancel="cancel2"></showModel>
  77. <!-- 送回病房建单弹窗-扫描科室 -->
  78. <showModel :title="models3.title" :icon="models3.icon" :disjunctor="models3.disjunctor" :content="models3.content"
  79. :operate="models3.operate" @ok="ok3" @cancel="cancel3"></showModel>
  80. <!-- 弹窗 -->
  81. <showModel :title="models4.title" :icon="models4.icon" :disjunctor="models4.disjunctor"
  82. :radioInspectionDistanceItem="models4.radioInspectionDistanceItem" @ok="ok4" @cancel="cancel4"
  83. @radioChange="radioChange4" :operate="models4.operate">
  84. </showModel>
  85. </view>
  86. </template>
  87. <script>
  88. import bigScreen from "../../components/bigScreen/bigScreen.vue";
  89. import {
  90. get,
  91. post,
  92. SM,
  93. deleteIt,
  94. webHandle
  95. } from "../../http/http.js";
  96. export default {
  97. data() {
  98. return {
  99. selectRadio: [], //单选框选中的数据,第一项是qrcode,第二项是名称
  100. // 单选框弹窗model
  101. models4: {
  102. disjunctor: false,
  103. },
  104. SMFlag:true,
  105. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  106. // 选中的患者项
  107. currentItem: {},
  108. // 送回病房弹窗model
  109. models1: {
  110. disjunctor: false,
  111. },
  112. // 送回病房建单弹窗model
  113. models2: {
  114. disjunctor: false,
  115. },
  116. // 送回病房建单弹窗model-扫描科室
  117. models3: {
  118. disjunctor: false,
  119. },
  120. scrollYY: 0, //滚动条滚动的距离
  121. options: {},
  122. // wechatFocusSwitch: 0,
  123. //当前登录人所属科室
  124. currenDept: {},
  125. // 抢单的id
  126. qdId: "",
  127. //列表数据
  128. zxzData: [],
  129. //分页页码
  130. idx: 0,
  131. // 列表项总数
  132. totalNum: -1,
  133. triggered: false, //下拉刷新状态
  134. freshing: false, //上拉加载开关
  135. scroll_top: 0, //距离顶部的距离
  136. scroll_refresher_enabled: true, //是否开启自定义下拉刷新
  137. currentStartDept: {}, //扫描的起点科室
  138. };
  139. },
  140. components: {
  141. bigScreen,
  142. },
  143. methods: {
  144. // 获取是否需要选择陪检方式
  145. getInspectAndPatientTransformSend() {
  146. const postData = {
  147. "idx": 0,
  148. "sum": 1,
  149. "taskTypeConfig": {
  150. "taskTypeDTO": {
  151. "hosId": {
  152. "id": this.hosId
  153. },
  154. "associationType": {
  155. "key": "association_types",
  156. "value": "inspect",
  157. },
  158. },
  159. },
  160. };
  161. uni.showLoading({
  162. mask: true,
  163. title: '加载中'
  164. })
  165. post("/simple/data/fetchDataList/taskTypeConfig", postData).then((res) => {
  166. console.log(res)
  167. if (res.status == 200) {
  168. res.list = res.list || [];
  169. if (res.list[0] && res.list[0].signTypeIds) {
  170. // 如果开启
  171. const postData = {
  172. "idx": 0,
  173. "sum": 9999,
  174. "workOrderInspectScore": {
  175. "hosId": this.hosId,
  176. },
  177. };
  178. post("/simple/data/fetchDataList/workOrderInspectScore", postData).then((res) => {
  179. console.log(res)
  180. uni.hideLoading();
  181. if (res.status == 200) {
  182. res.list = res.list || [];
  183. let radioInspectionDistanceItem = res.list.map(v => ({
  184. id: v.id + "__" + v.inspectMode,
  185. inspectMode: v.inspectMode
  186. }));
  187. this.models4 = {
  188. disjunctor: true,
  189. title: "请选择陪检方式",
  190. radioInspectionDistanceItem,
  191. icon: "",
  192. operate: {
  193. ok: "确定",
  194. cancel: "取消",
  195. },
  196. };
  197. } else {
  198. uni.showToast({
  199. icon: "none",
  200. title: res.msg || "接口获取数据失败!",
  201. });
  202. }
  203. })
  204. } else {
  205. this.ok3Result();
  206. }
  207. } else {
  208. uni.hideLoading();
  209. uni.showToast({
  210. icon: "none",
  211. title: res.msg || "接口获取数据失败!",
  212. });
  213. }
  214. })
  215. },
  216. // 选中单选框
  217. radioChange4(item) {
  218. console.log(item);
  219. this.selectRadio = item.split("__");
  220. },
  221. // 确定
  222. ok4() {
  223. console.log(this.selectRadio);
  224. if (!this.selectRadio.length) {
  225. return;
  226. }
  227. this.models4.disjunctor = false;
  228. this.ok3Result();
  229. },
  230. cancel4() {
  231. this.models4.disjunctor = false;
  232. },
  233. ok2() {
  234. this.models2.disjunctor = false;
  235. this.getInspectAndPatientTransformSend();
  236. },
  237. cancel2() {
  238. this.models2.disjunctor = false;
  239. },
  240. ok3Result() {
  241. console.log(this.currentItem)
  242. uni.showLoading({
  243. mask: true,
  244. title: '加载中'
  245. })
  246. let userId = uni.getStorageSync("userData").user.id;
  247. let postData = {
  248. "workOrder": [{
  249. sourceId: 4,
  250. "hosId": this.hosId,
  251. "startDept": {
  252. "id": this.options.did || this.currentStartDept.id
  253. },
  254. "createDept": this.options.did || this.currentStartDept.id,
  255. "patient": {
  256. "patientCode": this.currentItem.patientCode
  257. },
  258. "worker": {
  259. "id": userId
  260. },
  261. }],
  262. "inspectMode": this.selectRadio.length > 0 ? this.selectRadio[0] : undefined,
  263. };
  264. console.log(postData);
  265. // return;
  266. post("/workerOrder/returnSickRoom", postData).then((res) => {
  267. uni.hideLoading();
  268. if (res.status == 200) {
  269. uni.showToast({
  270. icon: 'success',
  271. title: '建单成功',
  272. });
  273. } else {
  274. uni.showToast({
  275. icon: "none",
  276. title: res.msg || "接口获取数据失败!",
  277. });
  278. }
  279. })
  280. },
  281. ok3() {
  282. this.models3.disjunctor = false;
  283. this.getInspectAndPatientTransformSend();
  284. },
  285. cancel3() {
  286. this.models3.disjunctor = false;
  287. },
  288. // 送回病房-建单
  289. sendBuild() {
  290. let currentItem = JSON.parse(this.options.currentItem);
  291. this.models2 = {
  292. disjunctor: true,
  293. title: "提示",
  294. content: `您选择的起点科室为【${this.options.ddept}】,您将从【${this.options.ddept}】把【${currentItem.patientName}】送回【${this.options.dept}】,如您确认请点击“确认建单”。`,
  295. icon: "warn",
  296. operate: {
  297. ok: "确认建单",
  298. cancel: "取消",
  299. },
  300. };
  301. },
  302. // 送回病房-扫描科室
  303. scanDept(item) {
  304. console.log(item)
  305. if (!this.SMFlag) {
  306. return;
  307. }
  308. this.SMFlag = false;
  309. this.currentItem = item;
  310. let code = "";
  311. SM().then((ress1) => {
  312. uni.showLoading({
  313. title: "加载中",
  314. mask: true,
  315. });
  316. //检验二维码的有效性
  317. post("/dept/scanning", {
  318. content: ress1,
  319. }).then((result) => {
  320. this.SMFlag = true;
  321. if (result.state == 200 || result.state == 201) {
  322. let ress = result.code;
  323. if (ress) {
  324. code = ress;
  325. // 科室扫描
  326. let postData = {
  327. "type": "query",
  328. "qrCode": code
  329. };
  330. post("/dept/scanChangeDept", postData).then((res) => {
  331. uni.hideLoading();
  332. if (res.status == 200) {
  333. if (res.data) {
  334. if(res.data.deptDTO){
  335. this.currentStartDept = res.data.deptDTO;
  336. }else{
  337. this.currentStartDept = res.data;
  338. }
  339. this.models3 = {
  340. disjunctor: true,
  341. title: "提示",
  342. content: `您选择的起点科室为【${this.currentStartDept.dept}】,您将从【${this.currentStartDept.dept}】把【${this.currentItem.patientName}】送回【${this.currenDept.dept}】,如您确认请点击“确认建单”。`,
  343. icon: "warn",
  344. operate: {
  345. ok: "确认建单",
  346. cancel: "取消",
  347. },
  348. };
  349. } else {
  350. uni.hideLoading();
  351. uni.showToast({
  352. icon: "none",
  353. title: "请扫描正确的科室码!",
  354. });
  355. }
  356. } else {
  357. uni.hideLoading();
  358. uni.showToast({
  359. icon: "none",
  360. title: res.msg || "接口获取数据失败!",
  361. });
  362. }
  363. });
  364. }
  365. } else {
  366. uni.hideLoading();
  367. uni.showToast({
  368. icon: "none",
  369. title: result.info || "接口获取数据失败!",
  370. });
  371. }
  372. });
  373. }).catch(err=>{
  374. this.SMFlag = true;
  375. });
  376. },
  377. // 送回病房-选择起点科室
  378. sendBack(item) {
  379. console.log(item)
  380. this.currentItem = item;
  381. this.models1 = {
  382. disjunctor: true,
  383. title: "提示",
  384. content: `您好,您是要将【${item.patientName}】送回病房吗?如确认请您点击“选择起点科室”建立工单。`,
  385. icon: "warn",
  386. operate: {
  387. ok: "选择起点科室",
  388. cancel: "取消",
  389. },
  390. };
  391. },
  392. ok1() {
  393. this.models1.disjunctor = false;
  394. uni.navigateTo({
  395. url: `../search/search?type=sendBackPatientList&currentItem=${JSON.stringify(this.currentItem)}&cid=${this.currenDept.id}&cdept=${this.currenDept.dept}&scrollYY=${this.scrollYY}`,
  396. });
  397. },
  398. cancel1() {
  399. this.models1.disjunctor = false;
  400. },
  401. // 切换科室
  402. changeDept() {
  403. uni.navigateTo({
  404. url: `../search/search?type=patientInformationList`,
  405. });
  406. },
  407. // 进入详情页
  408. itemInfo(patientCode) {
  409. // #ifdef H5
  410. document.body.removeEventListener("touchmove", this.stop, {
  411. passive: false,
  412. });
  413. // #endif
  414. uni.navigateTo({
  415. url: `../patientInformationInfo/patientInformationInfo?patientCode=${patientCode}`,
  416. });
  417. },
  418. //患者列表数据获取
  419. waitingOrders(idx) {
  420. if (this.zxzData.length == this.totalNum) {
  421. uni.showToast({
  422. icon: "none",
  423. title: "没有更多数据了!",
  424. });
  425. this.freshing = true;
  426. return;
  427. }
  428. let data = {
  429. idx,
  430. sum: 99999,
  431. patient: {
  432. department: {
  433. id: this.currenDept.id,
  434. },
  435. },
  436. };
  437. uni.showLoading({
  438. title: "加载中",
  439. mask: true,
  440. });
  441. // 请求列表数据
  442. post("/nurse/fetchDataList/patient", data).then((res) => {
  443. uni.hideLoading();
  444. if (res.status == 200) {
  445. this.triggered = false;
  446. this.freshing = true;
  447. this.totalNum = res.totalNum;
  448. if (idx === 0) {
  449. this.zxzData = res.list;
  450. } else {
  451. this.zxzData.push(...res.list);
  452. }
  453. } else {
  454. uni.showToast({
  455. icon: "none",
  456. title: res.msg || "接口获取数据失败!",
  457. });
  458. }
  459. });
  460. },
  461. //刷新
  462. refresherrefresh() {
  463. if (this.triggered) {
  464. return;
  465. }
  466. console.log("下拉刷新");
  467. this.triggered = true;
  468. this.idx = 0;
  469. this.totalNum = -1;
  470. this.waitingOrders(0);
  471. },
  472. // 下拉刷新复位
  473. refresherrestore() {
  474. this.triggered = false;
  475. console.log("下拉刷新复位");
  476. },
  477. //下拉刷新中止
  478. refresherabort() {
  479. this.triggered = false;
  480. console.log("下拉刷新中止");
  481. },
  482. //分页,上拉加载
  483. scrolltolower() {
  484. if (this.freshing) {
  485. console.log("上拉加载");
  486. this.freshing = false;
  487. this.waitingOrders(++this.idx);
  488. }
  489. },
  490. // 滚动
  491. scroll(e) {
  492. this.scrollYY = e.detail.scrollTop;
  493. if (e.detail.scrollTop < 20) {
  494. this.scroll_refresher_enabled = true;
  495. } else {
  496. this.scroll_refresher_enabled = false;
  497. }
  498. },
  499. // 阻止浏览器滑动
  500. stop(e) {
  501. e.preventDefault();
  502. },
  503. },
  504. onLoad(options) {
  505. console.log(options);
  506. this.options = options;
  507. //滚动条位置设置
  508. if (options.scrollYY !== undefined) {
  509. this.scroll_top = options.scrollYY;
  510. }
  511. if (options.did && options.ddept && options.currentItem) {
  512. this.sendBuild();
  513. }
  514. let patientCurrentDept = uni.getStorageSync("patientCurrentDept");
  515. if (options.id && options.dept) {
  516. let {
  517. id,
  518. dept
  519. } = options;
  520. this.currenDept.id = id;
  521. this.currenDept.dept = dept;
  522. } else if (patientCurrentDept) {
  523. this.currenDept.id = patientCurrentDept.id;
  524. this.currenDept.dept = patientCurrentDept.dept;
  525. } else {
  526. this.currenDept = uni.getStorageSync("userData").user.dept;
  527. }
  528. // this.getWechatFocusSwitch();
  529. this.waitingOrders(0);
  530. // #ifdef APP-PLUS
  531. webHandle("no", "app");
  532. // #endif
  533. // #ifdef H5
  534. webHandle("no", "wx");
  535. // #endif
  536. },
  537. onShow() {
  538. this.SMFlag = true;
  539. // #ifdef H5
  540. document.body.addEventListener("touchmove", this.stop, {
  541. passive: false,
  542. });
  543. // #endif
  544. },
  545. onHide() {
  546. // #ifdef H5
  547. document.body.removeEventListener("touchmove", this.stop, {
  548. passive: false,
  549. });
  550. // #endif
  551. },
  552. };
  553. </script>
  554. <style lang="less" scoped>
  555. .toolbar {
  556. position: fixed;
  557. left: 0;
  558. bottom: var(--window-bottom);
  559. z-index: 99;
  560. width: 100%;
  561. display: flex;
  562. justify-content: center;
  563. align-items: center;
  564. box-sizing: border-box;
  565. border-radius: 4rpx;
  566. background-color: #E5E8ED;
  567. .toolbar-icon {
  568. font-size: 52rpx;
  569. margin-right: 16rpx;
  570. color: #49B856;
  571. }
  572. .toolbar-sao {
  573. font-size: 36rpx;
  574. color: #333;
  575. }
  576. }
  577. .column{
  578. display: flex!important;
  579. }
  580. .newicon-weibiaoti2010104 {
  581. font-size: 32rpx;
  582. padding-left: 5rpx;
  583. color: #8A8A8A;
  584. &.fz28{
  585. font-size: 28rpx;
  586. }
  587. }
  588. .patientInformationList {
  589. width: 100%;
  590. height: 100%;
  591. position: relative;
  592. .page_tab {
  593. width: 100%;
  594. height: 96rpx;
  595. display: flex;
  596. position: fixed;
  597. left: 0;
  598. top: 0;
  599. z-index: 999;
  600. .page_tab_bar {
  601. flex: 1;
  602. font-size: 30rpx;
  603. background: #fff;
  604. display: flex;
  605. justify-content: center;
  606. align-items: center;
  607. position: relative;
  608. &:after {
  609. content: "";
  610. position: absolute;
  611. left: 0;
  612. bottom: 0;
  613. height: 8rpx;
  614. width: 100%;
  615. background-color: transparent;
  616. }
  617. .tab_dept {
  618. position: relative;
  619. .changeDept {
  620. white-space: nowrap;
  621. margin: 0;
  622. position: absolute;
  623. right: 0;
  624. top: 50%;
  625. transform: translate(105%, -50%);
  626. padding: 0 0.5em;
  627. line-height: 2;
  628. }
  629. }
  630. &.active {
  631. color: #49b856;
  632. &:after {
  633. background-color: #49b856;
  634. }
  635. }
  636. }
  637. }
  638. .zwsj {
  639. position: absolute;
  640. left: 50%;
  641. top: 180rpx;
  642. transform: translateX(-50%);
  643. .zwsj-img {
  644. width: 560rpx;
  645. }
  646. .zwsj-txt {
  647. font-size: 36rpx;
  648. font-weight: 700;
  649. margin-top: 20rpx;
  650. text-align: center;
  651. }
  652. }
  653. .page_items {
  654. height: calc(100vh - 164rpx);
  655. padding-top: 90rpx;
  656. .page_items_scroll {
  657. height: 100%;
  658. .page_item_wrap {
  659. position: relative;
  660. margin-top: 8rpx;
  661. &:last-of-type{
  662. padding-bottom: 24rpx;
  663. }
  664. .page_item {
  665. background: #fff;
  666. border-radius: 8rpx;
  667. overflow: hidden;
  668. border: 2rpx solid #e5e9ed;
  669. display: flex;
  670. flex-direction: column;
  671. padding-bottom: 16rpx;
  672. .L {
  673. width: 40rpx;
  674. height: 40rpx;
  675. border-radius: 50%;
  676. background: #f9fafb;
  677. position: absolute;
  678. left: -24rpx;
  679. top: 68rpx;
  680. border: 2rpx solid #e5e9ed;
  681. }
  682. .R {
  683. width: 40rpx;
  684. height: 40rpx;
  685. border-radius: 50%;
  686. background: #f9fafb;
  687. position: absolute;
  688. float: right;
  689. right: -24rpx;
  690. top: 68rpx;
  691. border: 2rpx solid #e5e9ed;
  692. }
  693. .page_item_top {
  694. height: 86rpx;
  695. border-bottom: 2rpx dashed #e5e9ed;
  696. padding: 0 16rpx;
  697. display: flex;
  698. align-items: center;
  699. justify-content: space-between;
  700. .send_wrap {
  701. display: flex;
  702. justify-content: space-between;
  703. align-items: center;
  704. font-size: 26rpx;
  705. color: #6A6A6A;
  706. }
  707. .sendBack {
  708. button {
  709. font-size: 28rpx;
  710. height: 52rpx;
  711. line-height: 52rpx;
  712. margin: 0;
  713. color: rgb(7, 134, 60);
  714. }
  715. }
  716. .page_item_top_L {
  717. height: 100%;
  718. float: left;
  719. display: flex;
  720. align-items: center;
  721. line-height: 88rpx;
  722. font-size: 30rpx;
  723. font-weight: bold;
  724. .L_time {
  725. color: #6cc076;
  726. font-size: 32rpx;
  727. }
  728. }
  729. .page_item_top_R {
  730. height: 40rpx;
  731. float: right;
  732. line-height: 40rpx;
  733. font-size: 24rpx;
  734. padding: 0 8rpx;
  735. background-color: red;
  736. color: #fff;
  737. }
  738. }
  739. .page_item_cont {
  740. padding: 0 32rpx;
  741. text-align: left;
  742. position: relative;
  743. .page_item_conts {
  744. color: rgb(102, 102, 102);
  745. font-size: 26rpx;
  746. .page_item_conts_item {
  747. margin-bottom: 16rpx;
  748. display: flex;
  749. justify-content: space-between;
  750. &:first-of-type{
  751. margin-top: 16rpx;
  752. }
  753. }
  754. .p_info {
  755. flex: 1;
  756. &.red {
  757. color: red;
  758. }
  759. }
  760. .num {
  761. float: right;
  762. }
  763. }
  764. }
  765. .page_item_btns{
  766. display: flex;
  767. justify-content: space-between;
  768. align-items: center;
  769. .page_item_btn {
  770. flex: 1;
  771. height: 72rpx;
  772. background-image: linear-gradient(to right, #72c172, #3bb197);
  773. border-radius: 8rpx;
  774. line-height: 72rpx;
  775. color: #fff;
  776. font-size: 36rpx;
  777. font-weight: 700;
  778. text-align: center;
  779. margin-right: 24rpx;
  780. &:first-of-type{
  781. margin-left: 24rpx;
  782. }
  783. }
  784. }
  785. }
  786. .L-l {
  787. width: 2rpx;
  788. height: 40rpx;
  789. background: #f9fafb;
  790. position: absolute;
  791. left: 20rpx;
  792. top: 72rpx;
  793. display: none;
  794. }
  795. .R-l {
  796. width: 2rpx;
  797. height: 40rpx;
  798. background: #f9fafb;
  799. position: absolute;
  800. right: 20rpx;
  801. top: 72rpx;
  802. display: none;
  803. }
  804. }
  805. }
  806. }
  807. }
  808. </style>