pointsDetail.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <template>
  2. <view>
  3. <view class="bg-img flex justify-center align-center" style="background-image: url('/static/bgimg.png');height: 310upx;">
  4. <view class="text-center" style="margin-top: 80upx;">
  5. <view style="font-size: 24upx;font-family: PingFang SC;font-weight: 400;color: #cfc8f9;">可用积分</view>
  6. <view style="font-size: 54upx;font-family: PingFang SC;font-weight: 800;color: #ffffff;">205</view>
  7. </view>
  8. </view>
  9. <block v-for="(item, index) in pointsList" :key="index">
  10. <view class="flex justify-between align-center container">
  11. <view class="padding">
  12. <view class="type">{{item.type}}</view>
  13. <view class="time">{{item.time}}</view>
  14. </view>
  15. <view class="padding">
  16. <view class="points">{{item.points}} 积分</view>
  17. </view>
  18. </view>
  19. </block>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. pointsList: [
  27. {type: '每日签到', time: '2021-05-18 9:39', points: '+1'},
  28. {type: '立白助力礼包', time: '2021-05-18 9:39', points: '+168'},
  29. {type: '积分消费', time: '2021-05-18 9:39', points: '-80'},
  30. {type: '每日签到', time: '2021-05-18 9:39', points: '+1'},
  31. {type: '每日签到', time: '2021-05-18 9:39', points: '+1'},
  32. {type: '每日签到', time: '2021-05-18 9:39', points: '+1'},
  33. {type: '每日签到', time: '2021-05-18 9:39', points: '+1'}
  34. ]
  35. }
  36. },
  37. methods: {
  38. }
  39. }
  40. </script>
  41. <style>
  42. .container {
  43. background-color: #FFFFFF;
  44. border-radius: 10upx;
  45. margin: 20upx;
  46. }
  47. .type {
  48. font-size: 32upx;
  49. font-family: PingFang SC;
  50. font-weight: bold;
  51. margin-bottom: 20upx;
  52. color: #111111;
  53. }
  54. .time {
  55. font-size: 24upx;
  56. font-family: PingFang SC;
  57. font-weight: bold;
  58. color: #9E9E9E;
  59. }
  60. .points {
  61. font-size: 28upx;
  62. font-family: PingFang SC;
  63. font-weight: bold;
  64. color: #111111;
  65. }
  66. </style>