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

168 lines
3.3 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
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. @click="$utils.navigateTo('/pages_order/mine/collect')"
  25. isLink>
  26. <template #icon>
  27. <image src="/static/image/center/1.png"
  28. class="uv-cell-icon"></image>
  29. </template>
  30. </uv-cell>
  31. <!-- 我的预约 -->
  32. <uv-cell icon="setting-fill" title="我的预约"
  33. @click="$utils.navigateTo('/pages_order/mine/subscribe')"
  34. isLink>
  35. <template #icon>
  36. <image src="/static/image/center/2.png"
  37. class="uv-cell-icon"></image>
  38. </template>
  39. </uv-cell>
  40. <!-- 我的订单 -->
  41. <uv-cell icon="setting-fill" title="我的订单"
  42. @click="$utils.navigateTo('/pages_order/order/order')"
  43. isLink>
  44. <template #icon>
  45. <image src="/static/image/center/3.png"
  46. class="uv-cell-icon"></image>
  47. </template>
  48. </uv-cell>
  49. <!-- 我的地址 -->
  50. <uv-cell icon="setting-fill" title="我的地址"
  51. @click="$utils.navigateTo('/pages_order/mine/address')"
  52. isLink>
  53. <template #icon>
  54. <image src="/static/image/center/1.png"
  55. class="uv-cell-icon"></image>
  56. </template>
  57. </uv-cell>
  58. <!-- 购物车 -->
  59. <uv-cell icon="setting-fill" title="购物车"
  60. @click="$utils.navigateTo('/pages_order/mine/cart')"
  61. isLink>
  62. <template #icon>
  63. <image src="/static/image/center/1.png"
  64. class="uv-cell-icon"></image>
  65. </template>
  66. </uv-cell>
  67. <!-- 加入志愿者 -->
  68. <uv-cell icon="setting-fill" title="加入志愿者"
  69. isLink @click="$utils.navigateTo('/pages_order/mine/volunteer')">
  70. <template #icon>
  71. <image src="/static/image/center/4.png"
  72. class="uv-cell-icon"></image>
  73. </template>
  74. </uv-cell>
  75. </uv-cell-group>
  76. </view>
  77. <tabber select="2" />
  78. </view>
  79. </template>
  80. <script>
  81. export default {
  82. computed: {
  83. },
  84. data() {
  85. return {
  86. show: false,
  87. }
  88. },
  89. methods: {
  90. }
  91. }
  92. </script>
  93. <style scoped lang="scss">
  94. .page {
  95. .line{
  96. margin: 30rpx;
  97. background-color: #fff;
  98. border-radius: 30rpx;
  99. overflow: hidden;
  100. box-shadow: 0 0 10rpx 10rpx #00000007;
  101. .uv-cell-icon{
  102. width: 60rpx;
  103. height: 60rpx;
  104. margin-right: 20rpx;
  105. }
  106. /deep/ .uv-cell__body{
  107. padding: 40rpx 30rpx;
  108. }
  109. }
  110. }
  111. image {
  112. width: 100%;
  113. height: 100%;
  114. }
  115. .head {
  116. display: flex;
  117. background-color: $uni-color;
  118. padding: 60rpx 40rpx;
  119. align-items: center;
  120. position: relative;
  121. color: #fff;
  122. .headImage {
  123. width: 120rpx;
  124. height: 120rpx;
  125. background-image: url(/static/image/center/3.png);
  126. background-size: 100% 100%;
  127. overflow: hidden;
  128. border-radius: 50%;
  129. margin-right: 40rpx;
  130. }
  131. .info {
  132. font-size: 28rpx;
  133. .name {
  134. font-size: 32rpx;
  135. margin-bottom: 10rpx;
  136. }
  137. .tips {
  138. font-size: 26rpx;
  139. }
  140. }
  141. .setting {
  142. position: absolute;
  143. right: 50rpx;
  144. top: 50rpx;
  145. }
  146. }
  147. </style>