youhui.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <view class="youhui">
  3. <view class="list u-flex" v-for="(item,index) in list1" :key="index">
  4. <view class="left">
  5. <text class="font-left">¥</text>
  6. <text class="font-right">{{item.amount.slice(0,-3)}}</text>
  7. </view>
  8. <view class="concent">
  9. <text class="top">{{item.title}}</text>
  10. <view class="bottom">
  11. 满{{item.low_amount.slice(0,-3)}}万可用
  12. </view>
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. list1:[]
  22. }
  23. },
  24. onLoad() {
  25. this.list()
  26. },
  27. computed: {
  28. },
  29. onShow() {
  30. },
  31. methods: {
  32. list() {
  33. this.$u.post('/api/Member/coupon_list').then(res => {
  34. this.list1 = res.data
  35. // setTimeout(() => {
  36. // uni.reLaunch({
  37. // url: "/pages/mine/youhui"
  38. // })
  39. // }, 800)
  40. })
  41. }
  42. }
  43. }
  44. </script>
  45. <style lang="scss" scoped>
  46. .youhui {
  47. padding: 0 20rpx;
  48. background: #F5F5F5;
  49. height: 100vh;
  50. border: 2rpx solid rgba(0, 0, 0, 0);
  51. .list {
  52. padding: 32rpx 0 30rpx 28rpx;
  53. background: #FFFFFF;
  54. border-radius: 16rpx;
  55. margin-top: 20rpx;
  56. .left {
  57. font-family: JDZhengHT-Regular, JDZhengHT;
  58. font-weight: 400;
  59. color: #1F7EFF;
  60. margin-right: 28rpx;
  61. width: 240rpx;
  62. .font-left {
  63. font-size: 34rpx;
  64. }
  65. .font-right {
  66. font-size: 60rpx;
  67. }
  68. }
  69. }
  70. }
  71. .concent {
  72. border-left: 2rpx solid #B2B2B2;
  73. .top {
  74. font-size: 30rpx;
  75. font-family: PingFangSC-Medium, PingFang SC;
  76. font-weight: 500;
  77. color: #222222;
  78. margin-left: 18rpx;
  79. }
  80. .bottom {
  81. margin-left: 32rpx;
  82. font-size: 24rpx;
  83. font-family: PingFangSC-Regular, PingFang SC;
  84. font-weight: 400;
  85. color: #1F7EFF;
  86. margin-top: 18rpx;
  87. }
  88. }
  89. </style>