RecordCard.vue
927 字节
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
<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>