commentCard.vue 972 字节
<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>