Authored by 张文文

ui fix review by lea guo

... ... @@ -104,4 +104,9 @@ export default {
z-index: 2;
}
.cube-safe-area-pb {
border-top-left-radius: 25px;
border-top-right-radius: 25px;
}
</style>
... ...
... ... @@ -35,7 +35,7 @@ export default {
.news-list {
.news-list-title {
margin-top: 60px;
font-size: 40px;
font-size: 32px;
font-weight: bold;
color: #000000;
}
... ...
... ... @@ -40,7 +40,7 @@ export default {
overflow: hidden;
margin-top: 60px;
background: #F2F2F2;
border-radius: 16px;
border-radius: 32px;
padding: 40px 0;
.tab-item {
width: 33%;
... ...
<template>
<div class="coupon-wrapper" @click="onClick">
<div class="title">优惠券<span class="desc">{{data.desc}}</span></div>
<div><span class="red">{{data.coupon_amount_str}}</span><i class="iconfont iconright"></i></div>
<div><span class="red">{{data.coupon_amount_str}}</span><i class="iconfont iconright icon-right"></i></div>
</div>
</template>
... ... @@ -49,4 +49,8 @@ export default {
margin-right: 10px;
}
.icon-right {
color: #999;
}
</style>
... ...
<template>
<div class="coupon-wrapper" @click="onClick">
<div class="title">促销<span class="desc">{{data.title}}</span></div>
<div><span class="red">{{data.amount}}</span><i class="iconfont iconright"></i></div>
<div><span class="red">{{data.amount}}</span><i class="iconfont iconright icon-right"></i></div>
</div>
</template>
... ... @@ -49,4 +49,8 @@ export default {
margin-right: 10px;
}
.icon-right {
color: #999;
}
</style>
... ...
... ... @@ -401,7 +401,7 @@ export default {
.scan-btn {
font-size: 40px;
color: #444;
color: #002B47;
font-weight: 500;
margin-left: 10px;
}
... ...
... ... @@ -107,8 +107,8 @@ export default {
.cube-action-sheet-panel {
background: #fff;
border-top-left-radius: 20px 24px;
border-top-right-radius: 20px 24px;
border-top-left-radius: 20px 20px;
border-top-right-radius: 20px 20px;
&:after {
content: "";
... ...
... ... @@ -543,6 +543,7 @@ export default {
h2 {
font-size: 36px;
font-weight: bold;
line-height: 50px;
padding: 20px 0 0;
margin: 0 40px;
... ...