Authored by 肖亚东

验收问题修改

... ... @@ -4,7 +4,7 @@
<view>打开微信搜索去添加吧~</view>
</view> -->
<block wx:if="{{!_text}}">
<view class="modal-mask"></view>
<view class="modal-mask" bindtap="onConfirm"></view>
<image class="modal-image" src="../images/WXTC@2x.png">
<view class="confirm" bindtap="onConfirm"></view>
</image>
... ...
... ... @@ -23,7 +23,7 @@
抽奖价 ¥
<text class="lucky">0</text>
</view>
<view class="product_price">原价:<text class="line">{{product.price}}</text></view>
<view class="product_price"><text class="line">{{product.price}}</text></view>
</view>
<view wx:if="{{product.status !== 2 && product.start_time}}" class="product_time">{{helper.formatTime(product.start_time,
product.end_time)}}
... ...
... ... @@ -13,21 +13,21 @@
font-size: 28rpx;
font-weight: bold;
word-break:break-all;
color: #444444;
color: #222222;
}
.product_lucky_bg {
display: flex;
flex-direction: row;
align-items: baseline;
justify-content: space-between;
justify-content: center;
margin-left: 32rpx;
margin-right: 32rpx;
}
.product_price {
color: #B0B0B0;
font-size: 24rpx;
font-size: 32rpx;
font-weight: bold;
margin-left: 20rpx;
... ... @@ -109,7 +109,8 @@
.product_lucky {
color: #D0021B;
font-size: 24rpx;
font-family: PingFangSC-Semibold;
font-family: PingFangSC-Medium;
font-weight: bold;
display: flex;
flex-direction: row;
align-items: baseline;
... ...
... ... @@ -72,7 +72,7 @@
.product_lucky {
color: #D0021B;
font-size: 24rpx;
font-family: PingFangSC-Semibold;
font-family: PingFangSC-Medium;
display: flex;
flex-direction: row;
align-items: baseline;
... ...
... ... @@ -13,7 +13,7 @@ Component({
ready: function() {
let animation = wx.createAnimation({
duration: 400,
timingFunction: 'ease',
timingFunction: 'linear',
});
//放大缩小循环动画
var next = true;
... ... @@ -22,7 +22,7 @@ Component({
animation.scale(1.05).step()
next = !next;
} else {
animation.scale(1).step()
animation.scale(1).step({duration:250})
next = !next;
}
this.setData({
... ...