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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
| <script setup>
| const props = defineProps({
| img: {
| type: String,
| default: ''
| },
| title: {
| type: String,
| default: ''
| },
| subTitle: {
| type: String,
| default: ''
| },
| price: {
| type: Number,
| default: 0
| },
| type: {
| type: String,
| default: 'line' // line, rect
| }
| })
| </script>
| <template>
| <view class="card" :class="type" @click="$emit('click')">
| <image class="img" :src="img" />
| <view class="content">
| <view class="title">{{ title }}</view>
| <view class="subTitle">{{ subTitle }}</view>
| <view class="price">¥{{ price }}</view>
| </view>
| </view>
| </template>
| <style lang="scss" scoped>
| .card {
| padding: 0;
| border-radius: 10px;
| background-color: #ffffff;
| width: 700rpx;
| padding: 20rpx;
| margin: 10rpx;
| position: relative;
|
| .img {
| height: 200rpx;
| width: 200rpx;
| }
| }
|
| .line {
| display: flex;
|
| .content {
| height: 200rpx;
| padding-left: 20rpx;
|
| .title {
| width: 400rpx;
| font-size: 35rpx;
| }
|
| .subTitle {
| width: 400rpx;
| height: 90rpx;
| margin-top: 10rpx;
| font-size: 20rpx;
| color: rgb(87, 87, 87);
| line-height: 30rpx;
| display: -webkit-box;
| -webkit-box-orient: vertical;
| -webkit-line-clamp: 3;
| overflow: hidden;
| text-overflow: ellipsis;
| }
|
| .price {
| font-size: 40rpx;
| color: red;
| width: 400rpx;
| }
| }
| }
|
| .rect {
| border-radius: 10px;
| box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
| width: 350rpx;
| padding: 0;
| margin: 10rpx;
| display: inline-block;
|
| .img {
| border-radius: 10px 10px 0 0;
| height: 350rpx;
| width: 350rpx;
| }
|
| .content {
| padding: 0 20rpx;
| margin: 0;
| width: 100%;
| display: flex;
| flex-direction: column;
| justify-content: space-between;
|
| .title {
| width: 330rpx;
| font-size: 25rpx;
| }
|
| .subTitle {
| width: 330rpx;
| font-size: 20rpx;
| color: rgb(87, 87, 87);
| }
|
| .price {
| font-size: 30rpx;
| color: red;
| width: 100%;
| }
| }
| }
| </style>
|
|