ludu-admin-vue3/src/views/crm/customer/detail/index.vue

68 lines
2.2 KiB
Vue
Raw Normal View History

2023-11-04 03:21:01 +08:00
<template>
2023-11-26 20:18:33 +08:00
<CustomerDetailsHeader :customer="customer" :loading="loading" @refresh="getCustomerData(id)" />
2023-11-06 22:00:40 +08:00
<el-col>
2023-11-04 03:21:01 +08:00
<el-tabs>
<el-tab-pane label="详细资料">
2023-11-11 21:06:11 +08:00
<CustomerDetails :customer="customer" />
2023-11-04 03:21:01 +08:00
</el-tab-pane>
<el-tab-pane label="操作日志" lazy>TODO 待开发</el-tab-pane>
2023-11-04 03:21:01 +08:00
<el-tab-pane label="联系人" lazy>
<ContactList :biz-id="customer.id!" :biz-type="BizTypeEnum.CRM_CUSTOMER" />
2023-11-04 03:21:01 +08:00
</el-tab-pane>
<el-tab-pane label="团队成员" lazy>
<CrmPermissionList :biz-id="customer.id!" :biz-type="BizTypeEnum.CRM_CUSTOMER" />
2023-11-04 03:21:01 +08:00
</el-tab-pane>
<el-tab-pane label="商机" lazy> 商机</el-tab-pane>
<el-tab-pane label="合同" lazy>TODO 待开发</el-tab-pane>
<el-tab-pane label="回款" lazy>TODO 待开发</el-tab-pane>
<el-tab-pane label="回访" lazy>TODO 待开发</el-tab-pane>
<el-tab-pane label="发票" lazy>TODO 待开发</el-tab-pane>
2023-11-04 03:21:01 +08:00
</el-tabs>
</el-col>
</template>
2023-11-22 15:45:10 +08:00
<script lang="ts" setup>
2023-11-04 03:21:01 +08:00
import { useTagsViewStore } from '@/store/modules/tagsView'
import * as CustomerApi from '@/api/crm/customer'
import CustomerDetails from '@/views/crm/customer/detail/CustomerDetails.vue'
import { CrmPermissionList } from '@/views/crm/components'
import ContactList from '@/views/crm/contact/components/ContactList.vue'
import CustomerDetailsHeader from './CustomerDetailsHeader.vue'
import { BizTypeEnum } from '@/api/crm/permission'
2023-11-04 03:21:01 +08:00
defineOptions({ name: 'CustomerDetail' })
const { delView } = useTagsViewStore() // 视图操作
const route = useRoute()
const { currentRoute } = useRouter() // 路由
const id = Number(route.params.id)
const loading = ref(true) // 加载中
/**
* 获取详情
*
2023-11-26 20:18:33 +08:00
* @param id 客户编号
2023-11-04 03:21:01 +08:00
*/
2023-11-18 22:11:42 +08:00
const customer = ref<CustomerApi.CustomerVO>({} as CustomerApi.CustomerVO) // 客户详情
2023-11-04 03:21:01 +08:00
const getCustomerData = async (id: number) => {
loading.value = true
try {
customer.value = await CustomerApi.getCustomer(id)
} finally {
loading.value = false
}
}
/**
* 初始化
*/
onMounted(() => {
if (!id) {
ElMessage.warning('参数错误,客户不能为空!')
delView(unref(currentRoute))
return
}
getCustomerData(id)
})
</script>