44 lines
925 B
Vue
44 lines
925 B
Vue
<script lang="ts" setup>
|
||
import type { CrmClueApi } from '#/api/crm/clue';
|
||
|
||
import { Divider } from 'ant-design-vue';
|
||
|
||
import { useDescription } from '#/components/description';
|
||
import { useFollowUpDetailSchema } from '#/views/crm/followup/data';
|
||
|
||
import { useDetailBaseSchema } from '../data';
|
||
|
||
defineProps<{
|
||
clue: CrmClueApi.Clue;
|
||
}>();
|
||
|
||
const [BaseDescriptions] = useDescription({
|
||
componentProps: {
|
||
title: '基本信息',
|
||
bordered: false,
|
||
column: 4,
|
||
class: 'mx-4',
|
||
},
|
||
schema: useDetailBaseSchema(),
|
||
});
|
||
|
||
const [SystemDescriptions] = useDescription({
|
||
componentProps: {
|
||
title: '系统信息',
|
||
bordered: false,
|
||
column: 3,
|
||
class: 'mx-4',
|
||
},
|
||
schema: useFollowUpDetailSchema(),
|
||
});
|
||
</script>
|
||
|
||
<template>
|
||
<!-- TODO @芋艿:为什么 p-4? -->
|
||
<div class="p-4">
|
||
<BaseDescriptions :data="clue" />
|
||
<Divider />
|
||
<SystemDescriptions :data="clue" />
|
||
</div>
|
||
</template>
|