feat:【ele】【crm】customer 的部分(form、list、detail)
This commit is contained in:
@@ -49,7 +49,6 @@ const permissionListRef = ref<InstanceType<typeof PermissionList>>(); // 团队
|
|||||||
const [Descriptions] = useDescription({
|
const [Descriptions] = useDescription({
|
||||||
bordered: false,
|
bordered: false,
|
||||||
column: 4,
|
column: 4,
|
||||||
class: 'mx-4',
|
|
||||||
schema: useDetailSchema(),
|
schema: useDetailSchema(),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ const [SystemDescriptions] = useDescription({
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="p-4">
|
<div>
|
||||||
<BaseDescriptions :data="customer" />
|
<BaseDescriptions :data="customer" />
|
||||||
<Divider />
|
<Divider />
|
||||||
<SystemDescriptions :data="customer" />
|
<SystemDescriptions :data="customer" />
|
||||||
|
|||||||
@@ -50,7 +50,6 @@ const permissionListRef = ref<InstanceType<typeof PermissionList>>(); // 团队
|
|||||||
const [Descriptions] = useDescription({
|
const [Descriptions] = useDescription({
|
||||||
border: false,
|
border: false,
|
||||||
column: 4,
|
column: 4,
|
||||||
class: 'mx-4',
|
|
||||||
schema: useDetailSchema(),
|
schema: useDetailSchema(),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ const [BaseDescriptions] = useDescription({
|
|||||||
title: '基本信息',
|
title: '基本信息',
|
||||||
border: false,
|
border: false,
|
||||||
column: 4,
|
column: 4,
|
||||||
class: 'mx-4',
|
|
||||||
schema: useDetailBaseSchema(),
|
schema: useDetailBaseSchema(),
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -24,13 +23,12 @@ const [SystemDescriptions] = useDescription({
|
|||||||
title: '系统信息',
|
title: '系统信息',
|
||||||
border: false,
|
border: false,
|
||||||
column: 3,
|
column: 3,
|
||||||
class: 'mx-4',
|
|
||||||
schema: useFollowUpDetailSchema(),
|
schema: useFollowUpDetailSchema(),
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="p-4">
|
<div>
|
||||||
<BaseDescriptions :data="customer" />
|
<BaseDescriptions :data="customer" />
|
||||||
<ElDivider />
|
<ElDivider />
|
||||||
<SystemDescriptions :data="customer" />
|
<SystemDescriptions :data="customer" />
|
||||||
|
|||||||
@@ -8,7 +8,13 @@ import { useRouter } from 'vue-router';
|
|||||||
import { DocAlert, Page, useVbenModal } from '@vben/common-ui';
|
import { DocAlert, Page, useVbenModal } from '@vben/common-ui';
|
||||||
import { downloadFileFromBlobPart } from '@vben/utils';
|
import { downloadFileFromBlobPart } from '@vben/utils';
|
||||||
|
|
||||||
import { ElButton, ElLoading, ElMessage, ElTabPane, ElTabs } from 'element-plus';
|
import {
|
||||||
|
ElButton,
|
||||||
|
ElLoading,
|
||||||
|
ElMessage,
|
||||||
|
ElTabPane,
|
||||||
|
ElTabs,
|
||||||
|
} from 'element-plus';
|
||||||
|
|
||||||
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
||||||
import {
|
import {
|
||||||
@@ -139,7 +145,11 @@ const [Grid, gridApi] = useVbenVxeGrid({
|
|||||||
<ImportModal @success="handleRefresh" />
|
<ImportModal @success="handleRefresh" />
|
||||||
<Grid>
|
<Grid>
|
||||||
<template #toolbar-actions>
|
<template #toolbar-actions>
|
||||||
<ElTabs class="w-full" v-model:model-value="sceneType" @tab-change="handleChangeSceneType">
|
<ElTabs
|
||||||
|
class="w-full"
|
||||||
|
@tab-change="handleChangeSceneType"
|
||||||
|
v-model:model-value="sceneType"
|
||||||
|
>
|
||||||
<ElTabPane label="我负责的" name="1" />
|
<ElTabPane label="我负责的" name="1" />
|
||||||
<ElTabPane label="我参与的" name="2" />
|
<ElTabPane label="我参与的" name="2" />
|
||||||
<ElTabPane label="下属负责的" name="3" />
|
<ElTabPane label="下属负责的" name="3" />
|
||||||
|
|||||||
@@ -15,7 +15,6 @@ const [BaseDescriptions] = useDescription({
|
|||||||
title: '基本信息',
|
title: '基本信息',
|
||||||
border: false,
|
border: false,
|
||||||
column: 4,
|
column: 4,
|
||||||
class: 'mx-4',
|
|
||||||
schema: useDetailBaseSchema(),
|
schema: useDetailBaseSchema(),
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -23,13 +22,12 @@ const [SystemDescriptions] = useDescription({
|
|||||||
title: '系统信息',
|
title: '系统信息',
|
||||||
border: false,
|
border: false,
|
||||||
column: 3,
|
column: 3,
|
||||||
class: 'mx-4',
|
|
||||||
schema: useDetailSystemSchema(),
|
schema: useDetailSystemSchema(),
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="p-4">
|
<div>
|
||||||
<BaseDescriptions :data="receivablePlan" />
|
<BaseDescriptions :data="receivablePlan" />
|
||||||
<ElDivider />
|
<ElDivider />
|
||||||
<SystemDescriptions :data="receivablePlan" />
|
<SystemDescriptions :data="receivablePlan" />
|
||||||
|
|||||||
Reference in New Issue
Block a user