|
@@ -8,7 +8,8 @@
|
|
|
|
|
|
:key="i">
|
|
|
<view class="item-message">
|
|
|
- {{item.name}}
|
|
|
+ <view>{{item.name}}</view>
|
|
|
+ <view class="billAmount">¥{{item.billAmount}}元</view>
|
|
|
</view>
|
|
|
<view class="item-time">
|
|
|
{{item.createTime}} <!-- {{item.tenantName}} -->
|
|
@@ -111,8 +112,14 @@
|
|
|
padding: 32rpx;
|
|
|
border-bottom: 1px solid rgba(244,244,244,1);
|
|
|
.item-message{
|
|
|
- line-height: 44rpx;
|
|
|
- color: rgba(51,51,51,1);
|
|
|
+ line-height: 44rpx;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ color: rgba(51,51,51,1);
|
|
|
+ .billAmount{
|
|
|
+ color: #F44336;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
.item-time{
|
|
|
color: rgb(153,153,153);
|