123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <template>
- <!-- TODO @wanwan:要不要把上面这一整块,搞成一个组件,就是把 下面 + Details + BasitcInfo 合并成一个 -->
- <div v-loading="loading">
- <div class="flex items-start justify-between">
- <div>
- <!-- 左上:客户基本信息 -->
- <CustomerBasicInfo :customer="customer" />
- </div>
- <div>
- <!-- 右上:按钮 -->
- <el-button v-hasPermi="['crm:customer:update']" @click="openForm('update', customer.id)">
- 编辑
- </el-button>
- <el-button>更改成交状态</el-button>
- </div>
- </div>
- <el-row class="mt-10px">
- <el-button>
- <Icon class="mr-5px" icon="ph:calendar-fill" />
- 创建任务
- </el-button>
- <el-button>
- <Icon class="mr-5px" icon="carbon:email" />
- 发送邮件
- </el-button>
- <el-button>
- <Icon class="mr-5px" icon="system-uicons:contacts" />
- 创建联系人
- </el-button>
- <el-button>
- <Icon class="mr-5px" icon="ep:opportunity" />
- 创建商机
- </el-button>
- <el-button>
- <Icon class="mr-5px" icon="clarity:contract-line" />
- 创建合同
- </el-button>
- <el-button>
- <Icon class="mr-5px" icon="icon-park:income-one" />
- 创建回款
- </el-button>
- <el-button>
- <Icon class="mr-5px" icon="fluent:people-team-add-20-filled" />
- 添加团队成员
- </el-button>
- </el-row>
- </div>
- <ContentWrap class="mt-10px">
- <el-descriptions :column="5" direction="vertical">
- <el-descriptions-item label="客户级别">
- <dict-tag :type="DICT_TYPE.CRM_CUSTOMER_LEVEL" :value="customer.level" />
- </el-descriptions-item>
- <el-descriptions-item label="成交状态">
- {{ customer.dealStatus ? '已成交' : '未成交' }}
- </el-descriptions-item>
- <el-descriptions-item label="负责人">
- {{ customer.ownerUserName }}
- </el-descriptions-item>
- <!-- TODO wanwan 首要联系人? -->
- <el-descriptions-item label="首要联系人" />
- <!-- TODO wanwan 首要联系人电话? -->
- <el-descriptions-item label="首要联系人电话">
- {{ customer.mobile }}
- </el-descriptions-item>
- </el-descriptions>
- </ContentWrap>
- <el-col>
- <el-tabs>
- <el-tab-pane label="详细资料">
- <CustomerDetails :customer="customer" />
- </el-tab-pane>
- <el-tab-pane label="活动" lazy> 活动</el-tab-pane>
- <el-tab-pane label="邮件" lazy> 邮件</el-tab-pane>
- <el-tab-pane label="工商信息" lazy> 工商信息</el-tab-pane>
- <el-tab-pane label="客户关系" lazy> 客户关系</el-tab-pane>
- <!-- TODO wanwan 以下标签上的数量需要接口统计返回 -->
- <el-tab-pane label="联系人" lazy>
- <template #label>
- 联系人
- <el-badge class="item" type="primary" />
- </template>
- 联系人
- </el-tab-pane>
- <el-tab-pane label="团队成员" lazy>
- <template #label>
- 团队成员
- <el-badge class="item" type="primary" />
- </template>
- <CrmPermissionList :biz-id="customer.id" :biz-type="CrmBizTypeEnum.CRM_CUSTOMER" />
- </el-tab-pane>
- <el-tab-pane label="商机" lazy> 商机</el-tab-pane>
- <el-tab-pane label="合同" lazy>
- <template #label>
- 合同
- <el-badge class="item" type="primary" />
- </template>
- 合同
- </el-tab-pane>
- <el-tab-pane label="回款" lazy>
- <template #label>
- 回款
- <el-badge class="item" type="primary" />
- </template>
- 回款
- </el-tab-pane>
- <el-tab-pane label="回访" lazy> 回访</el-tab-pane>
- <el-tab-pane label="发票" lazy> 发票</el-tab-pane>
- </el-tabs>
- </el-col>
- <!-- 表单弹窗:添加/修改 -->
- <CustomerForm ref="formRef" @success="getCustomerData(id)" />
- </template>
- <script lang="ts" setup>
- import { ElMessage } from 'element-plus'
- import { useTagsViewStore } from '@/store/modules/tagsView'
- import * as CustomerApi from '@/api/crm/customer'
- import CustomerBasicInfo from '@/views/crm/customer/detail/CustomerBasicInfo.vue'
- import { DICT_TYPE } from '@/utils/dict'
- import CustomerDetails from '@/views/crm/customer/detail/CustomerDetails.vue'
- import CustomerForm from '@/views/crm/customer/CustomerForm.vue'
- import { CrmBizTypeEnum, CrmPermissionList } from '@/views/crm/components'
- defineOptions({ name: 'CustomerDetail' })
- const { delView } = useTagsViewStore() // 视图操作
- const route = useRoute()
- const { currentRoute } = useRouter() // 路由
- const id = Number(route.params.id)
- const loading = ref(true) // 加载中
- /**
- * 获取详情
- *
- * @param id
- */
- const customer = ref<CustomerApi.CustomerVO>({} as CustomerApi.CustomerVO) // 客户详情
- const getCustomerData = async (id: number) => {
- loading.value = true
- try {
- customer.value = await CustomerApi.getCustomer(id)
- } finally {
- loading.value = false
- }
- }
- const formRef = ref()
- const openForm = (type: string, id?: number) => {
- formRef.value.open(type, id)
- }
- /**
- * 初始化
- */
- onMounted(() => {
- if (!id) {
- ElMessage.warning('参数错误,客户不能为空!')
- delView(unref(currentRoute))
- return
- }
- getCustomerData(id)
- })
- </script>
|