style: 💄 修改Im页面样式

This commit is contained in:
Yer
2023-07-04 14:02:04 +08:00
parent 06b5a9d7f1
commit 94f1da349a
3 changed files with 53 additions and 81 deletions

View File

@@ -22,7 +22,7 @@
<div class="point-list">
<view class="point-item" v-for="(item, index) in pointList" :key="index">
<view>
<view>{{ item.content }}</view>
<view class="point-label">{{ item.content }}</view>
<view>{{ item.createTime}}</view>
</view>
<view :class="[item.pointType == 'INCREASE' ? 'plus' : 'reduce']"><span>{{item.pointType == "INCREASE" ? '+' : '-'}}</span>{{ item.variablePoint }}</view>
@@ -220,5 +220,10 @@ export default {
.point {
font-size: 56rpx;
}
}
.point-label{
font-weight: bold;
margin-bottom: 10rpx;
}
</style>