123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <template>
- <ContactDetailsHeader v-loading="loading" :contact="contact">
- <el-button v-if="permissionListRef?.validateWrite" @click="openForm('update', contact.id)">
- 编辑
- </el-button>
- <el-button v-if="permissionListRef?.validateOwnerUser" type="primary" @click="transfer">
- 转移
- </el-button>
- </ContactDetailsHeader>
- <el-col>
- <el-tabs>
- <el-tab-pane label="详细资料">
- <ContactDetailsInfo :contact="contact" />
- </el-tab-pane>
- <el-tab-pane label="操作日志">
- <OperateLogV2 :log-list="logList" />
- </el-tab-pane>
- <el-tab-pane label="团队成员">
- <PermissionList
- ref="permissionListRef"
- :biz-id="contact.id!"
- :biz-type="BizTypeEnum.CRM_CONTACT"
- :show-action="!permissionListRef?.isPool || false"
- @quit-team="close"
- />
- </el-tab-pane>
- <el-tab-pane label="商机" lazy>
- <BusinessList
- :biz-id="contact.id!"
- :biz-type="BizTypeEnum.CRM_CONTACT"
- :customer-id="contact.customerId"
- />
- </el-tab-pane>
- </el-tabs>
- </el-col>
- <!-- 表单弹窗:添加/修改 -->
- <ContactForm ref="formRef" @success="getContactData(contact.id)" />
- <CrmTransferForm ref="crmTransferFormRef" @success="close" />
- </template>
- <script lang="ts" setup>
- import { useTagsViewStore } from '@/store/modules/tagsView'
- import * as ContactApi from '@/api/crm/contact'
- import ContactDetailsHeader from '@/views/crm/contact/detail/ContactDetailsHeader.vue'
- import ContactDetailsInfo from '@/views/crm/contact/detail/ContactDetailsInfo.vue'
- import BusinessList from '@/views/crm/business/components/BusinessList.vue' // 商机列表
- import PermissionList from '@/views/crm/permission/components/PermissionList.vue' // 团队成员列表(权限)
- import { BizTypeEnum } from '@/api/crm/permission'
- import { OperateLogV2VO } from '@/api/system/operatelog'
- import { getOperateLogPage } from '@/api/crm/operateLog'
- import ContactForm from '@/views/crm/contact/ContactForm.vue'
- import CrmTransferForm from '@/views/crm/permission/components/TransferForm.vue'
- defineOptions({ name: 'CrmContactDetail' })
- const route = useRoute()
- const message = useMessage()
- const id = Number(route.params.id) // 联系人编号
- const loading = ref(true) // 加载中
- const contact = ref<ContactApi.ContactVO>({} as ContactApi.ContactVO) // 联系人详情
- const permissionListRef = ref<InstanceType<typeof PermissionList>>() // 团队成员列表 Ref
- /** 获取详情 */
- const getContactData = async (id: number) => {
- loading.value = true
- try {
- contact.value = await ContactApi.getContact(id)
- await getOperateLog(id)
- } finally {
- loading.value = false
- }
- }
- /** 编辑 */
- const formRef = ref()
- const openForm = (type: string, id?: number) => {
- formRef.value.open(type, id)
- }
- /** 联系人转移 */
- const crmTransferFormRef = ref<InstanceType<typeof CrmTransferForm>>() // 联系人转移表单 ref
- const transfer = () => {
- crmTransferFormRef.value?.open('联系人转移', contact.value.id, ContactApi.transferContact)
- }
- /** 获取操作日志 */
- const logList = ref<OperateLogV2VO[]>([]) // 操作日志列表
- const getOperateLog = async (contactId: number) => {
- if (!contactId) {
- return
- }
- const data = await getOperateLogPage({
- bizType: BizTypeEnum.CRM_CONTACT,
- bizId: contactId
- })
- logList.value = data.list
- }
- /** 关闭窗口 */
- const close = () => {
- delView(unref(currentRoute))
- }
- /** 初始化 */
- const { delView } = useTagsViewStore() // 视图操作
- const { currentRoute } = useRouter() // 路由
- onMounted(async () => {
- if (!id) {
- message.warning('参数错误,联系人不能为空!')
- close()
- return
- }
- await getContactData(id)
- })
- </script>
|