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

163 lines
3.0 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. <template>
  2. <view class="page">
  3. <navbar title="个人中心" />
  4. <view class="head">
  5. <view class="headImage">
  6. <image src="" mode=""></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. import tabber from '@/components/base/tabbar.vue'
  71. export default {
  72. components: {
  73. tabber,
  74. },
  75. computed: {
  76. },
  77. data() {
  78. return {
  79. show: false,
  80. }
  81. },
  82. methods: {
  83. }
  84. }
  85. </script>
  86. <style scoped lang="scss">
  87. .page {
  88. padding-bottom: 200rpx;
  89. min-height: 100vh;
  90. background-color: #FFFDF6;
  91. .line{
  92. margin: 30rpx;
  93. background-color: #fff;
  94. border-radius: 30rpx;
  95. overflow: hidden;
  96. box-shadow: 0 0 10rpx 10rpx #00000007;
  97. .uv-cell-icon{
  98. width: 60rpx;
  99. height: 60rpx;
  100. margin-right: 20rpx;
  101. }
  102. /deep/ .uv-cell__body{
  103. padding: 40rpx 30rpx;
  104. }
  105. }
  106. }
  107. image {
  108. width: 100%;
  109. height: 100%;
  110. }
  111. .head {
  112. display: flex;
  113. background-color: $uni-color;
  114. padding: 60rpx 40rpx;
  115. align-items: center;
  116. position: relative;
  117. color: #fff;
  118. .headImage {
  119. width: 120rpx;
  120. height: 120rpx;
  121. background-image: url(/static/image/center/3.png);
  122. background-size: 100% 100%;
  123. overflow: hidden;
  124. border-radius: 50%;
  125. margin-right: 40rpx;
  126. }
  127. .info {
  128. font-size: 28rpx;
  129. .name {
  130. font-size: 32rpx;
  131. margin-bottom: 10rpx;
  132. }
  133. .tips {
  134. font-size: 26rpx;
  135. }
  136. }
  137. .setting {
  138. position: absolute;
  139. right: 50rpx;
  140. top: 50rpx;
  141. }
  142. }
  143. </style>