zhangwencui
5 天以前 d3fe17c4cc5ae2dda4e2c1cfd5c506faa74f6a0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script setup>
import MeituanCoupon from './components/meituan-coupon.vue';
import JingdongCoupon from './components/jingdong-coupon.vue';
import TaobaoCoupon from './components/taobao-coupon.vue';
</script>
<template>
    <view class="u-wrap">
        <MeituanCoupon />
        <JingdongCoupon />
        <TaobaoCoupon />
    </view>
</template>
 
<style lang="scss" scoped>
page {
    height: 100%;
    background-color: rgb(244, 244, 244);
}
 
.u-wrap {
    padding: 24rpx;
}
</style>