merchapp/java-mall-app-shop-admin/components/tui-radio-group/tui-radio-group.vue

105 lines
1.9 KiB
Vue

<template>
<!-- #ifdef APP-PLUS || H5 || MP-ALIPAY || MP-TOUTIAO || MP-LARK || MP-JD || MP-360 -->
<radio-group :name="name">
<slot></slot>
</radio-group>
<!-- #endif -->
<!-- #ifdef MP-WEIXIN || MP-BAIDU || MP-QQ -->
<tui-form-field :name="name" v-model="val">
<slot></slot>
</tui-form-field>
<!-- #endif -->
</template>
<script>
export default {
name: "tui-radio-group",
emits: ['change', 'input', 'update:modelValue'],
// #ifdef MP-WEIXIN
behaviors: ['wx://form-field-group'],
// #endif
// #ifdef MP-BAIDU
behaviors: ['swan://form-field'],
// #endif
// #ifdef MP-QQ
behaviors: ['qq://form-field'],
// #endif
// #ifdef H5
behaviors: ['uni://form-field'],
// #endif
// #ifdef MP-WEIXIN
options: {
virtualHost: true
},
// #endif
props: {
name: {
type: String,
default: ''
},
// #ifdef VUE3
modelValue: {
type: String,
default: ''
},
// #endif
value: {
type: String,
default: ''
}
},
data() {
return {
val: ''
}
},
watch: {
// #ifdef VUE3
modelValue(val) {
this.modelChange(val)
},
// #endif
value(val) {
this.modelChange(val)
}
},
created() {
this.childrens = []
},
methods: {
radioChange(e) {
this.$emit('change', e)
this.$emit('input', e.detail.value)
// #ifdef VUE3
this.$emit("update:modelValue", e.detail.value);
// #endif
},
changeValue(value, target) {
if (this.val === value) return;
this.val = value;
this.childrens.forEach(item => {
if (item !== target) {
item.val = false;
}
})
let e = {
detail: {
value: value
}
}
this.radioChange(e)
},
modelChange(value) {
this.childrens.forEach(item => {
if (item.value === value) {
item.val = true;
} else {
item.val = false;
}
})
}
}
}
</script>
<style></style>