You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.vue 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <view class='content'>
  3. <view class="money_wrap">
  4. <view>账户余额</view>
  5. <view>¥0</view>
  6. </view>
  7. <view class='item_wrap'>
  8. <view class='item'>
  9. <view class='left_content'>
  10. <image src="http://222.85.144.89:19002/default-bucket/image/index/item-1.png" mode=""></image>
  11. <view>去圈层</view>
  12. </view>
  13. <u-icon name="arrow-right" color='#ccc'></u-icon>
  14. </view>
  15. <view class='item'>
  16. <view class='left_content'>
  17. <image src="http://222.85.144.89:19002/default-bucket/image/index/item-1.png" mode=""></image>
  18. <view>消费明细</view>
  19. </view>
  20. <u-icon name="arrow-right" color='#ccc'></u-icon>
  21. </view>
  22. <view class='item'>
  23. <view class='left_content'>
  24. <image src="http://222.85.144.89:19002/default-bucket/image/index/item-1.png" mode=""></image>
  25. <view>充值明细</view>
  26. </view>
  27. <u-icon name="arrow-right" color='#ccc'></u-icon>
  28. </view>
  29. </view>
  30. <view class='item item_wrap' @click='navTo(`/subpackage/after-sale/account-recharge/login`)'>
  31. <view class='left_content'>
  32. <image src="http://222.85.144.89:19002/default-bucket/image/index/item-1.png" mode=""></image>
  33. <view>退出</view>
  34. </view>
  35. </view>
  36. </view>
  37. </template>
  38. <script setup lang='ts'>
  39. import { navTo } from "@/utils/utils";
  40. </script>
  41. <style scoped>
  42. .content{
  43. background-color:rgb(239,239,239);
  44. width:100%;
  45. height:100vh;
  46. overflow: hidden;
  47. }
  48. .money_wrap{
  49. background-color:white;
  50. padding: 8rpx 0 16rpx 0;
  51. }
  52. .money_wrap>view:first-child{
  53. text-align: center;
  54. font-size: 30rpx;
  55. /* margin-top: 10rpx; */
  56. }
  57. .money_wrap>view:last-child{
  58. text-align: center;
  59. font-size: 44rpx;
  60. margin-top: 14rpx;
  61. color:red;
  62. }
  63. .item_wrap{
  64. margin-top: 26rpx;
  65. }
  66. .item{
  67. background-color:white;
  68. border-bottom:1rpx solid rgb(239,239,239);
  69. display:flex;
  70. font-size: 30rpx;
  71. padding:34rpx 30rpx;
  72. align-items: center;
  73. justify-content: space-between;
  74. }
  75. .item image{
  76. width:60rpx;
  77. height:60rpx;
  78. margin-right:30rpx;
  79. }
  80. .left_content{
  81. display:flex;
  82. align-items: center;
  83. }
  84. </style>