fix(editor): 修复新增第一个显示条件时会重置表单状态

This commit is contained in:
roymondchen 2024-07-04 15:27:27 +08:00
parent 1e93e9bacc
commit eb376b261b
2 changed files with 14 additions and 4 deletions

View File

@ -8,6 +8,7 @@
:last-values="lastValues" :last-values="lastValues"
:prop="prop" :prop="prop"
:size="size" :size="size"
@change="changeHandler"
></MGroupList> ></MGroupList>
</template> </template>
@ -22,6 +23,7 @@ import {
type GroupListConfig, type GroupListConfig,
MGroupList, MGroupList,
} from '@tmagic/form'; } from '@tmagic/form';
import type { DisplayCond } from '@tmagic/schema';
import type { Services } from '@editor/type'; import type { Services } from '@editor/type';
import { getCascaderOptionsFromFields } from '@editor/utils'; import { getCascaderOptionsFromFields } from '@editor/utils';
@ -30,6 +32,10 @@ defineOptions({
name: 'm-fields-display-conds', name: 'm-fields-display-conds',
}); });
const emit = defineEmits<{
change: [value: DisplayCond[]];
}>();
const props = withDefaults( const props = withDefaults(
defineProps< defineProps<
FieldProps<{ FieldProps<{
@ -93,12 +99,12 @@ const config = computed<GroupListConfig>(() => ({
type: 'cond-op-select', type: 'cond-op-select',
parentFields: parentFields.value, parentFields: parentFields.value,
label: '条件', label: '条件',
width: 100, width: 160,
name: 'op', name: 'op',
}, },
{ {
label: '值', label: '值',
width: 100, width: 160,
items: [ items: [
{ {
name: 'value', name: 'value',
@ -142,4 +148,8 @@ const config = computed<GroupListConfig>(() => ({
}, },
], ],
})); }));
const changeHandler = (v: DisplayCond[]) => {
emit('change', v);
};
</script> </script>

View File

@ -774,7 +774,7 @@ export type PropsFormValueFunction = (data: { editorService: EditorService }) =>
export type PartSortableOptions = Omit<Options, 'onStart' | 'onUpdate'>; export type PartSortableOptions = Omit<Options, 'onStart' | 'onUpdate'>;
export interface PageBarSortOptions extends PartSortableOptions { export interface PageBarSortOptions extends PartSortableOptions {
/** 在onUpdate之后调用 */ /** 在onUpdate之后调用 */
afterUpdate?: (event: SortableEvent, sortable: Sortable) => void; afterUpdate?: (event: SortableEvent, sortable: Sortable) => void | Promise<void>;
/** 在onStart之前调用 */ /** 在onStart之前调用 */
beforeStart?: (event: SortableEvent, sortable: Sortable) => void; beforeStart?: (event: SortableEvent, sortable: Sortable) => void | Promise<void>;
} }