27 lines
460 B
Vue
27 lines
460 B
Vue
<template>
|
|
<view class="youhuiquan">
|
|
<view class="top">
|
|
优惠券详情
|
|
</view>
|
|
<view class="title">
|
|
领取优惠券
|
|
</view>
|
|
<scroll-view class="gundong" :scroll-y="true">
|
|
|
|
</scroll-view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name:"youhuiquan"
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.youhuiquan{
|
|
.gundong{
|
|
width: 100%;
|
|
height: 447rpx;
|
|
|
|
}
|
|
}
|
|
</style> |