景徳镇旅游微信小程序
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.

159 lines
2.9 KiB

9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="个人中心" />
  4. <view class="head">
  5. <view class="headImage">
  6. <image src="" mode="aspectFill"></image>
  7. </view>
  8. <view class="info">
  9. <view class="name">
  10. 微信用户
  11. </view>
  12. <view class="tips">
  13. 加入时间2024-03-03
  14. </view>
  15. </view>
  16. <view class="setting">
  17. <!-- <uv-icon name="setting" size="40rpx"></uv-icon> -->
  18. </view>
  19. </view>
  20. <view class="line">
  21. <uv-cell-group>
  22. <!-- 我的收藏 -->
  23. <uv-cell icon="setting-fill" title="我的收藏"
  24. isLink>
  25. <template #icon>
  26. <image src="/static/image/center/1.png"
  27. class="uv-cell-icon"></image>
  28. </template>
  29. </uv-cell>
  30. <!-- 我的预约 -->
  31. <uv-cell icon="setting-fill" title="我的预约"
  32. isLink>
  33. <template #icon>
  34. <image src="/static/image/center/2.png"
  35. class="uv-cell-icon"></image>
  36. </template>
  37. </uv-cell>
  38. <!-- 我的订单 -->
  39. <uv-cell icon="setting-fill" title="我的订单"
  40. @click="$utils.navigateTo('/pages_order/order/order')"
  41. isLink>
  42. <template #icon>
  43. <image src="/static/image/center/3.png"
  44. class="uv-cell-icon"></image>
  45. </template>
  46. </uv-cell>
  47. <!-- 我的地址 -->
  48. <uv-cell icon="setting-fill" title="我的地址"
  49. @click="$utils.navigateTo('/pages_order/mine/address')"
  50. isLink>
  51. <template #icon>
  52. <image src="/static/image/center/1.png"
  53. class="uv-cell-icon"></image>
  54. </template>
  55. </uv-cell>
  56. <!-- 加入志愿者 -->
  57. <uv-cell icon="setting-fill" title="加入志愿者"
  58. isLink>
  59. <template #icon>
  60. <image src="/static/image/center/4.png"
  61. class="uv-cell-icon"></image>
  62. </template>
  63. </uv-cell>
  64. </uv-cell-group>
  65. </view>
  66. <tabber select="2" />
  67. </view>
  68. </template>
  69. <script>
  70. export default {
  71. computed: {
  72. },
  73. data() {
  74. return {
  75. show: false,
  76. }
  77. },
  78. methods: {
  79. }
  80. }
  81. </script>
  82. <style scoped lang="scss">
  83. .page {
  84. padding-bottom: 200rpx;
  85. min-height: 100vh;
  86. background-color: #FFFDF6;
  87. .line{
  88. margin: 30rpx;
  89. background-color: #fff;
  90. border-radius: 30rpx;
  91. overflow: hidden;
  92. box-shadow: 0 0 10rpx 10rpx #00000007;
  93. .uv-cell-icon{
  94. width: 60rpx;
  95. height: 60rpx;
  96. margin-right: 20rpx;
  97. }
  98. /deep/ .uv-cell__body{
  99. padding: 40rpx 30rpx;
  100. }
  101. }
  102. }
  103. image {
  104. width: 100%;
  105. height: 100%;
  106. }
  107. .head {
  108. display: flex;
  109. background-color: $uni-color;
  110. padding: 60rpx 40rpx;
  111. align-items: center;
  112. position: relative;
  113. color: #fff;
  114. .headImage {
  115. width: 120rpx;
  116. height: 120rpx;
  117. background-image: url(/static/image/center/3.png);
  118. background-size: 100% 100%;
  119. overflow: hidden;
  120. border-radius: 50%;
  121. margin-right: 40rpx;
  122. }
  123. .info {
  124. font-size: 28rpx;
  125. .name {
  126. font-size: 32rpx;
  127. margin-bottom: 10rpx;
  128. }
  129. .tips {
  130. font-size: 26rpx;
  131. }
  132. }
  133. .setting {
  134. position: absolute;
  135. right: 50rpx;
  136. top: 50rpx;
  137. }
  138. }
  139. </style>