checkbox.uvue 4.5 KB
Newer Older
Y
init  
yurj26 已提交
1 2 3 4 5 6 7 8 9 10
<template>
    <view>
        <page-head :title="title"></page-head>
        <view class="uni-padding-wrap uni-common-mt">
            <view class="uni-title uni-common-mt">
                <text class="uni-title-text">
                    默认样式
                </text>
            </view>
            <view>
Y
yurj26 已提交
11 12 13 14 15
                <checkbox-group class="uni-flex uni-row checkbox-group" @change="testChange">
                    <checkbox value="cb" :checked="checked" :color="color" style="margin-right: 30rpx;"
                        class="checkbox cb">{{text}}</checkbox>
                    <checkbox value="cb1" style="margin-right: 30rpx;" class="checkbox cb1">未选中</checkbox>
                    <checkbox value="cb2" :disabled="disabled" class="checkbox cb2">禁用</checkbox>
Y
init  
yurj26 已提交
16 17 18 19 20 21 22 23
                </checkbox-group>
            </view>
            <view class="uni-title uni-common-mt">
                <text class="uni-title-text">
                    不同颜色和尺寸的checkbox
                </text>
            </view>
            <view>
Y
yurj26 已提交
24
                <checkbox-group class="uni-flex uni-row checkbox-group">
Y
init  
yurj26 已提交
25
                    <checkbox value="cb1" :checked="true" color="#FFCC33"
Y
yurj26 已提交
26
                        style="transform:scale(0.7); margin-right: 30rpx;" class="checkbox">选中
Y
init  
yurj26 已提交
27
                    </checkbox>
Y
yurj26 已提交
28
                    <checkbox value="cb" color="#FFCC33" style="transform:scale(0.7)" class="checkbox">未选中</checkbox>
Y
init  
yurj26 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
                </checkbox-group>
            </view>
        </view>

        <view class="uni-padding-wrap">
            <view class="uni-title uni-common-mt">
                <text class="uni-title-text">
                    推荐展示样式
                </text>
                <text class="uni-subtitle-text">
                    使用 uni-list 布局
                </text>
            </view>
        </view>
        <view class="uni-list">
Y
yurj26 已提交
44 45 46
            <checkbox-group @change="checkboxChange" class="checkbox-group">
                <checkbox class="uni-list-cell uni-list-cell-pd checkbox" v-for="(item, index) in items"
                    :key="item.value" :value="item.value" :checked="item.checked"
Y
yurj26 已提交
47
                    :class="index < items.length - 1 ? 'uni-list-cell-line': ''">
Y
yurj26 已提交
48 49
                    {{item.name}}
                </checkbox>
Y
init  
yurj26 已提交
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
            </checkbox-group>
        </view>
    </view>
</template>
<script lang="ts">
    type ItemType = {
        value : string,
        name : string,
        checked : boolean
    }
    export default {
        data() {
            return {
                title: 'checkbox 复选框',
                items: [{
                    value: 'USA',
                    name: '美国',
                    checked: false
                },
                {
                    value: 'CHN',
                    name: '中国',
                    checked: true
                },
                {
                    value: 'BRA',
                    name: '巴西',
                    checked: false
                },
                {
                    value: 'JPN',
                    name: '日本',
                    checked: false
                },
                {
                    value: 'ENG',
                    name: '英国',
                    checked: false
                },
                {
                    value: 'FRA',
                    name: '法国',
                    checked: false
                }
Y
yurj26 已提交
94 95 96 97 98 99 100
                ] as ItemType[],

                text: '选中',
                value: [] as string[],
                disabled: true,
                checked: true,
                color: '#007aff'
Y
init  
yurj26 已提交
101 102 103
            }
        },
        methods: {
Y
yurj26 已提交
104
            checkboxChange: function (e : CheckboxGroupChangeEvent) {
Y
init  
yurj26 已提交
105
                var items = this.items,
Y
yurj26 已提交
106
                    values = e.detail.value;
Y
init  
yurj26 已提交
107
                for (var i = 0, lenI = items.length; i < lenI; ++i) {
Y
yurj26 已提交
108 109
                    const item = items[i]
                    if (values.indexOf(item.value) >= 0) {
Y
init  
yurj26 已提交
110 111 112 113 114
                        item.checked = true
                    } else {
                        item.checked = false
                    }
                }
Y
yurj26 已提交
115 116 117
            },
            testChange: function (e : CheckboxGroupChangeEvent) {
                this.value = e.detail.value
Y
init  
yurj26 已提交
118 119 120 121 122 123 124 125 126 127
            }
        }
    }
</script>

<style>
    .uni-list-cell {
        justify-content: flex-start
    }
</style>