初始化
This commit is contained in:
81
src/packages/components/form-designer/widgets/checkbox.vue
Normal file
81
src/packages/components/form-designer/widgets/checkbox.vue
Normal file
@@ -0,0 +1,81 @@
|
||||
<template>
|
||||
<view class="widget-radio">
|
||||
<view class="radio-group">
|
||||
<view
|
||||
class="radio-item"
|
||||
v-for="(item, index) in options"
|
||||
:key="index"
|
||||
@click="handleSelect(item)"
|
||||
:class="{
|
||||
'radio-item--active': isActive(item)
|
||||
}"
|
||||
>
|
||||
{{ item }}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { computed, onBeforeMount } from 'vue'
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
defaultValue: string[]
|
||||
modelValue: string[]
|
||||
options: string[]
|
||||
}>(),
|
||||
{
|
||||
modelValue: () => [],
|
||||
options: () => []
|
||||
}
|
||||
)
|
||||
|
||||
const emit = defineEmits<{
|
||||
(event: 'update:modelValue', value: string[]): void
|
||||
}>()
|
||||
const value = computed({
|
||||
get() {
|
||||
return props.modelValue
|
||||
},
|
||||
set(value) {
|
||||
emit('update:modelValue', value)
|
||||
}
|
||||
})
|
||||
const handleSelect = (item: string) => {
|
||||
const index = value.value?.findIndex((i) => item === i)
|
||||
if (index === -1) {
|
||||
value.value?.push(item)
|
||||
} else {
|
||||
value.value?.splice(index, 1)
|
||||
}
|
||||
}
|
||||
const isActive = (item: string) => {
|
||||
return value.value.includes(item)
|
||||
}
|
||||
onBeforeMount(() => {
|
||||
if (props.defaultValue) {
|
||||
value.value = props.defaultValue
|
||||
}
|
||||
})
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.widget-radio {
|
||||
.radio-group {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
.radio-item {
|
||||
line-height: 72rpx;
|
||||
height: 72rpx;
|
||||
margin-bottom: 20rpx;
|
||||
margin-right: 20rpx;
|
||||
border-radius: 14rpx;
|
||||
padding: 0 30rpx;
|
||||
@apply line-clamp-1 text-main bg-page-base;
|
||||
&--active {
|
||||
@apply bg-primary-light-9 text-primary;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user