my_list.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793
  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">
  116. <text class="text1">扫描接收数量</text>&nbsp;&nbsp;
  117. <text class="text1">{{ 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. //滚动距离
  177. scrollList(e) {
  178. this.scroll_t_old = e.detail.scrollTop;
  179. },
  180. // 知道了
  181. know() {
  182. this.scroll_t = this.scroll_t_old;
  183. this.models.disjunctor = false;
  184. },
  185. //未评价弹窗知道了
  186. know6() {
  187. this.models6.disjunctor = false;
  188. },
  189. //积分详情
  190. detailIt(infoDATA) {
  191. if (infoDATA.gdState.value == 6) {
  192. this.models6 = {
  193. disjunctor: true,
  194. content: "暂未评价,无法查看积分详情",
  195. icon: "warn",
  196. operate: {
  197. know: "知道了"
  198. },
  199. };
  200. return;
  201. }
  202. this.models.disjunctor = true;
  203. this.models.orderId = infoDATA.id;
  204. this.models.timestamp = Date.now();
  205. },
  206. item() {
  207. this.actType = false;
  208. this.animation.opacity(0).step();
  209. this.animationData = this.animation.export();
  210. },
  211. // 确定
  212. ok(data) {
  213. this.getData(data);
  214. this.actType = false;
  215. this.animation.opacity(0).step();
  216. this.animationData = this.animation.export();
  217. },
  218. // 搜索
  219. search(data) {
  220. this.getData(data);
  221. this.actType = false;
  222. this.animation.opacity(0).step();
  223. this.animationData = this.animation.export();
  224. },
  225. // 重置
  226. Reset() {
  227. for (var k in this.checkedSear) {
  228. this.checkedSear[k] = false;
  229. }
  230. this.listData.workOrder.associationType = [];
  231. this.listData.workOrder.abnormityType = "0";
  232. this.listData.workOrder.keyWord = "";
  233. this.getData(this.listData);
  234. },
  235. // 筛选
  236. act() {
  237. if (this.actType) {
  238. //当前状态时展开
  239. this.animation.opacity(0).step();
  240. this.animationData = this.animation.export();
  241. } else {
  242. //seimin
  243. this.animation.opacity(1).step();
  244. this.animationData = this.animation.export();
  245. }
  246. this.actType = !this.actType;
  247. },
  248. // 类型筛选
  249. sxTab(type, id) {
  250. this.$set(this.checkedSear, id, !this.checkedSear[id]);
  251. let checkedArr = [];
  252. for (var k in this.checkedSear) {
  253. if (this.checkedSear[k]) {
  254. checkedArr.push(k);
  255. }
  256. }
  257. this.listData.workOrder.associationTypes = checkedArr;
  258. },
  259. gdTab(type) {
  260. this.listData.workOrder.abnormityType = type;
  261. },
  262. getType() {
  263. let data = {
  264. type: "list",
  265. key: "association_types",
  266. };
  267. post("/common/common/getDictionary", data).then((res) => {
  268. for (var i = 0; i < res.length; i++) {
  269. let list = {
  270. name: "",
  271. associationTypes: "",
  272. id: "",
  273. };
  274. list.name = res[i].name;
  275. list.associationTypes = res[i].value;
  276. list.id = res[i].id;
  277. this.typeData.push(list);
  278. let id = res[i].id;
  279. this.$set(this.checkedSear, id, false);
  280. }
  281. });
  282. },
  283. getData(data) {
  284. uni.showLoading({
  285. title: '加载中',
  286. mask: true
  287. });
  288. post("/api/getOrdersByDate/" + this.types, data).then((res) => {
  289. uni.hideLoading();
  290. if (res.status == 200) {
  291. this.workData = res.data.data;
  292. } else {
  293. uni.showToast({
  294. icon: "none",
  295. title: "请求失败!",
  296. });
  297. }
  298. });
  299. },
  300. },
  301. onLoad(options) {
  302. console.log(options)
  303. this.types = options.type;
  304. this.getType();
  305. this.getData(this.listData);
  306. // 创建动画
  307. this.animation = uni.createAnimation({
  308. duration: 500,
  309. timingFunction: "ease",
  310. });
  311. // #ifdef APP-PLUS
  312. webHandle("no", "app");
  313. // #endif
  314. // #ifdef H5
  315. webHandle("no", "wx");
  316. // #endif
  317. },
  318. onUnload() {
  319. // 页面关闭后清空数据
  320. this.animationData = {};
  321. },
  322. };
  323. </script>
  324. <style lang="less">
  325. .my_list {
  326. height: 100vh;
  327. .my_list_top {
  328. height: 90rpx;
  329. background: #fff;
  330. line-height: 90rpx;
  331. border-bottom: 2rpx solid rgb(142, 157, 158);
  332. position: fixed;
  333. top: 0;
  334. width: 100%;
  335. z-index: 999;
  336. display: flex;
  337. align-items: center;
  338. justify-content: space-between;
  339. .my_list_topL {
  340. float: left;
  341. width: 22%;
  342. height: 100%;
  343. font-size: 32rpx;
  344. text-align: center;
  345. display: flex;
  346. justify-content: center;
  347. align-items: center;
  348. text {
  349. font-size: 34rpx;
  350. }
  351. }
  352. .my_list_topC {
  353. float: left;
  354. width: 55%;
  355. input {
  356. height: 60rpx;
  357. border: 2rpx solid rgb(142, 157, 158);
  358. border-radius: 40rpx;
  359. width: 100%;
  360. padding-left: 10rpx;
  361. padding-right: 10rpx;
  362. }
  363. }
  364. .my_list_topR {
  365. float: right;
  366. width: 22%;
  367. height: 100%;
  368. font-size: 32rpx;
  369. text-align: center;
  370. }
  371. }
  372. .my_list_tops {
  373. background: #fff;
  374. position: fixed;
  375. padding-top: 20rpx;
  376. z-index: 999;
  377. top: 92rpx;
  378. width: 100%;
  379. opacity: 0;
  380. .tops {
  381. height: 100%;
  382. text-align: left;
  383. padding-left: 30rpx;
  384. font-size: 32rpx;
  385. .tops_cont {
  386. height: 100%;
  387. margin-top: 10rpx;
  388. overflow: hidden;
  389. display: flex;
  390. flex-wrap: wrap;
  391. justify-content: space-between;
  392. view {
  393. width: 32%;
  394. height: 70rpx;
  395. line-height: 70rpx;
  396. // float: left;
  397. text-align: center;
  398. // margin-right: 2%;
  399. color: rgb(142, 157, 158);
  400. background: rgb(249, 250, 251);
  401. border-radius: 8rpx;
  402. margin-bottom: 2%;
  403. }
  404. .ac {
  405. color: #fff !important;
  406. background-image: linear-gradient(to right,
  407. #72c172,
  408. #3bb197) !important;
  409. }
  410. .ac1 {
  411. display: inline-block;
  412. }
  413. }
  414. .tops_cont1 {
  415. height: 100rpx;
  416. margin-top: 10rpx;
  417. overflow: hidden;
  418. view {
  419. width: 45%;
  420. color: rgb(142, 157, 158);
  421. height: 70rpx;
  422. line-height: 70rpx;
  423. float: left;
  424. text-align: center;
  425. margin-right: 2%;
  426. background: rgb(249, 250, 251);
  427. border-radius: 8rpx;
  428. }
  429. }
  430. .tops_cont2 {
  431. height: 90rpx;
  432. line-height: 90rpx;
  433. }
  434. .lxType {
  435. color: #fff !important;
  436. background-image: linear-gradient(to right,
  437. #72c172,
  438. #3bb197) !important;
  439. }
  440. .gdType {
  441. color: #fff !important;
  442. background-image: linear-gradient(to right,
  443. #72c172,
  444. #3bb197) !important;
  445. }
  446. }
  447. .foot_btn2 {
  448. position: absolute;
  449. width: 100%;
  450. line-height: 90rpx;
  451. height: 90rpx;
  452. border-top: 2rpx solid #e5e9ed;
  453. border-bottom: 2rpx solid #e5e9ed;
  454. background: #f9fafb;
  455. text-align: center;
  456. view {
  457. height: 90rpx;
  458. width: 49%;
  459. color: rgb(153, 153, 153);
  460. font-size: 32rpx;
  461. }
  462. .btn1 {
  463. float: left;
  464. }
  465. .btn2 {
  466. float: right;
  467. border-left: 2rpx solid #e5e9ed;
  468. }
  469. }
  470. .btnType {
  471. color: rgb(102, 102, 102) !important;
  472. }
  473. }
  474. .item {
  475. padding: 0 20rpx;
  476. margin-top: 120rpx;
  477. .page_items {
  478. margin-bottom: 110rpx;
  479. .page_item {
  480. margin-top: 16rpx;
  481. min-height: 356rpx;
  482. background: #fff;
  483. border-radius: 8rpx;
  484. overflow: hidden;
  485. padding: 0 16rpx;
  486. border: 2rpx solid #e5e9ed;
  487. .L {
  488. width: 40rpx;
  489. height: 40rpx;
  490. border-radius: 50%;
  491. background: #f9fafb; // background: blue;
  492. position: relative;
  493. left: -50rpx;
  494. top: 66rpx;
  495. }
  496. .R {
  497. width: 40rpx;
  498. height: 40rpx;
  499. border-radius: 50%;
  500. background: #f9fafb;
  501. position: relative;
  502. float: right;
  503. right: -50rpx;
  504. top: 26rpx;
  505. }
  506. .starting {
  507. width: 50rpx;
  508. height: 50rpx;
  509. color: #fff;
  510. background: #49b856;
  511. display: inline-block;
  512. border-radius: 50%;
  513. text-align: center;
  514. line-height: 46rpx;
  515. font-size: 32rpx;
  516. margin-right: 6rpx;
  517. }
  518. .End {
  519. width: 50rpx;
  520. height: 50rpx;
  521. color: #fff;
  522. background: #39b199;
  523. display: inline-block;
  524. border-radius: 50%;
  525. text-align: center;
  526. line-height: 46rpx;
  527. font-size: 32rpx;
  528. margin-right: 6rpx;
  529. }
  530. .page_item_top {
  531. height: 86rpx;
  532. border-bottom: 2rpx dashed #e5e9ed;
  533. .page_item_top_L {
  534. height: 100%;
  535. float: left;
  536. line-height: 88rpx;
  537. .ac {
  538. width: 32rpx;
  539. height: 32rpx;
  540. border: 2rpx solid #ccc;
  541. display: inline-block;
  542. position: relative;
  543. top: 6rpx;
  544. display: none;
  545. text {
  546. width: 24rpx;
  547. height: 24rpx;
  548. background: #39b199;
  549. display: block;
  550. margin: 0 auto;
  551. margin-top: 4rpx;
  552. }
  553. }
  554. .ac1 {
  555. width: 32rpx;
  556. height: 32rpx;
  557. border: 2rpx solid #ccc;
  558. display: inline-block;
  559. position: relative;
  560. top: 6rpx;
  561. }
  562. .emergencys {
  563. background: #ff3b53 !important;
  564. width: 124rpx !important;
  565. }
  566. .emergency {
  567. background: #ff3b53 !important;
  568. }
  569. .emergency1 {
  570. background: #49b856 !important;
  571. }
  572. .page_item_cont_start {
  573. text-align: center;
  574. height: 44rpx;
  575. width: 104rpx;
  576. line-height: 44rpx;
  577. border-radius: 8rpx;
  578. background: #49b856;
  579. color: #fff;
  580. display: inline-block;
  581. font-size: 28rpx;
  582. margin-left: 16rpx;
  583. }
  584. .L_time {
  585. color: #6cc076;
  586. font-size: 32rpx;
  587. }
  588. .L_text {
  589. font-size: 32rpx;
  590. display: inline-block;
  591. font-weight: 700;
  592. }
  593. .L_iocn {
  594. display: inline-block;
  595. height: 52rpx;
  596. color: rgb(7, 134, 60);
  597. font-size: 28rpx;
  598. font-weight: 700;
  599. margin-left: 20rpx;
  600. }
  601. }
  602. .page_item_top_R {
  603. height: 60rpx;
  604. float: right;
  605. padding-top: 20rpx;
  606. font-size: 32rpx;
  607. position: absolute;
  608. right: 50rpx;
  609. line-height: 48rpx;
  610. .num {
  611. color: rgb(7, 134, 60);
  612. }
  613. .num1 {
  614. color: #ff3b53 !important;
  615. }
  616. }
  617. }
  618. .page_item_cont {
  619. min-height: 180rpx;
  620. padding: 0 16rpx;
  621. text-align: left;
  622. position: relative;
  623. .text_big {
  624. font-size: 32rpx;
  625. position: absolute;
  626. right: 16rpx;
  627. font-weight: 700;
  628. margin-top: 10rpx;
  629. }
  630. .text_big2 {
  631. font-size: 32rpx;
  632. position: absolute;
  633. right: 16rpx;
  634. font-weight: 700;
  635. }
  636. .line {
  637. height: 20rpx;
  638. width: 2rpx;
  639. border-left: 2rpx solid #e5e9ed;
  640. position: absolute;
  641. top: 82rpx;
  642. left: 40rpx;
  643. }
  644. .lines {
  645. height: 40%;
  646. width: 2rpx;
  647. border-left: 2rpx solid #e5e9ed;
  648. position: absolute;
  649. top: 23%;
  650. left: 36rpx;
  651. }
  652. .page_item_cont_T {
  653. padding-top: 28rpx;
  654. font-size: 28rpx;
  655. .page_item_cont_title {
  656. height: 100%;
  657. font-size: 32rpx;
  658. }
  659. }
  660. .page_item_cont_B {
  661. padding-top: 28rpx;
  662. margin-bottom: 28rpx;
  663. .page_item_cont_title {
  664. height: 60rpx;
  665. font-size: 32rpx;
  666. }
  667. .page_item_cont_title1 {
  668. height: 60rpx;
  669. line-height: 60rpx;
  670. font-size: 32rpx;
  671. padding-left: 64rpx;
  672. }
  673. }
  674. }
  675. .page_item_foot {
  676. border-top: 2rpx dashed #e5e9ed;
  677. padding: 28rpx 16rpx;
  678. text-align: left;
  679. display: flex;
  680. justify-content: space-between;
  681. align-items: center;
  682. .page_item_foot_text {
  683. height: 48rpx;
  684. font-size: 32rpx;
  685. line-height: 48rpx;
  686. margin-bottom: 20rpx;
  687. .text1 {
  688. color: rgb(102, 102, 102);
  689. }
  690. .text2 {
  691. float: right;
  692. font-weight: 700;
  693. }
  694. }
  695. }
  696. #infos {
  697. display: none;
  698. }
  699. .page_item_infos {
  700. padding-bottom: 20rpx;
  701. border-bottom: 2rpx dashed #e5e9ed;
  702. .page_item_info2 {
  703. text-align: left;
  704. line-height: 60rpx;
  705. font-size: 32rpx;
  706. padding-left: 16rpx;
  707. .page_item_foot_text {
  708. height: 48rpx;
  709. font-size: 32rpx;
  710. line-height: 48rpx;
  711. margin-bottom: 20rpx;
  712. .text1 {
  713. color: rgb(102, 102, 102);
  714. }
  715. .text2 {
  716. float: right;
  717. font-weight: 700;
  718. }
  719. }
  720. }
  721. }
  722. }
  723. }
  724. }
  725. }
  726. </style>