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
| <template>
| <view class="flex home-banner-imgs">
| <view class="flex1 m-r-5">
| <image class="p1 img100" src="https://hmy-flower.oss-cn-shanghai.aliyuncs.com/b1/b1e7dc929b53412bbea72c9ca3f9aa25%E4%BD%8D%E5%9B%BE@2x%20(1).png" ></image>
| </view>
| <view class="flex1 m-l-5">
| <image class="p2 img100" src="https://hmy-flower.oss-cn-shanghai.aliyuncs.com/86/86605e258843479f828ce6749010d791%E4%BD%8D%E5%9B%BE@2x%20(2).png"></image>
| <image class="p3 img100" src="https://hmy-flower.oss-cn-shanghai.aliyuncs.com/76/76532c632d28449a9f93a4228a7b851e%E4%BD%8D%E5%9B%BE@2x%20(3).png"></image>
| </view>
| </view>
| </template>
|
| <script>
| export default {
| data() {
| return {
|
| };
| }
| }
| </script>
|
| <style lang="scss">
| .home-banner-imgs{
| .p1{
| // width: 334rpx;
| height: 308rpx;
| width: 100%;
| }
| .p2{
| // width: 334rpx;
| width: 100%;
| height: 142rpx;
| }
| .p3{
| width: 100%;
| margin-top: 18rpx;
| // width: 334rpx;
| height: 142rpx;
| }
| }
| </style>
|
|