123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <template>
- <view class="youhui">
- <view class="list u-flex" v-for="(item,index) in list1" :key="index">
- <view class="left">
- <text class="font-left">¥</text>
- <text class="font-right">{{item.amount.slice(0,-3)}}</text>
- </view>
- <view class="concent">
- <text class="top">{{item.title}}</text>
- <view class="bottom">
- 满{{item.low_amount.slice(0,-3)}}万可用
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list1:[]
- }
- },
- onLoad() {
- this.list()
- },
- computed: {
- },
- onShow() {
- },
- methods: {
- list() {
- this.$u.post('/api/Member/coupon_list').then(res => {
- this.list1 = res.data
- // setTimeout(() => {
- // uni.reLaunch({
- // url: "/pages/mine/youhui"
- // })
- // }, 800)
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .youhui {
- padding: 0 20rpx;
- background: #F5F5F5;
- height: 100vh;
- border: 2rpx solid rgba(0, 0, 0, 0);
- .list {
- padding: 32rpx 0 30rpx 28rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin-top: 20rpx;
- .left {
- font-family: JDZhengHT-Regular, JDZhengHT;
- font-weight: 400;
- color: #1F7EFF;
- margin-right: 28rpx;
- width: 240rpx;
- .font-left {
- font-size: 34rpx;
- }
- .font-right {
- font-size: 60rpx;
- }
- }
- }
- }
- .concent {
- border-left: 2rpx solid #B2B2B2;
- .top {
- font-size: 30rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #222222;
- margin-left: 18rpx;
- }
- .bottom {
- margin-left: 32rpx;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #1F7EFF;
- margin-top: 18rpx;
- }
- }
- </style>
|