mine.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982
  1. <template>
  2. <<<<<<< HEAD
  3. <view class="mine-container">
  4. <view class="mine-header">
  5. <img :src="userInfo.avatar" alt="" style="width: 136rpx;height: 136rpx;">
  6. <view class="header-info">
  7. <text class="info-name">{{ userInfo.nickName }}</text>
  8. <text class="info-id">ID: 88888888</text>
  9. <text class="info-edit" @click="handLsetTing">设置> </text>
  10. =======
  11. <view class="mine-container" :style="{ height: `${windowHeight}px` }">
  12. <view class="mine-top-bgc"></view>
  13. <view class="mine-box">
  14. <view class="mine-user">
  15. <view class="user-name-box">
  16. <view class="user-avatar">
  17. <up-avatar :src="userInfo.avatar" shape="square"></up-avatar>
  18. </view>
  19. <view class="user-name">{{ userInfo.nickName }}</view>
  20. <view class="grid-box" v-for="(listItem, listIndex) in setTing" :key="listIndex">
  21. <!-- <up-badge :isDot="true" type="success" class="item-badge"></up-badge> -->
  22. <up-icon :customStyle="{ paddingTop: 20 + 'rpx' }" :name="listItem.iconName" :size="22"
  23. @click="handLsetTing"></up-icon>
  24. <text class="grid-text">{{ listItem.name }}</text>
  25. </view>
  26. </view>
  27. <up-divider></up-divider>
  28. <view class="service-list">
  29. <up-grid :border="false" col="4">
  30. <up-grid-item v-for="(listItem, listIndex) in serviceList" :key="listIndex"
  31. @click="onClick(listItem)">
  32. <view class="grid-box">
  33. <!-- <up-badge :isDot="true" type="success" class="item-badge"></up-badge> -->
  34. <up-icon :customStyle="{ paddingTop: 20 + 'rpx' }" :name="listItem.iconName"
  35. :size="22"></up-icon>
  36. <text class="grid-text">{{ listItem.name }}</text>
  37. </view>
  38. </up-grid-item>
  39. </up-grid>
  40. </view>
  41. >>>>>>> 3e2be9f (fetch:详情tabs/用户新增地址)
  42. </view>
  43. </view>
  44. <view class="list-box">
  45. <view class="mine-card price-card" v-if="userType == 2">
  46. <view v-for="(item, index) in priceList" :key="item.key" class="price-item"
  47. :style="{ alignItems: index === 0 ? 'flex-start' : 'flex-end' }">
  48. <view class="price-name flex-center"> {{ item.name }} </view>
  49. <view class="price-data flex-center">
  50. {{ index === 0 ? '¥' : '' }}<up-count-to :startVal="0" :endVal="data[item.key]"
  51. :decimals="item.decimals"></up-count-to>
  52. </view>
  53. <text class="grid-min-price" v-if="item.key === 'balance'">待入账 ¥{{ data[item.key] }}</text>
  54. </view>
  55. </view>
  56. <!-- 志愿者 -->
  57. <view class="mine-card status-card" v-if="userType == 2">
  58. <view class="status-card-item" v-for="(listItem, listIndex) in adminList" :key="listIndex"
  59. @click="onClick(listItem)">
  60. <view class="grid-img-box">
  61. <img :src="listItem.iconName" alt="" style="width: 52rpx;height: 52rpx;">
  62. </view>
  63. <text class="grid-text">{{ listItem.name }}</text>
  64. </view>
  65. </view>
  66. <!-- 用户端 -->
  67. <view class="mine-card status-card" v-if="userType == 1">
  68. <view class="status-card-item" v-for="(listItem, listIndex) in userList" :key="listIndex"
  69. @click="onClick(listItem)">
  70. <view class="grid-img-box">
  71. <!-- <img :src="listItem.iconName" alt="" style="width: 52rpx;height: 52rpx;"> -->
  72. <up-icon :name="listItem.iconName" :size="22"></up-icon>
  73. </view>
  74. <text class="grid-text">{{ listItem.name }}</text>
  75. </view>
  76. </view>
  77. <view class="mine-card count-card" v-if="userType == 2">
  78. <view class="count-title">订单统计</view>
  79. <view class="count-list">
  80. <view class="count-item" v-for="(item, index) in orderList" :key="index">
  81. <up-count-to :startVal="0" :endVal="data[item.key]"></up-count-to>
  82. <text class="count-item-text">{{ item.name }}</text>
  83. </view>
  84. </view>
  85. </view>
  86. <view class="mine-card rate-card" v-if="userType == 2">
  87. <view class="count-title">好评率</view>
  88. <view class="rate-list">
  89. <view class="rate-box">
  90. <label class="rate-count">{{ rateValue }}</label>
  91. <text class="rate-text">优秀</text>
  92. </view>
  93. <up-rate v-model="rateValue" active-color="rgba(255, 87, 4, 1)" inactive-color="#b2b2b2" gutter="20"
  94. readonly></up-rate>
  95. </view>
  96. </view>
  97. </view>
  98. </view>
  99. </template>
  100. <script setup>
  101. <<<<<<< HEAD
  102. import { onMounted, ref } from 'vue';
  103. import {
  104. onLoad,
  105. onShow
  106. } from '@dcloudio/uni-app';
  107. import store from "@/store"
  108. const userInfo = ref({
  109. avatar: '/static/serverImg/mine/user.png'
  110. })
  111. const rateValue = ref(3)
  112. const priceList = [{
  113. name: '账户余额',
  114. key: 'balance',
  115. decimals: 2
  116. },
  117. {
  118. name: '订单总数',
  119. key: 'orderCount',
  120. decimals: 0
  121. }
  122. ]
  123. const orderList = ref([{
  124. name: '预约单',
  125. key: 'orderCount'
  126. },
  127. {
  128. name: '进行单',
  129. key: 'orderCount'
  130. },
  131. {
  132. name: '完成单',
  133. key: 'orderCount'
  134. },
  135. {
  136. name: '取消单',
  137. key: 'orderCount'
  138. }
  139. ]);
  140. const data = ref({
  141. balance: 0.0,
  142. orderCount: 0,
  143. });
  144. const userType = uni.getStorageSync('userType') //读取本地存储
  145. const adminList = ref(
  146. [{
  147. name: '待服务',
  148. iconName: '/static/serverImg/mine/icon1.png',
  149. page: '/pages/classify',
  150. value: 1
  151. },
  152. {
  153. name: '进行中',
  154. iconName: '/static/serverImg/mine/icon2.png',
  155. page: '/pages/classify',
  156. value: 2
  157. },
  158. {
  159. name: '已完成',
  160. iconName: '/static/serverImg/mine/icon3.png',
  161. page: '/pages/classify',
  162. value: 3
  163. },
  164. {
  165. name: '差评申述',
  166. iconName: '/static/serverImg/mine/icon4.png',
  167. page: '/pages_mine/pages/bad/index'
  168. },
  169. {
  170. name: '钱包',
  171. iconName: '/static/serverImg/mine/icon5.png',
  172. page: '/pages_mine/pages/wallet/index'
  173. },
  174. {
  175. name: '帮助与客服',
  176. iconName: '/static/serverImg/mine/icon6.png',
  177. },
  178. {
  179. name: '用户端',
  180. iconName: '/static/serverImg/mine/icon6.png',
  181. },
  182. ]);
  183. const userList = ref(
  184. [{
  185. name: '待服务',
  186. iconName: 'clock',
  187. page: '/pages/classify',
  188. value: 1
  189. },
  190. {
  191. name: '进行中',
  192. iconName: 'car',
  193. page: '/pages/classify',
  194. value: 2
  195. },
  196. {
  197. name: '已完成',
  198. iconName: 'car-fill',
  199. page: '/pages/classify',
  200. value: 3
  201. },
  202. {
  203. name: '评论',
  204. iconName: 'edit-pen',
  205. },
  206. {
  207. name: '钱包',
  208. iconName: 'rmb-circle',
  209. page: '/pages_mine/pages/wallet/index'
  210. },
  211. {
  212. name: '浏览记录',
  213. iconName: 'eye',
  214. },
  215. {
  216. name: '收藏',
  217. iconName: 'star',
  218. },
  219. {
  220. name: '帮助与客服',
  221. iconName: 'kefu-ermai',
  222. },
  223. {
  224. name: '地址',
  225. iconName: 'kefu-ermai',
  226. },
  227. {
  228. name: '志愿者',
  229. iconName: 'kefu-ermai',
  230. },
  231. ]);
  232. const onClick = (record) => {
  233. console.log('record', record, record.page);
  234. if (record.page && record.value) {
  235. const app = getApp();
  236. app.globalData.switchTabParams = {
  237. tabKey: record.value
  238. };
  239. // JS跳转
  240. uni.switchTab({
  241. url: record.page
  242. });
  243. return;
  244. }
  245. }
  246. const getDetails = async () => {
  247. try {
  248. // const res = await getVolunteerAccount();
  249. // console.log('res',res);
  250. } catch (error) {
  251. console.log('error', error);
  252. }
  253. }
  254. const handLsetTing = () => {
  255. =======
  256. import {
  257. onMounted,
  258. ref
  259. } from 'vue';
  260. import {
  261. getVolunteerAccount
  262. } from '@/api/volunteer.js'
  263. import {
  264. onLoad,
  265. onShow
  266. } from '@dcloudio/uni-app';
  267. import store from "@/store"
  268. const userType = uni.getStorageSync('userType') //读取本地存储
  269. // 用户/志愿者 识别标识
  270. const userOrWorker = uni.getStorageSync('storage_data').vuex_userOrWorker //读取本地存储
  271. const userInfo = ref({});
  272. const setTing = ref(
  273. [{
  274. iconName: 'setting-fill',
  275. value: 1,
  276. }, ]);
  277. const serviceList = ref(
  278. [{
  279. name: '待服务',
  280. iconName: 'clock',
  281. page: '/pages/classify',
  282. value: 1
  283. },
  284. {
  285. name: '进行中',
  286. iconName: 'car',
  287. page: '/pages/classify',
  288. value: 2
  289. },
  290. {
  291. name: '已完成',
  292. iconName: 'car-fill',
  293. page: '/pages/classify',
  294. value: 3
  295. },
  296. {
  297. name: '差评申述',
  298. iconName: 'edit-pen',
  299. page: '/pages_mine/pages/bad/index'
  300. },
  301. {
  302. name: '钱包',
  303. iconName: 'rmb-circle',
  304. page: '/pages_mine/pages/wallet/index'
  305. },
  306. {
  307. name: '帮助与客服',
  308. iconName: 'kefu-ermai',
  309. },
  310. {
  311. name: '服务地址',
  312. iconName: 'map',
  313. page: '/pages_mine/pages/serviceInforMation/index'
  314. },
  315. ]);
  316. const serviceList2 = ref([{
  317. name: '待服务',
  318. iconName: 'clock',
  319. page: '/pages/classify',
  320. value: 1
  321. },
  322. {
  323. name: '进行中',
  324. iconName: 'car',
  325. page: '/pages/classify',
  326. value: 2
  327. },
  328. {
  329. name: '已完成',
  330. iconName: 'car-fill',
  331. page: '/pages/classify',
  332. value: 3
  333. },
  334. {
  335. name: '评论',
  336. iconName: 'edit-pen',
  337. // page: '/pages/myCenter/bad'
  338. },
  339. {
  340. name: '钱包',
  341. iconName: 'rmb-circle',
  342. page: '/pages_mine/pages/wallet/index'
  343. },
  344. {
  345. name: '帮助与客服',
  346. iconName: 'kefu-ermai',
  347. },
  348. {
  349. name: '浏览记录',
  350. iconName: 'eye',
  351. page: '/pages_mine/pages/wallet/index'
  352. },
  353. {
  354. name: '收藏',
  355. iconName: 'star',
  356. },
  357. ]);
  358. const priceList = [{
  359. name: '余额',
  360. key: 'balance',
  361. decimals: 2
  362. },
  363. {
  364. name: '订单总数',
  365. key: 'orderCount',
  366. decimals: 0
  367. }
  368. ]
  369. const orderList = ref([{
  370. name: '预约单',
  371. key: 'orderCount'
  372. },
  373. {
  374. name: '进行单',
  375. key: 'orderCount'
  376. },
  377. {
  378. name: '完成单',
  379. key: 'orderCount'
  380. },
  381. {
  382. name: '取消单',
  383. key: 'orderCount'
  384. }
  385. ]);
  386. const avatarSrc = ref('/static/my/客服.png');
  387. const data = ref({
  388. balance: 0.0,
  389. orderCount: 0,
  390. });
  391. const rateValue = ref(3);
  392. const onClick = (record) => {
  393. console.log('record', record, record.page);
  394. if (record.page && record.value) {
  395. const app = getApp();
  396. app.globalData.switchTabParams = {
  397. tabKey: record.value
  398. };
  399. // JS跳转
  400. uni.switchTab({
  401. url: record.page
  402. });
  403. return;
  404. }
  405. if (record.page) {
  406. uni.navigateTo({
  407. url: record.page
  408. });
  409. }
  410. onMounted(getDetails)
  411. }
  412. const getDetails = async () => {
  413. try {
  414. // const res = await getVolunteerAccount();
  415. // console.log('res',res);
  416. } catch (error) {
  417. console.log('error', error);
  418. }
  419. }
  420. const geUserInfo = () => {
  421. console.log(store.state, '>>>>99');
  422. userInfo.value = store.state.user
  423. }
  424. // 设置
  425. const handLsetTing = () => {
  426. >>>>>>> 3e2be9f (fetch:详情tabs/用户新增地址)
  427. console.log('123')
  428. uni.navigateTo({
  429. url: '/pages_mine/pages/setupUser/index'
  430. })
  431. }
  432. <<<<<<< HEAD
  433. const geUserInfo = () => {
  434. console.log(store.state, '>>>>99');
  435. userInfo.value = store.state.user
  436. }
  437. onShow(() => {
  438. geUserInfo();
  439. })
  440. </script>
  441. <style lang="scss" scoped>
  442. .mine-container {
  443. position: fixed;
  444. left: 0;
  445. top: 0;
  446. right: 0;
  447. bottom: 0;
  448. background: rgba(245, 245, 245, 1);
  449. overflow-y: auto;
  450. .mine-header {
  451. padding: 42rpx 44rpx;
  452. background: #fff;
  453. display: flex;
  454. .header-info {
  455. display: flex;
  456. flex-direction: column;
  457. margin-left: 36rpx;
  458. .info-name {
  459. font-size: 36rpx;
  460. font-weight: 400;
  461. line-height: 54rpx;
  462. color: rgba(51, 51, 51, 1);
  463. }
  464. .info-id {
  465. font-size: 28rpx;
  466. font-weight: 400;
  467. letter-spacing: 0rpx;
  468. line-height: 42rpx;
  469. color: rgba(153, 153, 153, 1);
  470. }
  471. .info-edit {
  472. font-size: 24rpx;
  473. font-weight: 400;
  474. letter-spacing: 0rpx;
  475. line-height: 36rpx;
  476. color: rgba(102, 102, 102, 1);
  477. }
  478. }
  479. }
  480. .list-box {
  481. padding: 16rpx 40rpx;
  482. .price-card {
  483. display: flex;
  484. align-items: center;
  485. justify-content: space-between;
  486. .price-item {
  487. display: flex;
  488. align-items: center;
  489. flex-direction: column;
  490. .price-name {
  491. font-size: 28rpx;
  492. font-weight: 400;
  493. line-height: 42rpx;
  494. color: rgba(102, 102, 102, 1);
  495. }
  496. .price-data {
  497. font-size: 48rpx;
  498. font-weight: 400;
  499. line-height: 72rpx;
  500. color: rgba(51, 51, 51, 1);
  501. }
  502. .grid-min-price {
  503. font-size: 24rpx;
  504. font-weight: 400;
  505. line-height: 36rpx;
  506. color: rgba(153, 153, 153, 1);
  507. =======
  508. onShow(() => {
  509. geUserInfo();
  510. })
  511. </script>
  512. <style lang="scss" scoped>
  513. .mine-card {
  514. border-radius: 8px;
  515. background: rgba(255, 255, 255, 1);
  516. padding: 12px;
  517. margin-bottom: 12px;
  518. }
  519. .mine-container {
  520. position: fixed;
  521. top: 0px;
  522. left: 0px;
  523. right: 0px;
  524. bottom: 0px;
  525. background: rgba(245, 245, 245, 1);
  526. .mine-top-bgc {
  527. height: 120px;
  528. background: linear-gradient(180deg, rgba(255, 219, 171, 1) 0%, rgba(242, 151, 99, 1) 100%);
  529. }
  530. .mine-box {
  531. position: absolute;
  532. top: 40px;
  533. left: 12px;
  534. right: 12px;
  535. bottom: 0px;
  536. overflow-y: auto;
  537. .mine-user {
  538. border-radius: 8px;
  539. background: rgba(255, 255, 255, 1);
  540. margin-bottom: 12px;
  541. .user-name-box {
  542. display: flex;
  543. justify-content: space-between;
  544. align-items: center;
  545. padding: 12px 12px 0;
  546. .user-avatar {}
  547. .user-name {
  548. font-size: 18px;
  549. font-weight: 700;
  550. line-height: 21.09px;
  551. color: rgba(51, 51, 51, 1);
  552. margin-left: 12px;
  553. }
  554. >>>>>>> 3e2be9f (fetch:详情tabs/用户新增地址)
  555. }
  556. }
  557. }
  558. .service-img {
  559. width: 60rpx;
  560. height: 60rpx;
  561. margin-bottom: 10rpx;
  562. }
  563. .service-list {
  564. padding-bottom: 12px;
  565. }
  566. .grid-text {
  567. font-size: 14px;
  568. color: #909399;
  569. padding: 10rpx 0 20rpx 0rpx;
  570. /* #ifndef APP-PLUS */
  571. box-sizing: border-box;
  572. /* #endif */
  573. }
  574. .grid-box {
  575. display: flex;
  576. align-items: center;
  577. justify-content: center;
  578. flex-direction: column;
  579. position: relative;
  580. .item-badge {
  581. position: absolute;
  582. }
  583. }
  584. .price-box {
  585. display: flex;
  586. align-content: center;
  587. justify-content: space-between;
  588. // padding: 12px;
  589. .price-item {
  590. width: 50%;
  591. padding: 12px;
  592. display: flex;
  593. flex-direction: column;
  594. align-items: center;
  595. justify-content: center;
  596. .user-name-box {
  597. display: flex;
  598. flex-direction: column;
  599. align-items: center;
  600. justify-content: center;
  601. padding: 12px 12px 0;
  602. .user-avatar {}
  603. .user-name {
  604. font-size: 18px;
  605. font-weight: 700;
  606. line-height: 21.09px;
  607. color: rgba(51, 51, 51, 1);
  608. margin-left: 12px;
  609. }
  610. }
  611. }
  612. }
  613. .service-img {
  614. width: 60rpx;
  615. height: 60rpx;
  616. margin-bottom: 10rpx;
  617. }
  618. .service-list {
  619. padding-bottom: 12px;
  620. }
  621. .grid-text {
  622. font-size: 14px;
  623. color: #909399;
  624. padding: 10rpx 0 20rpx 0rpx;
  625. /* #ifndef APP-PLUS */
  626. box-sizing: border-box;
  627. /* #endif */
  628. }
  629. .grid-box {
  630. display: flex;
  631. align-items: center;
  632. justify-content: center;
  633. flex-direction: column;
  634. position: relative;
  635. .item-badge {
  636. position: absolute;
  637. }
  638. }
  639. .price-box {
  640. display: flex;
  641. align-content: center;
  642. justify-content: space-between;
  643. // padding: 12px;
  644. .price-item {
  645. width: 50%;
  646. padding: 12px;
  647. display: flex;
  648. flex-direction: column;
  649. align-items: center;
  650. justify-content: center;
  651. .price-name {
  652. font-size: 28rpx;
  653. font-weight: 400;
  654. line-height: 42rpx;
  655. color: rgba(102, 102, 102, 1);
  656. }
  657. .price-data {
  658. font-size: 48rpx;
  659. font-weight: 400;
  660. line-height: 72rpx;
  661. color: rgba(51, 51, 51, 1);
  662. }
  663. .grid-min-price {
  664. font-size: 24rpx;
  665. font-weight: 400;
  666. line-height: 36rpx;
  667. color: rgba(153, 153, 153, 1);
  668. }
  669. }
  670. }
  671. .status-card {
  672. display: grid;
  673. grid-template-columns: repeat(3, 1fr);
  674. gap: 48rpx;
  675. /* 网格项之间的间距 */
  676. .status-card-item {
  677. display: flex;
  678. align-items: center;
  679. justify-content: center;
  680. flex-direction: column;
  681. .grid-img-box {
  682. padding: 35rpx;
  683. border-radius: 50%;
  684. background: rgba(249, 250, 251, 1);
  685. display: flex;
  686. align-items: center;
  687. justify-content: center;
  688. margin-bottom: 18rpx;
  689. }
  690. .grid-text {
  691. font-size: 28rpx;
  692. font-weight: 400;
  693. line-height: 42rpx;
  694. color: rgba(51, 51, 51, 1);
  695. }
  696. }
  697. <<<<<<< HEAD
  698. }
  699. .count-card {
  700. .count-list {
  701. display: grid;
  702. grid-template-columns: repeat(4, 1fr);
  703. /* 3 列,每列等宽 */
  704. gap: 32rpx;
  705. /* 网格项之间的间距 */
  706. .count-item {
  707. display: flex;
  708. flex-direction: column;
  709. align-items: center;
  710. justify-content: center;
  711. .count-item-text {
  712. font-size: 28rpx;
  713. font-weight: 400;
  714. line-height: 42rpx;
  715. color: rgba(102, 102, 102, 1);
  716. }
  717. =======
  718. .service-list {
  719. padding-bottom: 12px;
  720. }
  721. .grid-text {
  722. font-size: 14px;
  723. color: #909399;
  724. padding: 10rpx 0 20rpx 0rpx;
  725. /* #ifndef APP-PLUS */
  726. box-sizing: border-box;
  727. /* #endif */
  728. }
  729. .grid-box {
  730. display: flex;
  731. align-items: center;
  732. justify-content: center;
  733. flex-direction: column;
  734. position: relative;
  735. .item-badge {
  736. position: absolute;
  737. }
  738. }
  739. .price-box {
  740. display: flex;
  741. align-content: center;
  742. justify-content: space-between;
  743. // padding: 12px;
  744. .price-item {
  745. width: 50%;
  746. padding: 12px;
  747. .price-name {
  748. font-size: 16px;
  749. font-weight: 700;
  750. line-height: 23.17px;
  751. color: rgba(51, 51, 51, 1);
  752. margin-bottom: 12px;
  753. }
  754. .price-data {
  755. font-size: 20px;
  756. font-weight: 700;
  757. line-height: 23.44px;
  758. color: rgba(51, 51, 51, 1);
  759. }
  760. .grid-min-price {
  761. font-size: 12px;
  762. font-weight: 500;
  763. line-height: 17.38px;
  764. color: rgba(153, 153, 153, 1);
  765. margin-top: 4px;
  766. }
  767. }
  768. .price-item:first-child {
  769. border-right: 1px solid #dcdfe6;
  770. }
  771. }
  772. }
  773. .rate-box {
  774. display: flex;
  775. align-items: center;
  776. justify-content: space-between;
  777. .rate-left {
  778. font-size: 14px;
  779. font-weight: 500;
  780. letter-spacing: 0px;
  781. line-height: 20.27px;
  782. color: rgba(0, 0, 0, 1);
  783. display: flex;
  784. align-items: center;
  785. justify-content: left;
  786. flex: 1;
  787. }
  788. .rate-rigth {
  789. font-size: 14px;
  790. font-weight: 500;
  791. letter-spacing: 0px;
  792. line-height: 20.27px;
  793. color: rgba(0, 0, 0, 1);
  794. .rate-count {
  795. color: rgba(237, 123, 47, 1);
  796. >>>>>>> 3e2be9f (fetch:详情tabs/用户新增地址)
  797. }
  798. }
  799. }
  800. .rate-card {
  801. .rate-list {
  802. display: flex;
  803. align-items: center;
  804. .rate-box {
  805. display: flex;
  806. flex-direction: column;
  807. align-items: center;
  808. .rate-count {
  809. font-size: 64rpx;
  810. font-weight: 400;
  811. line-height: 96rpx;
  812. color: rgba(51, 51, 51, 1);
  813. }
  814. .rate-text {
  815. font-size: 28rpx;
  816. font-weight: 400;
  817. line-height: 42rpx;
  818. color: rgba(102, 102, 102, 1);
  819. }
  820. }
  821. }
  822. }
  823. }
  824. <<<<<<< HEAD
  825. }
  826. .mine-card {
  827. border-radius: 24rpx;
  828. background: rgba(255, 255, 255, 1);
  829. box-shadow: 0rpx 0rpx 0rpx rgba(0, 0, 0, 0), 0rpx 0rpx 0rpx rgba(0, 0, 0, 0), 0rpx 4rpx 16rpx rgba(0, 0, 0, 0.05);
  830. margin-bottom: 16rpx;
  831. padding: 40rpx;
  832. }
  833. .count-title {
  834. font-size: 32rpx;
  835. font-weight: 400;
  836. line-height: 48rpx;
  837. color: rgba(51, 51, 51, 1);
  838. margin-bottom: 32rpx;
  839. }
  840. =======
  841. >>>>>>> 3e2be9f (fetch:详情tabs/用户新增地址)
  842. </style>