VIP.vue 858 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <view class="flexe" style="padding: 20rpx;">
  3. <view class="" style="font-size: 0;">
  4. <image class="img" src="https://img0.baidu.com/it/u=4228009393,712063118&fm=253&fmt=auto&app=138&f=JPEG?w=667&h=500" mode=""></image>
  5. </view>
  6. <view class="rigth">
  7. <view class="title">
  8. 黄金会员
  9. </view>
  10. <view class="jifen">
  11. 我的积分 : 100
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script setup>
  17. import {
  18. ref,
  19. reactive
  20. } from 'vue'
  21. import {
  22. HTTP
  23. } from '@/api/http.js'
  24. import {
  25. onShow,
  26. onLoad
  27. } from '@dcloudio/uni-app'
  28. import {
  29. jieqiFn
  30. } from '@/config' //返回节气样式(a,b),a是节气名称,b是类型,1是返回背景颜色,2是返回边框颜色,3是返回字体颜色
  31. </script>
  32. <style lang="scss" scoped>
  33. .img{
  34. width: 200rpx;
  35. height: 100rpx;
  36. margin-right: 16rpx;
  37. }
  38. .rigth{
  39. }
  40. </style>