my_list.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809
  1. <template>
  2. <scroll-view :scroll-y="!models.disjunctor" @scroll="scrollList" :scroll-top="scroll_t" class="my_list">
  3. <view class="my_list_top">
  4. <view class="my_list_topL" @click="act()">
  5. 筛选
  6. <text class="cubeic-pulldown icon_transport transport-paixujiantouxia" v-if="!actType"></text>
  7. <text class="cubeic-pullup icon_transport transport-paixujiantoushang" v-if="actType"></text>
  8. </view>
  9. <view class="my_list_topC">
  10. <input type="text" placeholder="请输入关键字" v-model="listData.workOrder.keyWord" />
  11. </view>
  12. <view class="my_list_topR" @click="search(listData)"> 搜索 </view>
  13. </view>
  14. <view class="my_list_tops" id="actType" :animation="animationData" v-if="actType">
  15. <view class="tops">
  16. <view>类型筛选</view>
  17. <view class="tops_cont">
  18. <view v-for="(data, i) of typeData" :key="i" :class="{ ac: checkedSear[data.id] }"
  19. @click="sxTab(data.associationTypes, data.id)" :id="data.id">
  20. {{ data.name }}
  21. </view>
  22. </view>
  23. </view>
  24. <view class="tops">
  25. <view>工单筛选</view>
  26. <view class="tops_cont1">
  27. <view :class="{ gdType: listData.workOrder.abnormityType == 0 }" @click="gdTab(0)">
  28. 正常工单
  29. </view>
  30. <view :class="{ gdType: listData.workOrder.abnormityType == 1 }" @click="gdTab(1)">
  31. 异常工单
  32. </view>
  33. </view>
  34. </view>
  35. <view class="foot_btn2">
  36. <view class="btn1" :class="{ btnType: btnType == 1 }" @click="ok(listData)">
  37. 确定
  38. </view>
  39. <view class="btn2" @click="Reset()"> 重置 </view>
  40. </view>
  41. </view>
  42. <view class="item" @click="item()">
  43. <view class="page_items" v-if="workData && workData.length > 0">
  44. <view class="page_item" v-for="(infoDATA, i) of workData" :key="i" @click="detailIt(infoDATA)">
  45. <view class="page_item_top">
  46. <view class="page_item_top_L">
  47. <text class="L_text">单号:{{ infoDATA.gdcode }}</text>
  48. <view class="page_item_cont_start emergency1" v-if="infoDATA.emergencyType.value == 1">
  49. <text>
  50. <text
  51. class="cubeic-star icon_transport transport-shiwujiaoxing"></text>{{ infoDATA.emergencyType.name }}</text>
  52. </view>
  53. <view class="page_item_cont_start emergency" v-if="infoDATA.emergencyType.value == 2">
  54. <text>
  55. <text
  56. class="cubeic-star icon_transport transport-shiwujiaoxing"></text>{{ infoDATA.emergencyType.name }}</text>
  57. </view>
  58. <view class="page_item_cont_start emergencys" v-if="infoDATA.emergencyType.value == 3">
  59. <text>
  60. <text
  61. class="cubeic-star icon_transport transport-shiwujiaoxing"></text>{{ infoDATA.emergencyType.name }}</text>
  62. </view>
  63. </view>
  64. <view class="page_item_top_L">
  65. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimen'">标本<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
  66. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimenPlan'">标本<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
  67. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'drugsBag'">药品<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
  68. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'jPBag'">静配<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
  69. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'inspect'">陪检<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
  70. <text class="L_iocn" v-if="
  71. infoDATA.taskType.associationType.value == 'patientTransport'
  72. ">转运<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
  73. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'other'">其他<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
  74. </view>
  75. <view class="page_item_top_R">
  76. <view class="num" v-if="infoDATA.gdState.value != 6">
  77. {{infoDATA.grade?(infoDATA.grade.gradeTotal>=0?'+'+infoDATA.grade.gradeTotal:'-'+infoDATA.grade.gradeTotal):''}}
  78. </view>
  79. <view class="num" v-if="infoDATA.gdState.value == 6">
  80. 未评价
  81. </view>
  82. </view>
  83. <view class="L"> </view>
  84. <view class="R"> </view>
  85. </view>
  86. <view class="page_item_cont">
  87. <view class="page_item_cont_T">
  88. <view class="page_item_cont_title">
  89. <text> <text class="starting">起</text> 点科室</text>
  90. <text class="text_big"> {{ infoDATA.startDept.dept }}</text>
  91. </view>
  92. </view>
  93. <view class="line"> </view>
  94. <view class="page_item_cont_B">
  95. <view class="page_item_cont_title" v-for="(dept, i) of infoDATA.middleDept" :key="i">
  96. <view v-if="infoDATA.taskType.associationType.value == 'inspect'">
  97. <text> <text class="End">检</text> 查科室</text>
  98. <text class="text_big"> {{ dept.dept }}</text>
  99. <view></view>
  100. </view>
  101. </view>
  102. <view class="page_item_cont_title" v-for="(dept, i) of infoDATA.endDepts" :key="i">
  103. <view v-if="infoDATA.taskType.associationType.value != 'inspect'">
  104. <text> <text class="End">终</text> 点科室</text>
  105. <text class="text_big"> {{ dept.dept }}</text>
  106. </view>
  107. </view>
  108. </view>
  109. </view>
  110. <view class="page_item_foot">
  111. <view class="page_item_foot_text">
  112. <text class="text1">完成时间</text>&nbsp;&nbsp;
  113. <text class="text1">{{ infoDATA.completeTime || '' }}</text>
  114. </view>
  115. <view class="page_item_foot_text" @click.stop="goToDetail(infoDATA.id)">
  116. <text class="text1">扫描接收数量</text>&nbsp;&nbsp;
  117. <text class="text1 b">{{ infoDATA.actualReceiveNum || 0 }}</text>
  118. </view>
  119. </view>
  120. </view>
  121. </view>
  122. </view>
  123. <!-- 弹窗 -->
  124. <showIntegralModel :disjunctor="models.disjunctor" :operate="models.operate" :timestamp="models.timestamp"
  125. :orderId="models.orderId" @know="know()"></showIntegralModel>
  126. <!-- 未评价弹窗提示 -->
  127. <showModel :title="models6.title" :icon="models6.icon" :disjunctor="models6.disjunctor" :content="models6.content"
  128. @know="know6" :operate="models6.operate"></showModel>
  129. </scroll-view>
  130. </template>
  131. <script>
  132. import {
  133. get,
  134. post,
  135. webHandle
  136. } from "../../http/http.js";
  137. import showIntegralModel from "../../components/showIntegralModel/showIntegralModel.vue";
  138. import showModel from "../../components/showModel/showModel.vue";
  139. export default {
  140. data() {
  141. return {
  142. // 弹窗model
  143. models6: {
  144. disjunctor: false,
  145. },
  146. //滚动距离
  147. scroll_t: 0,
  148. scroll_t_old: 0,
  149. // 弹窗model
  150. models: {
  151. disjunctor: false,
  152. },
  153. animationData: {}, //动画
  154. actType: false,
  155. btnType: 1,
  156. checkedSear: {}, //筛选多选box
  157. types: "",
  158. typeData: [],
  159. listData: {
  160. idx: 0,
  161. sum: 20,
  162. workOrder: {
  163. abnormityType: "0",
  164. associationTypes: [],
  165. keyWord: "",
  166. },
  167. },
  168. workData: [],
  169. };
  170. },
  171. components: {
  172. showIntegralModel,
  173. showModel,
  174. },
  175. methods: {
  176. goToDetail(id){
  177. uni.navigateTo({
  178. url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(JSON.stringify([id]))}&isScan=1&specimensCheck=1&noScan=1`,
  179. });
  180. },
  181. //滚动距离
  182. scrollList(e) {
  183. this.scroll_t_old = e.detail.scrollTop;
  184. },
  185. // 知道了
  186. know() {
  187. this.scroll_t = this.scroll_t_old;
  188. this.models.disjunctor = false;
  189. },
  190. //未评价弹窗知道了
  191. know6() {
  192. this.models6.disjunctor = false;
  193. },
  194. //积分详情
  195. detailIt(infoDATA) {
  196. if (infoDATA.gdState.value == 6) {
  197. this.models6 = {
  198. disjunctor: true,
  199. content: "暂未评价,无法查看积分详情",
  200. icon: "warn",
  201. operate: {
  202. know: "知道了"
  203. },
  204. };
  205. return;
  206. }
  207. this.models.disjunctor = true;
  208. this.models.orderId = infoDATA.id;
  209. this.models.timestamp = Date.now();
  210. },
  211. item() {
  212. this.actType = false;
  213. this.animation.opacity(0).step();
  214. this.animationData = this.animation.export();
  215. },
  216. // 确定
  217. ok(data) {
  218. this.getData(data);
  219. this.actType = false;
  220. this.animation.opacity(0).step();
  221. this.animationData = this.animation.export();
  222. },
  223. // 搜索
  224. search(data) {
  225. this.getData(data);
  226. this.actType = false;
  227. this.animation.opacity(0).step();
  228. this.animationData = this.animation.export();
  229. },
  230. // 重置
  231. Reset() {
  232. for (var k in this.checkedSear) {
  233. this.checkedSear[k] = false;
  234. }
  235. this.listData.workOrder.associationType = [];
  236. this.listData.workOrder.abnormityType = "0";
  237. this.listData.workOrder.keyWord = "";
  238. this.getData(this.listData);
  239. },
  240. // 筛选
  241. act() {
  242. if (this.actType) {
  243. //当前状态时展开
  244. this.animation.opacity(0).step();
  245. this.animationData = this.animation.export();
  246. } else {
  247. //seimin
  248. this.animation.opacity(1).step();
  249. this.animationData = this.animation.export();
  250. }
  251. this.actType = !this.actType;
  252. },
  253. // 类型筛选
  254. sxTab(type, id) {
  255. this.$set(this.checkedSear, id, !this.checkedSear[id]);
  256. let checkedArr = [];
  257. for (var k in this.checkedSear) {
  258. if (this.checkedSear[k]) {
  259. checkedArr.push(k);
  260. }
  261. }
  262. this.listData.workOrder.associationTypes = checkedArr;
  263. },
  264. gdTab(type) {
  265. this.listData.workOrder.abnormityType = type;
  266. },
  267. getType() {
  268. let data = {
  269. type: "list",
  270. key: "association_types",
  271. };
  272. post("/common/common/getDictionary", data).then((res) => {
  273. for (var i = 0; i < res.length; i++) {
  274. let list = {
  275. name: "",
  276. associationTypes: "",
  277. id: "",
  278. };
  279. list.name = res[i].name;
  280. list.associationTypes = res[i].value;
  281. list.id = res[i].id;
  282. this.typeData.push(list);
  283. let id = res[i].id;
  284. this.$set(this.checkedSear, id, false);
  285. }
  286. });
  287. },
  288. getData(data) {
  289. uni.showLoading({
  290. title: '加载中',
  291. mask: true
  292. });
  293. post("/api/getOrdersByDate/" + this.types, data).then((res) => {
  294. uni.hideLoading();
  295. if (res.status == 200) {
  296. res.data.data.forEach(v=>{
  297. if(v.completeTime){
  298. v.completeTime = v.completeTime.slice(5,16)
  299. }
  300. })
  301. this.workData = res.data.data;
  302. } else {
  303. uni.showToast({
  304. icon: "none",
  305. title: "请求失败!",
  306. });
  307. }
  308. });
  309. },
  310. },
  311. onLoad(options) {
  312. console.log(options)
  313. this.types = options.type;
  314. this.getType();
  315. this.getData(this.listData);
  316. // 创建动画
  317. this.animation = uni.createAnimation({
  318. duration: 500,
  319. timingFunction: "ease",
  320. });
  321. // #ifdef APP-PLUS
  322. webHandle("no", "app");
  323. // #endif
  324. // #ifdef H5
  325. webHandle("no", "wx");
  326. // #endif
  327. },
  328. onUnload() {
  329. // 页面关闭后清空数据
  330. this.animationData = {};
  331. },
  332. };
  333. </script>
  334. <style lang="less">
  335. .my_list {
  336. height: 100vh;
  337. .my_list_top {
  338. height: 90rpx;
  339. background: #fff;
  340. line-height: 90rpx;
  341. border-bottom: 2rpx solid rgb(142, 157, 158);
  342. position: fixed;
  343. top: 0;
  344. width: 100%;
  345. z-index: 999;
  346. display: flex;
  347. align-items: center;
  348. justify-content: space-between;
  349. .my_list_topL {
  350. float: left;
  351. width: 22%;
  352. height: 100%;
  353. font-size: 32rpx;
  354. text-align: center;
  355. display: flex;
  356. justify-content: center;
  357. align-items: center;
  358. text {
  359. font-size: 34rpx;
  360. }
  361. }
  362. .my_list_topC {
  363. float: left;
  364. width: 55%;
  365. input {
  366. height: 60rpx;
  367. border: 2rpx solid rgb(142, 157, 158);
  368. border-radius: 40rpx;
  369. width: 100%;
  370. padding-left: 10rpx;
  371. padding-right: 10rpx;
  372. }
  373. }
  374. .my_list_topR {
  375. float: right;
  376. width: 22%;
  377. height: 100%;
  378. font-size: 32rpx;
  379. text-align: center;
  380. }
  381. }
  382. .my_list_tops {
  383. background: #fff;
  384. position: fixed;
  385. padding-top: 20rpx;
  386. z-index: 999;
  387. top: 92rpx;
  388. width: 100%;
  389. opacity: 0;
  390. .tops {
  391. height: 100%;
  392. text-align: left;
  393. padding-left: 30rpx;
  394. font-size: 32rpx;
  395. .tops_cont {
  396. height: 100%;
  397. margin-top: 10rpx;
  398. overflow: hidden;
  399. display: flex;
  400. flex-wrap: wrap;
  401. justify-content: space-between;
  402. view {
  403. width: 32%;
  404. height: 70rpx;
  405. line-height: 70rpx;
  406. // float: left;
  407. text-align: center;
  408. // margin-right: 2%;
  409. color: rgb(142, 157, 158);
  410. background: rgb(249, 250, 251);
  411. border-radius: 8rpx;
  412. margin-bottom: 2%;
  413. }
  414. .ac {
  415. color: #fff !important;
  416. background-image: linear-gradient(to right,
  417. #72c172,
  418. #3bb197) !important;
  419. }
  420. .ac1 {
  421. display: inline-block;
  422. }
  423. }
  424. .tops_cont1 {
  425. height: 100rpx;
  426. margin-top: 10rpx;
  427. overflow: hidden;
  428. view {
  429. width: 45%;
  430. color: rgb(142, 157, 158);
  431. height: 70rpx;
  432. line-height: 70rpx;
  433. float: left;
  434. text-align: center;
  435. margin-right: 2%;
  436. background: rgb(249, 250, 251);
  437. border-radius: 8rpx;
  438. }
  439. }
  440. .tops_cont2 {
  441. height: 90rpx;
  442. line-height: 90rpx;
  443. }
  444. .lxType {
  445. color: #fff !important;
  446. background-image: linear-gradient(to right,
  447. #72c172,
  448. #3bb197) !important;
  449. }
  450. .gdType {
  451. color: #fff !important;
  452. background-image: linear-gradient(to right,
  453. #72c172,
  454. #3bb197) !important;
  455. }
  456. }
  457. .foot_btn2 {
  458. position: absolute;
  459. width: 100%;
  460. line-height: 90rpx;
  461. height: 90rpx;
  462. border-top: 2rpx solid #e5e9ed;
  463. border-bottom: 2rpx solid #e5e9ed;
  464. background: #f9fafb;
  465. text-align: center;
  466. view {
  467. height: 90rpx;
  468. width: 49%;
  469. color: rgb(153, 153, 153);
  470. font-size: 32rpx;
  471. }
  472. .btn1 {
  473. float: left;
  474. }
  475. .btn2 {
  476. float: right;
  477. border-left: 2rpx solid #e5e9ed;
  478. }
  479. }
  480. .btnType {
  481. color: rgb(102, 102, 102) !important;
  482. }
  483. }
  484. .item {
  485. padding: 0 20rpx;
  486. margin-top: 120rpx;
  487. .page_items {
  488. margin-bottom: 110rpx;
  489. .page_item {
  490. margin-top: 16rpx;
  491. min-height: 356rpx;
  492. background: #fff;
  493. border-radius: 8rpx;
  494. overflow: hidden;
  495. padding: 0 16rpx;
  496. border: 2rpx solid #e5e9ed;
  497. .L {
  498. width: 40rpx;
  499. height: 40rpx;
  500. border-radius: 50%;
  501. background: #f9fafb; // background: blue;
  502. position: relative;
  503. left: -50rpx;
  504. top: 66rpx;
  505. }
  506. .R {
  507. width: 40rpx;
  508. height: 40rpx;
  509. border-radius: 50%;
  510. background: #f9fafb;
  511. position: relative;
  512. float: right;
  513. right: -50rpx;
  514. top: 26rpx;
  515. }
  516. .starting {
  517. width: 50rpx;
  518. height: 50rpx;
  519. color: #fff;
  520. background: #49b856;
  521. display: inline-block;
  522. border-radius: 50%;
  523. text-align: center;
  524. line-height: 46rpx;
  525. font-size: 32rpx;
  526. margin-right: 6rpx;
  527. }
  528. .End {
  529. width: 50rpx;
  530. height: 50rpx;
  531. color: #fff;
  532. background: #39b199;
  533. display: inline-block;
  534. border-radius: 50%;
  535. text-align: center;
  536. line-height: 46rpx;
  537. font-size: 32rpx;
  538. margin-right: 6rpx;
  539. }
  540. .page_item_top {
  541. height: 86rpx;
  542. border-bottom: 2rpx dashed #e5e9ed;
  543. .page_item_top_L {
  544. height: 100%;
  545. float: left;
  546. line-height: 88rpx;
  547. .ac {
  548. width: 32rpx;
  549. height: 32rpx;
  550. border: 2rpx solid #ccc;
  551. display: inline-block;
  552. position: relative;
  553. top: 6rpx;
  554. display: none;
  555. text {
  556. width: 24rpx;
  557. height: 24rpx;
  558. background: #39b199;
  559. display: block;
  560. margin: 0 auto;
  561. margin-top: 4rpx;
  562. }
  563. }
  564. .ac1 {
  565. width: 32rpx;
  566. height: 32rpx;
  567. border: 2rpx solid #ccc;
  568. display: inline-block;
  569. position: relative;
  570. top: 6rpx;
  571. }
  572. .emergencys {
  573. background: #ff3b53 !important;
  574. width: 124rpx !important;
  575. }
  576. .emergency {
  577. background: #ff3b53 !important;
  578. }
  579. .emergency1 {
  580. background: #49b856 !important;
  581. }
  582. .page_item_cont_start {
  583. text-align: center;
  584. height: 44rpx;
  585. width: 104rpx;
  586. line-height: 44rpx;
  587. border-radius: 8rpx;
  588. background: #49b856;
  589. color: #fff;
  590. display: inline-block;
  591. font-size: 28rpx;
  592. margin-left: 16rpx;
  593. }
  594. .L_time {
  595. color: #6cc076;
  596. font-size: 32rpx;
  597. }
  598. .L_text {
  599. font-size: 32rpx;
  600. display: inline-block;
  601. font-weight: 700;
  602. }
  603. .L_iocn {
  604. display: inline-block;
  605. height: 52rpx;
  606. color: rgb(7, 134, 60);
  607. font-size: 28rpx;
  608. font-weight: 700;
  609. margin-left: 20rpx;
  610. }
  611. }
  612. .page_item_top_R {
  613. height: 60rpx;
  614. float: right;
  615. padding-top: 20rpx;
  616. font-size: 32rpx;
  617. position: absolute;
  618. right: 50rpx;
  619. line-height: 48rpx;
  620. .num {
  621. color: rgb(7, 134, 60);
  622. }
  623. .num1 {
  624. color: #ff3b53 !important;
  625. }
  626. }
  627. }
  628. .page_item_cont {
  629. min-height: 180rpx;
  630. padding: 0 16rpx;
  631. text-align: left;
  632. position: relative;
  633. .text_big {
  634. font-size: 32rpx;
  635. position: absolute;
  636. right: 16rpx;
  637. font-weight: 700;
  638. margin-top: 10rpx;
  639. }
  640. .text_big2 {
  641. font-size: 32rpx;
  642. position: absolute;
  643. right: 16rpx;
  644. font-weight: 700;
  645. }
  646. .line {
  647. height: 20rpx;
  648. width: 2rpx;
  649. border-left: 2rpx solid #e5e9ed;
  650. position: absolute;
  651. top: 82rpx;
  652. left: 40rpx;
  653. }
  654. .lines {
  655. height: 40%;
  656. width: 2rpx;
  657. border-left: 2rpx solid #e5e9ed;
  658. position: absolute;
  659. top: 23%;
  660. left: 36rpx;
  661. }
  662. .page_item_cont_T {
  663. padding-top: 28rpx;
  664. font-size: 28rpx;
  665. .page_item_cont_title {
  666. height: 100%;
  667. font-size: 32rpx;
  668. }
  669. }
  670. .page_item_cont_B {
  671. padding-top: 28rpx;
  672. margin-bottom: 28rpx;
  673. .page_item_cont_title {
  674. height: 60rpx;
  675. font-size: 32rpx;
  676. }
  677. .page_item_cont_title1 {
  678. height: 60rpx;
  679. line-height: 60rpx;
  680. font-size: 32rpx;
  681. padding-left: 64rpx;
  682. }
  683. }
  684. }
  685. .page_item_foot {
  686. border-top: 2rpx dashed #e5e9ed;
  687. padding: 28rpx 16rpx;
  688. text-align: left;
  689. display: flex;
  690. justify-content: space-between;
  691. align-items: center;
  692. .page_item_foot_text {
  693. height: 48rpx;
  694. font-size: 32rpx;
  695. line-height: 48rpx;
  696. margin-bottom: 20rpx;
  697. .text1 {
  698. color: rgb(102, 102, 102);
  699. &.b{
  700. font-weight: bolder;
  701. }
  702. }
  703. .text2 {
  704. float: right;
  705. font-weight: 700;
  706. }
  707. }
  708. }
  709. #infos {
  710. display: none;
  711. }
  712. .page_item_infos {
  713. padding-bottom: 20rpx;
  714. border-bottom: 2rpx dashed #e5e9ed;
  715. .page_item_info2 {
  716. text-align: left;
  717. line-height: 60rpx;
  718. font-size: 32rpx;
  719. padding-left: 16rpx;
  720. .page_item_foot_text {
  721. height: 48rpx;
  722. font-size: 32rpx;
  723. line-height: 48rpx;
  724. margin-bottom: 20rpx;
  725. .text1 {
  726. color: rgb(102, 102, 102);
  727. &.b{
  728. font-weight: bolder;
  729. }
  730. }
  731. .text2 {
  732. float: right;
  733. font-weight: 700;
  734. }
  735. }
  736. }
  737. }
  738. }
  739. }
  740. }
  741. }
  742. </style>