Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

index.vue 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <view class="m_contents" style="margin:0 30rpx">
  3. <view class="field" style="margin-top:20rpx" @click="gotoPage">
  4. <view class="left">
  5. <image :src="`${$imgUrl}search/car.png`"></image>
  6. </view>
  7. <view class="right">
  8. <text>历史用户申请</text>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script setup>
  14. import { navTo } from '@/utils/utils';
  15. const gotoPage = ()=>{
  16. navTo("/subpackage/personal-center/old-user")
  17. }
  18. </script>
  19. <style>
  20. page {
  21. background: #eef7f7;
  22. }
  23. .m_contents .title {
  24. padding: 30rpx 0;
  25. background: #ffffff;
  26. text-align: center;
  27. }
  28. .title .fee {
  29. margin-top: 15rpx;
  30. font-size: 48rpx;
  31. color: #f95355;
  32. }
  33. .m_contents .field {
  34. position: relative;
  35. display: flex;
  36. background: #FFFFFF;
  37. padding:30rpx;
  38. align-items: center;
  39. border-radius: 16rpx;
  40. /* border-bottom: 1px solid #dddddd; */
  41. color: #040404;
  42. }
  43. .field .left {
  44. width: 60rpx;
  45. height: 60rpx;
  46. margin-right: 20rpx;
  47. }
  48. .field image {
  49. width: 100%;
  50. height: 100%;
  51. }
  52. .m_contents .field::after {
  53. content: " ";
  54. display: inline-block;
  55. width: 16rpx;
  56. height: 16rpx;
  57. position: absolute;
  58. top: 50%;
  59. right: 34rpx;
  60. border-width: 4rpx 4rpx 0 0;
  61. border-color: #bbbbbb;
  62. border-style: solid;
  63. transform: translateY(-50%) matrix(0.71, 0.71, -.71, 0.71, 0, 0);
  64. }
  65. </style>