2023-05-29 17:37:34 +08:00

125 lines
3.3 KiB
Vue

<template>
<fieldset
v-if="name ? model[name] : model"
class="m-fieldset"
:style="show ? 'padding: 15px 15px 0 5px;' : 'border: 0'"
>
<component v-if="name && config.checkbox" :is="!show ? 'div' : 'legend'">
<TMagicCheckbox
v-model="model[name].value"
:prop="`${prop}${prop ? '.' : ''}${config.name}.value`"
:true-label="1"
:false-label="0"
@update:modelValue="change"
><span v-html="config.legend"></span><span v-if="config.extra" v-html="config.extra" class="m-form-tip"></span
></TMagicCheckbox>
</component>
<legend v-else>
<span v-html="config.legend"></span>
<span v-if="config.extra" v-html="config.extra" class="m-form-tip"></span>
</legend>
<div v-if="config.schematic && show" style="display: flex">
<div style="flex: 1">
<Container
v-for="(item, index) in config.items"
:key="key(item, index)"
:model="name ? model[name] : model"
:lastValues="name ? lastValues[name] : lastValues"
:is-compare="isCompare"
:rules="name ? rules[name] : []"
:config="item"
:prop="prop"
:disabled="disabled"
:labelWidth="lWidth"
:size="size"
@change="change"
@add-diff-count="onAddDiffCount()"
></Container>
</div>
<img class="m-form-schematic" :src="config.schematic" />
</div>
<template v-else-if="show">
<Container
v-for="(item, index) in config.items"
:key="key(item, index)"
:model="name ? model[name] : model"
:lastValues="name ? lastValues[name] : lastValues"
:is-compare="isCompare"
:rules="name ? rules[name] : []"
:config="item"
:prop="prop"
:labelWidth="lWidth"
:size="size"
:disabled="disabled"
@change="change"
@addDiffCount="onAddDiffCount()"
></Container>
</template>
</fieldset>
</template>
<script lang="ts" setup>
import { computed, inject } from 'vue';
import { TMagicCheckbox } from '@tmagic/design';
import { FieldsetConfig, FormState } from '../schema';
import Container from './Container.vue';
defineOptions({
name: 'MFormFieldset',
});
const props = withDefaults(
defineProps<{
labelWidth?: string;
prop: string;
size?: string;
model: Record<string, any>;
lastValues?: Record<string, any>;
isCompare?: boolean;
config: FieldsetConfig;
rules?: any;
disabled?: boolean;
}>(),
{
rules: {},
prop: '',
lastValues: () => ({}),
isCompare: false,
},
);
const emit = defineEmits(['change', 'addDiffCount']);
const mForm = inject<FormState | undefined>('mForm');
const name = computed(() => props.config.name || '');
const show = computed(() => {
if (props.config.expand && name.value) {
return props.model[name.value]?.value;
}
return true;
});
const lWidth = computed(() => {
if (props.config.items) {
return props.config.labelWidth || props.labelWidth;
}
return props.config.labelWidth || props.labelWidth || (props.config.text ? undefined : '0');
});
const change = () => {
emit('change', props.model);
};
const key = (item: any, index: number) => item[mForm?.keyProp || '__key'] ?? index;
const onAddDiffCount = () => emit('addDiffCount');
</script>