Commit 9ce5def8 by 高淑倩

modify: 积分流水样式

parent f90082f3
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<view class="detail-title">{{item.changeTypeDesc}}</view> <view class="detail-title">{{item.changeTypeDesc}}</view>
<view class="detail-time">{{item.createTime}}</view> <view class="detail-time">{{item.createTime}}</view>
</view> </view>
<view class="detail-num">{{item.operation*item.changeValue}}</view> <view class="detail-num {{item.operation==true ? 'add' : 'less'}}">{{item.operation*item.changeValue}}</view>
</view> </view>
<no-more wx:if="{{noMore}}"/> <no-more wx:if="{{noMore}}"/>
</view> </view>
......
...@@ -74,10 +74,15 @@ ...@@ -74,10 +74,15 @@
} }
.detail-num{ .detail-num{
font-size: 25rpx; font-size: 25rpx;
color: #fc921e;
text-align: left; text-align: left;
width:26%; width:26%;
} }
.add {
color: #fc921e;
}
.less{
color: #333;
}
.detail-integral{ .detail-integral{
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment