141 lines
4.7 KiB
Vue
Raw Normal View History

2024-02-03 20:47:50 +08:00
<!-- 合同详情页面组件-->
2024-01-28 01:32:49 +08:00
<template>
<ContractDetailsHeader v-loading="loading" :contract="contract">
<el-button v-if="permissionListRef?.validateWrite" @click="openForm('update', contract.id)">
编辑
</el-button>
2024-02-03 20:47:50 +08:00
<el-button v-if="permissionListRef?.validateOwnerUser" type="primary" @click="transferContract">
2024-01-28 01:32:49 +08:00
转移
</el-button>
</ContractDetailsHeader>
<el-col>
<el-tabs>
<el-tab-pane label="跟进记录">
<FollowUpList :biz-id="contract.id" :biz-type="BizTypeEnum.CRM_CONTRACT" />
</el-tab-pane>
<el-tab-pane label="基本信息">
2024-01-28 01:32:49 +08:00
<ContractDetailsInfo :contract="contract" />
</el-tab-pane>
2024-02-03 20:47:50 +08:00
<el-tab-pane label="产品">
<ContractProductList :contract="contract" />
2024-02-03 20:47:50 +08:00
</el-tab-pane>
<el-tab-pane label="回款">
<ReceivablePlanList
:contract-id="contract.id!"
:customer-id="contract.customerId"
@create-receivable="createReceivable"
/>
<ReceivableList
ref="receivableListRef"
:contract-id="contract.id!"
:customer-id="contract.customerId"
/>
</el-tab-pane>
2024-01-28 01:32:49 +08:00
<el-tab-pane label="团队成员">
<PermissionList
ref="permissionListRef"
:biz-id="contract.id!"
:biz-type="BizTypeEnum.CRM_CONTRACT"
:show-action="false"
2024-01-28 01:32:49 +08:00
@quit-team="close"
/>
</el-tab-pane>
<el-tab-pane label="操作日志">
<OperateLogV2 :log-list="logList" />
</el-tab-pane>
2024-01-28 01:32:49 +08:00
</el-tabs>
</el-col>
2024-01-28 01:32:49 +08:00
<!-- 表单弹窗添加/修改 -->
<ContractForm ref="formRef" @success="getContractData" />
2024-02-03 20:47:50 +08:00
<CrmTransferForm ref="transferFormRef" @success="close" />
2024-01-28 01:32:49 +08:00
</template>
<script lang="ts" setup>
import { useTagsViewStore } from '@/store/modules/tagsView'
import { OperateLogV2VO } from '@/api/system/operatelog'
import * as ContractApi from '@/api/crm/contract'
import ContractDetailsInfo from './ContractDetailsInfo.vue'
2024-02-23 12:58:39 +08:00
import ContractDetailsHeader from './ContractDetailsHeader.vue'
2024-02-03 20:47:50 +08:00
import ContractProductList from './ContractProductList.vue'
2024-01-28 01:32:49 +08:00
import { BizTypeEnum } from '@/api/crm/permission'
import { getOperateLogPage } from '@/api/crm/operateLog'
import ContractForm from '@/views/crm/contract/ContractForm.vue'
import CrmTransferForm from '@/views/crm/permission/components/TransferForm.vue'
import PermissionList from '@/views/crm/permission/components/PermissionList.vue'
import FollowUpList from '@/views/crm/followup/index.vue'
import ReceivableList from '@/views/crm/receivable/components/ReceivableList.vue'
import ReceivablePlanList from '@/views/crm/receivable/plan/components/ReceivablePlanList.vue'
2024-01-28 01:32:49 +08:00
defineOptions({ name: 'CrmContractDetail' })
2024-02-23 12:58:39 +08:00
const props = defineProps<{ id?: number }>()
2024-01-28 01:32:49 +08:00
const route = useRoute()
const message = useMessage()
const contractId = ref(0) // 编号
const loading = ref(true) // 加载中
const contract = ref<ContractApi.ContractVO>({} as ContractApi.ContractVO) // 详情
2024-02-01 13:38:14 +08:00
const permissionListRef = ref<InstanceType<typeof PermissionList>>() // 团队成员列表 Ref
2024-01-28 01:32:49 +08:00
/** 编辑 */
const formRef = ref()
const openForm = (type: string, id?: number) => {
formRef.value.open(type, id)
}
2024-02-01 13:38:14 +08:00
2024-01-28 01:32:49 +08:00
/** 获取详情 */
const getContractData = async () => {
loading.value = true
try {
contract.value = await ContractApi.getContract(contractId.value)
2024-02-23 12:58:39 +08:00
await getOperateLog(contractId.value)
2024-01-28 01:32:49 +08:00
} finally {
loading.value = false
}
}
/** 获取操作日志 */
const logList = ref<OperateLogV2VO[]>([]) // 操作日志列表
const getOperateLog = async (contractId: number) => {
if (!contractId) {
return
}
const data = await getOperateLogPage({
bizType: BizTypeEnum.CRM_CONTRACT,
bizId: contractId
})
logList.value = data.list
}
/** 从回款计划创建回款 */
const receivableListRef = ref<InstanceType<typeof ReceivableList>>() // 回款列表 Ref
const createReceivable = (planData: any) => {
receivableListRef.value?.createReceivable(planData)
}
2024-02-01 13:38:14 +08:00
/** 转移 */
// TODO @puhui999这个组件要不传递业务类型然后组件里判断 title 和 api 能调用哪个;整体治理掉;好呢
2024-02-03 20:47:50 +08:00
const transferFormRef = ref<InstanceType<typeof CrmTransferForm>>() // 合同转移表单 ref
const transferContract = () => {
transferFormRef.value?.open('合同转移', contract.value.id, ContractApi.transferContract)
2024-01-28 01:32:49 +08:00
}
2024-02-01 13:38:14 +08:00
/** 关闭 */
2024-01-28 01:32:49 +08:00
const { delView } = useTagsViewStore() // 视图操作
const { currentRoute } = useRouter() // 路由
const close = () => {
delView(unref(currentRoute))
}
2024-02-01 13:38:14 +08:00
/** 初始化 */
2024-01-28 01:32:49 +08:00
onMounted(async () => {
2024-02-23 12:58:39 +08:00
const id = props.id || route.params.id
2024-01-28 01:32:49 +08:00
if (!id) {
message.warning('参数错误,合同不能为空!')
close()
return
}
contractId.value = id as unknown as number
2024-01-28 01:32:49 +08:00
await getContractData()
})
</script>