You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

79 lines
2.2 KiB

<script setup>
/**
* 复选框
* @description
*
* @property {String} title 显示的文字
*/
import {inject} from "vue";
//子组件单独props
const props = defineProps({
checkData:{type:[Object,Array],default:[]},
labelSize:{type:[String,Number],default:'26rpx'},
size:{type:[String,Number],default:'32rpx'},
activeColor:{type:String,default:'#578CF5'},
inActiveColor:{type:String,default:'transparent'},
borderInActiveColor:{type:String,default:'#999'},
labelStyle:{type:Object,default:{}},
label:{type:String,default:''},
value:{type:Number,default:''}
});
const parent = inject('checkboxGroup');
//这里可以单独使用单个checkbox作为是否同意协议
const emit = parent.emit || defineEmits(['change','update:modelValue']);
const checked = parent.checked;
//选中处理
function checkedHandle(label,value){
const posIndex = checked.value.indexOf(value)
if(posIndex !== -1){
checked.value.splice(posIndex,1);
}else{
checked.value.push(value);
}
//当前选中数组
emit('update:modelValue',checked.value);
//label 标签 value 值 checked 选中状态 选中|取消
emit('change',{label:label,value:value,checked:(posIndex === -1)});
}
function boxStyle(param){
return parent.boxStyle(param);
}
</script>
<template>
<view class="m-checkbox-group">
<view class="m-checkbox">
<view class="item row align-center" @click="checkedHandle(label,value)">
<view class="box border-box mr-1" :style="boxStyle(value)">
<slot :active="checked.indexOf(value) !== -1">
<view class="icon" :style="{backgroundColor:(checked.indexOf(value) !== -1)?activeColor:inActiveColor}"></view>
</slot>
</view>
<view class="label"><m-text :text="label" :size="labelStyle.size" :line-height="labelStyle.lingHeight" :color="labelStyle.color"></m-text></view>
</view>
</view>
</view>
</template>
<style lang="scss" scoped>
.box{
width: $m-checkbox-size;
height: $m-checkbox-size;
border:3rpx solid;
border-radius:20%;
&.circle{
border-radius:50%;
}
.icon{
width:100%;
height:100%;
border-radius:50%;
background:transparent;
}
}
</style>