2023-11-11 23:35:18 +08:00
|
|
|
<template>
|
2024-01-06 21:04:58 +08:00
|
|
|
<ContentWrap>
|
|
|
|
<el-collapse v-model="activeNames">
|
|
|
|
<el-collapse-item name="basicInfo">
|
|
|
|
<template #title>
|
|
|
|
<span class="text-base font-bold">基本信息</span>
|
|
|
|
</template>
|
|
|
|
<el-descriptions :column="4">
|
|
|
|
<el-descriptions-item label="姓名">
|
|
|
|
{{ contact.name }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="客户">
|
|
|
|
{{ contact.customerName }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="手机">
|
|
|
|
{{ contact.mobile }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="座机">
|
|
|
|
{{ contact.telephone }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="邮箱">
|
|
|
|
{{ contact.email }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="QQ">
|
|
|
|
{{ contact.qq }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="微信">
|
|
|
|
{{ contact.wechat }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="下次联系时间">
|
|
|
|
{{ contact.nextTime ? formatDate(contact.nextTime) : '空' }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="所在地">
|
|
|
|
{{ contact.areaName }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="详细地址">
|
|
|
|
{{ contact.detailAddress }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="性别">
|
|
|
|
<dict-tag :type="DICT_TYPE.SYSTEM_USER_SEX" :value="contact.sex" />
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="备注">
|
|
|
|
{{ contact.remark }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions>
|
|
|
|
</el-collapse-item>
|
|
|
|
<el-collapse-item name="systemInfo">
|
|
|
|
<template #title>
|
|
|
|
<span class="text-base font-bold">系统信息</span>
|
|
|
|
</template>
|
|
|
|
<el-descriptions :column="2">
|
|
|
|
<el-descriptions-item label="负责人">
|
|
|
|
{{ contact.ownerUserName }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="创建人">
|
|
|
|
{{ contact.creatorName }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="创建时间">
|
|
|
|
{{ contact.createTime ? formatDate(contact.createTime) : '空' }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="更新时间">
|
|
|
|
{{ contact.updateTime ? formatDate(contact.updateTime) : '空' }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions>
|
|
|
|
</el-collapse-item>
|
|
|
|
</el-collapse>
|
|
|
|
</ContentWrap>
|
2023-11-11 23:35:18 +08:00
|
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
import * as ContactApi from '@/api/crm/contact'
|
|
|
|
import { DICT_TYPE } from '@/utils/dict'
|
|
|
|
import { formatDate } from '@/utils/formatTime'
|
2023-12-06 19:26:39 +08:00
|
|
|
const { contact } = defineProps<{
|
|
|
|
contact: ContactApi.ContactVO
|
|
|
|
}>()
|
2023-11-11 23:35:18 +08:00
|
|
|
|
|
|
|
// 展示的折叠面板
|
|
|
|
const activeNames = ref(['basicInfo', 'systemInfo'])
|
|
|
|
</script>
|