commentCard.vue
972 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<template>
<view class="commentCard">
<view class="u-line-1 title">客户对产品意向很高,希望价格优惠...</view>
<view class="line-row">
<view class="line-item">
<u-icon name="clock" color="#231F20" size="18"></u-icon>
<text class="content">2024-09-09</text>
</view>
<view class="line-item">
<u-icon name="order" color="#231F20" size="18"></u-icon>
<text class="content">admin</text>
</view>
</view>
</view>
</template>
<script setup>
</script>
<style lang="scss" scoped>
.commentCard{
padding: 30rpx 22rpx 40rpx;
background: #EFF1FF;
border-radius: 12rpx;
.title{
color: #3D3D3D;
font-size: 28rpx;
line-height: 38rpx;
}
.line-row{
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 20rpx;
.line-item{
display: flex;
align-items: center;
.content{
color: #3D3D3D;
font-size: 24rpx;
line-height: 32rpx;
margin-left: 20rpx;
}
}
}
}
</style>