123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <template>
- <view class="u-radio-group u-clearfix" :class="uFromData.inputAlign == 'right' ? 'flex-end':''">
- <slot></slot>
- </view>
- </template>
- <script>
- import Emitter from '../../libs/util/emitter.js';
-
- export default {
- name: "u-radio-group",
- emits: ["update:modelValue", "input", "change"],
- mixins: [Emitter],
- props: {
-
- value: {
- type: [String, Number],
- default: ''
- },
- modelValue: {
- type: [String, Number],
- default: ''
- },
-
- disabled: {
- type: Boolean,
- default: false
- },
-
- activeColor: {
- type: String,
- default: '#2979ff'
- },
-
- size: {
- type: [String, Number],
- default: 34
- },
-
- labelDisabled: {
- type: Boolean,
- default: false
- },
-
- shape: {
- type: String,
- default: 'circle'
- },
-
- iconSize: {
- type: [String, Number],
- default: 20
- },
-
- width: {
- type: [String, Number],
- default: 'auto'
- },
-
- wrap: {
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- uFromData:{
- inputAlign: 'left',
- }
- };
- },
- created() {
-
- this.children = [];
- },
- mounted() {
-
- let parent = this.$u.$parent.call(this, 'u-form');
- if (parent) {
- Object.keys(this.uFromData).map(key => {
- this.uFromData[key] = parent[key];
- });
- }
- },
- watch: {
-
- parentData() {
- if(this.children.length) {
- this.children.map(child => {
-
- typeof(child.updateParentData) == 'function' && child.updateParentData();
- })
- }
- },
- },
- computed: {
-
-
-
- parentData() {
- return [this.value, this.disabled, this.activeColor, this.size, this.labelDisabled, this.shape, this.iconSize, this.width, this.wrap];
- }
- },
- methods: {
- getValue(){
-
- return this.value;
-
-
-
- return this.modelValue;
-
- },
-
- setValue(val) {
-
-
- this.children.map(child => {
- if(child.parentData.value != val) child.parentData.value = '';
- })
-
- this.$emit('input', val);
- this.$emit("update:modelValue", val);
- this.$emit('change', val);
-
-
- setTimeout(() => {
-
- this.dispatch('u-form-item', 'onFieldChange', val);
- }, 60)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import "../../libs/css/style.components.scss";
-
- .u-radio-group {
-
- display: inline-flex;
- flex-wrap: wrap;
-
- }
- .u-radio-group.flex-end{
-
- display: inline-flex;
- justify-content: flex-end;
- flex-wrap: wrap;
-
- }
- </style>
|