127 lines
4.1 KiB
Vue
127 lines
4.1 KiB
Vue
<template>
|
||
<BusinessDetailsHeader v-loading="loading" :business="business">
|
||
<el-button v-if="permissionListRef?.validateWrite" @click="openForm('update', business.id)">
|
||
编辑
|
||
</el-button>
|
||
<el-button v-if="permissionListRef?.validateOwnerUser" type="primary" @click="transfer">
|
||
转移
|
||
</el-button>
|
||
</BusinessDetailsHeader>
|
||
<el-col>
|
||
<el-tabs>
|
||
<el-tab-pane label="跟进记录">
|
||
<FollowUpList :biz-id="businessId" :biz-type="BizTypeEnum.CRM_BUSINESS" />
|
||
</el-tab-pane>
|
||
<el-tab-pane label="详细资料">
|
||
<BusinessDetailsInfo :business="business" />
|
||
</el-tab-pane>
|
||
<el-tab-pane label="联系人" lazy>
|
||
<ContactList
|
||
:biz-id="business.id!"
|
||
:biz-type="BizTypeEnum.CRM_BUSINESS"
|
||
:business-id="business.id"
|
||
:customer-id="business.customerId"
|
||
/>
|
||
</el-tab-pane>
|
||
<!-- TODO 合同 -->
|
||
<el-tab-pane label="产品">
|
||
<BusinessProductList :business="business" />
|
||
</el-tab-pane>
|
||
<el-tab-pane label="操作日志">
|
||
<OperateLogV2 :log-list="logList" />
|
||
</el-tab-pane>
|
||
<el-tab-pane label="团队成员">
|
||
<PermissionList
|
||
ref="permissionListRef"
|
||
:biz-id="business.id!"
|
||
:biz-type="BizTypeEnum.CRM_BUSINESS"
|
||
:show-action="true"
|
||
@quit-team="close"
|
||
/>
|
||
</el-tab-pane>
|
||
</el-tabs>
|
||
</el-col>
|
||
<!-- 表单弹窗:添加/修改 -->
|
||
<ContactForm ref="formRef" @success="getContact(business.id)" />
|
||
<CrmTransferForm ref="transferFormRef" @success="close" />
|
||
</template>
|
||
<script lang="ts" setup>
|
||
import { useTagsViewStore } from '@/store/modules/tagsView'
|
||
import * as ContactApi from '@/api/crm/contact'
|
||
import * as BusinessApi from '@/api/crm/business'
|
||
import BusinessDetailsHeader from './BusinessDetailsHeader.vue'
|
||
import BusinessDetailsInfo from './BusinessDetailsInfo.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'
|
||
import FollowUpList from '@/views/crm/followup/index.vue'
|
||
import ContactList from '@/views/crm/contact/components/ContactList.vue'
|
||
|
||
defineOptions({ name: 'CrmBusinessDetail' })
|
||
|
||
const message = useMessage()
|
||
|
||
const businessId = ref(0) // 线索编号
|
||
const loading = ref(true) // 加载中
|
||
const business = ref<ContactApi.ContactVO>({} as ContactApi.ContactVO) // 联系人详情
|
||
const permissionListRef = ref<InstanceType<typeof PermissionList>>() // 团队成员列表 Ref
|
||
|
||
/** 获取详情 */
|
||
const getContact = async (id: number) => {
|
||
loading.value = true
|
||
try {
|
||
business.value = await BusinessApi.getBusiness(id)
|
||
await getOperateLog(id)
|
||
} finally {
|
||
loading.value = false
|
||
}
|
||
}
|
||
|
||
/** 编辑 */
|
||
const formRef = ref()
|
||
const openForm = (type: string, id?: number) => {
|
||
formRef.value.open(type, id)
|
||
}
|
||
|
||
/** 联系人转移 */
|
||
const transferFormRef = ref<InstanceType<typeof CrmTransferForm>>() // 联系人转移表单 ref
|
||
const transfer = () => {
|
||
transferFormRef.value?.open('商机转移', business.value.id, BusinessApi.transferBusiness)
|
||
}
|
||
|
||
/** 获取操作日志 */
|
||
const logList = ref<OperateLogV2VO[]>([]) // 操作日志列表
|
||
const getOperateLog = async (contactId: number) => {
|
||
if (!contactId) {
|
||
return
|
||
}
|
||
const data = await getOperateLogPage({
|
||
bizType: BizTypeEnum.CRM_BUSINESS,
|
||
bizId: contactId
|
||
})
|
||
logList.value = data.list
|
||
}
|
||
|
||
/** 关闭窗口 */
|
||
const { delView } = useTagsViewStore() // 视图操作
|
||
const { currentRoute } = useRouter() // 路由
|
||
const close = () => {
|
||
delView(unref(currentRoute))
|
||
}
|
||
|
||
/** 初始化 */
|
||
const { params } = useRoute()
|
||
onMounted(async () => {
|
||
if (!params.id) {
|
||
message.warning('参数错误,商机不能为空!')
|
||
close()
|
||
return
|
||
}
|
||
businessId.value = params.id as unknown as number
|
||
await getContact(businessId.value)
|
||
})
|
||
</script>
|