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

156 lines
2.9 KiB

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 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. .line{
  85. margin: 30rpx;
  86. background-color: #fff;
  87. border-radius: 30rpx;
  88. overflow: hidden;
  89. box-shadow: 0 0 10rpx 10rpx #00000007;
  90. .uv-cell-icon{
  91. width: 60rpx;
  92. height: 60rpx;
  93. margin-right: 20rpx;
  94. }
  95. /deep/ .uv-cell__body{
  96. padding: 40rpx 30rpx;
  97. }
  98. }
  99. }
  100. image {
  101. width: 100%;
  102. height: 100%;
  103. }
  104. .head {
  105. display: flex;
  106. background-color: $uni-color;
  107. padding: 60rpx 40rpx;
  108. align-items: center;
  109. position: relative;
  110. color: #fff;
  111. .headImage {
  112. width: 120rpx;
  113. height: 120rpx;
  114. background-image: url(/static/image/center/3.png);
  115. background-size: 100% 100%;
  116. overflow: hidden;
  117. border-radius: 50%;
  118. margin-right: 40rpx;
  119. }
  120. .info {
  121. font-size: 28rpx;
  122. .name {
  123. font-size: 32rpx;
  124. margin-bottom: 10rpx;
  125. }
  126. .tips {
  127. font-size: 26rpx;
  128. }
  129. }
  130. .setting {
  131. position: absolute;
  132. right: 50rpx;
  133. top: 50rpx;
  134. }
  135. }
  136. </style>