226492dc创建于 2024年12月31日历史提交
<template>
    <div class="w">
        <template v-if="type == '1'">
            <model-custom-content :value="form.content" :all-value="allValue" @data_source_change="data_source_change"></model-custom-content>
        </template>
        <template v-if="type == '2'">
            <model-custom-styles :value="form.style" :content="form.content" ></model-custom-styles>
        </template>
    </div>
</template>
<script setup lang="ts">
import { isEmpty } from 'lodash';
import defaultCommon from '@/config/const/custom';
const props = defineProps({
    type: {
        type: String,
        default: '1',
    },
    value: {
        type: Object,
        default: () => ({}),
    },
    allValue: {
        type: Object,
        default: () => ({}),
    },
});
// 历史数据处理, 兼容老数据
const form = ref(props.value);
onBeforeMount(() => {
    form.value.style.data_style = Object.assign({}, defaultCommon.style.data_style, props.value.style.data_style);
    form.value.style.data_content_style = Object.assign({}, defaultCommon.style.data_content_style, props.value.style.data_content_style);
});

const all_content = ref(props.allValue);
const data_source_change = (name: string) => {
    // 改变所有内容的名称
    if (!isEmpty(name)) {
        all_content.value.mark_name = name;
    } else {
        all_content.value.mark_name = '';
    }   
}
</script>
<style lang="scss" scoped></style>