RecordCard.vue 927 字节
<template>
	<view class="recordCard">
		<view class="left">
			<image style="width:100%;" src="https://cbu01.alicdn.com/img/ibank/2016/759/755/3743557957_600065101.jpg" mode="widthFix"></image>
		</view>
		<view class="right">
			<view class="col-3d l-h-42 f-32 u-line-1">今麦郎熟水凉白开饮用水</view>
			<text class="col-9 f-28 l-h-38">500ml</text>
			<view class="edit">
				<view style="color: #E20000;">入库:1000</view>
				<text class="col-9">2024-04-10</text>
			</view>
		</view>
	</view>
</template>

<script>
</script>

<style lang="scss" scoped>
.recordCard{
	display: flex;
	align-items: center;
	gap: 20rpx;
	padding: 40rpx 30rpx;
	border-bottom: 2rpx solid #eee;
	.left{
		width: 80rpx;
		height: 80rpx;
		overflow: hidden;
		border-radius: 8rpx;
	}
	.right{
		position: relative;
		flex: 1;
		.edit{
			position: absolute;
			top: 50%;
			right: 0;
			transform: translateY(-50%);
		}
	}
}
</style>