wangzhibo
4 天以前 10595d8632f959d0954d1939243196f4eed02372
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
<template>
    <cl-page :padding="20">
        <cl-card label="基础用法">
            <cl-row :gutter="20">
                <cl-col :span="4" @tap="onTap">
                    <view class="item">4</view>
                </cl-col>
 
                <cl-col :span="12">
                    <view class="item">12</view>
                </cl-col>
 
                <cl-col :span="8">
                    <view class="item">8</view>
                </cl-col>
            </cl-row>
 
            <cl-row :gutter="20">
                <cl-col :span="8">
                    <view class="item">8</view>
                </cl-col>
 
                <cl-col :span="8">
                    <view class="item">8</view>
                </cl-col>
 
                <cl-col :span="8">
                    <view class="item">8</view>
                </cl-col>
            </cl-row>
 
            <cl-row :gutter="20">
                <cl-col :span="14">
                    <view class="item">14</view>
                </cl-col>
 
                <cl-col :span="4">
                    <view class="item">4</view>
                </cl-col>
 
                <cl-col :span="6">
                    <view class="item">6</view>
                </cl-col>
            </cl-row>
 
            <cl-row :gutter="20" type="flex" justify="space-between">
                <cl-col :span="6">
                    <view class="item">6</view>
                </cl-col>
 
                <cl-col :span="6">
                    <view class="item">6</view>
                </cl-col>
            </cl-row>
        </cl-card>
    </cl-page>
</template>
 
<script setup lang="ts">
function onTap() {
    console.log("tap");
}
</script>
 
<style lang="scss" scoped>
.item {
    background-color: #f6f7fa;
    text-align: center;
    font-size: 28rpx;
    height: 60rpx;
    line-height: 60rpx;
    margin: 10rpx 0;
}
</style>