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.

158 lines
3.5 KiB

9 months ago
<template>
<view :class="'jnpf-checkbox jnpf-checkbox-right'">
<view v-if="direction === 'horizontal'">
<u-checkbox-group @change="onChange" :disabled="disabled" style="display: flow-root;">
<template v-if="showOnly">
<u-checkbox v-if="item.checked" v-model="item.checked" label-size='26' v-for="(item, index) in newOptions" :key="index"
:name="item[props.value]">
{{ item[props.label] }}
</u-checkbox>
</template>
<template v-else>
<u-checkbox label-size='26' v-for="(item, index) in newOptions" :key="index"
:name="item[props.value]">
{{ item[props.label] }}
</u-checkbox>
</template>
9 months ago
</u-checkbox-group>
</view>
<!-- -->
<view class="u-select__body u-select__body__multiple" v-else>
<scroll-view :scroll-y="true" style="height: 100%">
<u-checkbox-group @change="onChange" wrap :disabled="disabled">
<template v-if="showOnly">
<u-checkbox v-if="item.checked" v-model="item.checked" :name="item[props.value]" v-for="(item,i) in newOptions"
:key="i">
{{ item[props.label] }}
</u-checkbox>
</template>
<template v-else>
<u-checkbox v-model="item.checked" :name="item[props.value]" v-for="(item,i) in newOptions"
:key="i">
{{ item[props.label] }}
</u-checkbox>
</template>
9 months ago
</u-checkbox-group>
</scroll-view>
</view>
</view>
</template>
<script>
export default {
name: 'jnpf-checkbox',
model: {
prop: 'value',
event: 'input'
},
props: {
value: {
type: Array,
default: () => []
},
direction: {
type: String,
default: "horizontal"
},
options: {
type: Array,
default: () => []
},
props: {
type: Object,
default: () => ({
label: 'fullName',
value: 'id'
})
},
disabled: {
type: Boolean,
default: false
},
showOnly: {
type: Boolean,
default: false
9 months ago
}
},
data() {
return {
newOptions: [],
}
},
watch: {
value(val) {
if (val === '' || val.length < 1) return this.setColumnData()
this.setDefault()
},
options(val) {
this.setColumnData()
}
},
created() {
this.setColumnData()
},
methods: {
onChange(value) {
let selectData = []
for (let i = 0; i < this.newOptions.length; i++) {
for (let o = 0; o < value.length; o++) {
if (value[o] === this.newOptions[i][this.props.value]) {
selectData.push(this.newOptions[i])
}
}
}
this.$emit('input', value)
this.$emit('change', value, selectData)
},
setColumnData() {
this.newOptions = this.options.map(o => ({
...o,
checked: false
}))
this.setDefault()
},
setDefault() {
outer: for (let i = 0; i < this.value.length; i++) {
inner: for (let j = 0; j < this.newOptions.length; j++) {
if (this.value[i] === this.newOptions[j][this.props.value]) {
this.newOptions[j].checked = true
break inner
}
}
}
},
}
}
</script>
<style lang="scss" scoped>
.jnpf-checkbox {
width: 100%;
/deep/.u-checkbox-group {
padding: 0;
.u-checkbox {
max-width: 100%;
justify-content: flex-end;
.u-checkbox__label {
max-width: 500rpx;
word-break: break-all;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
}
/deep/.u-select__body__multiple .u-checkbox-group .u-checkbox__label {
flex: none;
margin-left: 20px;
}
&.jnpf-checkbox-right {
text-align: right;
}
}
</style>