2023-10-25 00:24:20 +08:00
|
|
|
|
<template>
|
2024-02-26 20:23:14 +08:00
|
|
|
|
<doc-alert title="【客户】客户管理、公海客户" url="https://doc.iocoder.cn/crm/customer/" />
|
|
|
|
|
<doc-alert title="【通用】数据权限" url="https://doc.iocoder.cn/crm/permission/" />
|
|
|
|
|
|
2023-10-25 00:24:20 +08:00
|
|
|
|
<ContentWrap>
|
|
|
|
|
<!-- 搜索工作栏 -->
|
|
|
|
|
<el-form
|
|
|
|
|
ref="queryFormRef"
|
|
|
|
|
:inline="true"
|
2023-11-13 17:49:27 +08:00
|
|
|
|
:model="queryParams"
|
|
|
|
|
class="-mb-15px"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
label-width="68px"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item label="客户名称" prop="name">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.name"
|
2023-11-13 17:49:27 +08:00
|
|
|
|
class="!w-240px"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
clearable
|
2023-11-13 17:49:27 +08:00
|
|
|
|
placeholder="请输入客户名称"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="手机" prop="mobile">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.mobile"
|
2023-11-13 17:49:27 +08:00
|
|
|
|
class="!w-240px"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
clearable
|
2023-11-13 17:49:27 +08:00
|
|
|
|
placeholder="请输入手机"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
2023-11-04 03:21:01 +08:00
|
|
|
|
<el-form-item label="所属行业" prop="industryId">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="queryParams.industryId"
|
|
|
|
|
class="!w-240px"
|
2023-11-13 17:49:27 +08:00
|
|
|
|
clearable
|
|
|
|
|
placeholder="请选择所属行业"
|
2023-11-04 03:21:01 +08:00
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="dict in getIntDictOptions(DICT_TYPE.CRM_CUSTOMER_INDUSTRY)"
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
2024-02-19 19:02:03 +08:00
|
|
|
|
<el-form-item label="客户级别" prop="level">
|
2023-11-04 03:21:01 +08:00
|
|
|
|
<el-select
|
|
|
|
|
v-model="queryParams.level"
|
|
|
|
|
class="!w-240px"
|
2023-11-13 17:49:27 +08:00
|
|
|
|
clearable
|
2024-02-19 19:02:03 +08:00
|
|
|
|
placeholder="请选择客户级别"
|
2023-11-04 03:21:01 +08:00
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="dict in getIntDictOptions(DICT_TYPE.CRM_CUSTOMER_LEVEL)"
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="客户来源" prop="source">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="queryParams.source"
|
|
|
|
|
class="!w-240px"
|
2023-11-13 17:49:27 +08:00
|
|
|
|
clearable
|
|
|
|
|
placeholder="请选择客户来源"
|
2023-11-04 03:21:01 +08:00
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="dict in getIntDictOptions(DICT_TYPE.CRM_CUSTOMER_SOURCE)"
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
2023-10-25 00:24:20 +08:00
|
|
|
|
<el-form-item>
|
2024-01-06 12:29:35 +08:00
|
|
|
|
<el-button @click="handleQuery">
|
|
|
|
|
<Icon class="mr-5px" icon="ep:search" />
|
|
|
|
|
搜索
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button @click="resetQuery(undefined)">
|
|
|
|
|
<Icon class="mr-5px" icon="ep:refresh" />
|
|
|
|
|
重置
|
|
|
|
|
</el-button>
|
2023-11-13 17:49:27 +08:00
|
|
|
|
<el-button v-hasPermi="['crm:customer:create']" type="primary" @click="openForm('create')">
|
2024-01-06 12:29:35 +08:00
|
|
|
|
<Icon class="mr-5px" icon="ep:plus" />
|
|
|
|
|
新增
|
2023-10-25 00:24:20 +08:00
|
|
|
|
</el-button>
|
2024-01-27 15:02:25 +08:00
|
|
|
|
<el-button v-hasPermi="['crm:customer:import']" plain type="warning" @click="handleImport">
|
|
|
|
|
<Icon icon="ep:upload" />
|
|
|
|
|
导入
|
|
|
|
|
</el-button>
|
2023-10-25 00:24:20 +08:00
|
|
|
|
<el-button
|
2023-11-13 17:49:27 +08:00
|
|
|
|
v-hasPermi="['crm:customer:export']"
|
|
|
|
|
:loading="exportLoading"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
plain
|
2023-11-13 17:49:27 +08:00
|
|
|
|
type="success"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
@click="handleExport"
|
|
|
|
|
>
|
2024-01-06 12:29:35 +08:00
|
|
|
|
<Icon class="mr-5px" icon="ep:download" />
|
|
|
|
|
导出
|
2023-10-25 00:24:20 +08:00
|
|
|
|
</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</ContentWrap>
|
|
|
|
|
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
|
<ContentWrap>
|
2024-02-20 09:35:48 +08:00
|
|
|
|
<el-tabs v-model="activeName" @tab-click="handleTabClick">
|
2024-01-14 00:00:50 +08:00
|
|
|
|
<el-tab-pane label="我负责的" name="1" />
|
|
|
|
|
<el-tab-pane label="我参与的" name="2" />
|
|
|
|
|
<el-tab-pane label="下属负责的" name="3" />
|
2024-01-06 12:29:35 +08:00
|
|
|
|
</el-tabs>
|
2023-11-13 17:49:27 +08:00
|
|
|
|
<el-table v-loading="loading" :data="list" :show-overflow-tooltip="true" :stripe="true">
|
2024-02-17 18:02:40 +08:00
|
|
|
|
<el-table-column align="center" label="客户名称" fixed="left" prop="name" width="160">
|
2023-11-30 13:42:49 +08:00
|
|
|
|
<template #default="scope">
|
2024-01-06 12:29:35 +08:00
|
|
|
|
<el-link :underline="false" type="primary" @click="openDetail(scope.row.id)">
|
2023-11-30 13:42:49 +08:00
|
|
|
|
{{ scope.row.name }}
|
|
|
|
|
</el-link>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2024-01-02 21:44:38 +08:00
|
|
|
|
<el-table-column align="center" label="客户来源" prop="source" width="100">
|
2023-10-25 00:24:20 +08:00
|
|
|
|
<template #default="scope">
|
2024-01-02 21:44:38 +08:00
|
|
|
|
<dict-tag :type="DICT_TYPE.CRM_CUSTOMER_SOURCE" :value="scope.row.source" />
|
2023-10-25 00:24:20 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2024-02-20 09:35:48 +08:00
|
|
|
|
<el-table-column label="手机" align="center" prop="mobile" width="120" />
|
|
|
|
|
<el-table-column label="电话" align="center" prop="telephone" width="130" />
|
|
|
|
|
<el-table-column label="邮箱" align="center" prop="email" width="180" />
|
|
|
|
|
<el-table-column align="center" label="客户级别" prop="level" width="135">
|
2023-10-25 00:24:20 +08:00
|
|
|
|
<template #default="scope">
|
2024-02-20 09:35:48 +08:00
|
|
|
|
<dict-tag :type="DICT_TYPE.CRM_CUSTOMER_LEVEL" :value="scope.row.level" />
|
2023-10-25 00:24:20 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2024-02-20 09:35:48 +08:00
|
|
|
|
<el-table-column align="center" label="客户行业" prop="industryId" width="100">
|
2023-10-25 00:24:20 +08:00
|
|
|
|
<template #default="scope">
|
2024-02-20 09:35:48 +08:00
|
|
|
|
<dict-tag :type="DICT_TYPE.CRM_CUSTOMER_INDUSTRY" :value="scope.row.industryId" />
|
2023-10-25 00:24:20 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
2023-11-13 17:49:27 +08:00
|
|
|
|
:formatter="dateFormatter"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
align="center"
|
2024-01-02 21:44:38 +08:00
|
|
|
|
label="下次联系时间"
|
|
|
|
|
prop="contactNextTime"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
width="180px"
|
|
|
|
|
/>
|
2024-01-02 21:44:38 +08:00
|
|
|
|
<el-table-column align="center" label="备注" prop="remark" width="200" />
|
2024-02-20 09:35:48 +08:00
|
|
|
|
<el-table-column align="center" label="锁定状态" prop="lockStatus">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.lockStatus" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2023-11-13 17:49:27 +08:00
|
|
|
|
<el-table-column align="center" label="成交状态" prop="dealStatus">
|
2023-10-29 00:33:38 +08:00
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.dealStatus" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2023-10-25 00:24:20 +08:00
|
|
|
|
<el-table-column
|
2023-11-13 17:49:27 +08:00
|
|
|
|
:formatter="dateFormatter"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
align="center"
|
2024-01-02 21:44:38 +08:00
|
|
|
|
label="最后跟进时间"
|
|
|
|
|
prop="contactLastTime"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
width="180px"
|
|
|
|
|
/>
|
2024-02-20 09:35:48 +08:00
|
|
|
|
<el-table-column align="center" label="最后跟进记录" prop="contactLastContent" width="200" />
|
|
|
|
|
<el-table-column label="地址" align="center" prop="detailAddress" width="180" />
|
|
|
|
|
<el-table-column align="center" label="距离进入公海天数" prop="poolDay" width="140">
|
|
|
|
|
<template #default="scope"> {{ scope.row.poolDay }} 天</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" label="负责人" prop="ownerUserName" width="100px" />
|
|
|
|
|
<el-table-column align="center" label="所属部门" prop="ownerUserDeptName" width="100px" />
|
2023-10-25 00:24:20 +08:00
|
|
|
|
<el-table-column
|
2023-11-13 17:49:27 +08:00
|
|
|
|
:formatter="dateFormatter"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
align="center"
|
2024-02-20 09:35:48 +08:00
|
|
|
|
label="更新时间"
|
2024-01-02 21:44:38 +08:00
|
|
|
|
prop="updateTime"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
width="180px"
|
|
|
|
|
/>
|
2024-01-02 21:44:38 +08:00
|
|
|
|
<el-table-column
|
|
|
|
|
:formatter="dateFormatter"
|
|
|
|
|
align="center"
|
|
|
|
|
label="创建时间"
|
|
|
|
|
prop="createTime"
|
|
|
|
|
width="180px"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column align="center" label="创建人" prop="creatorName" width="100px" />
|
2023-11-13 17:49:27 +08:00
|
|
|
|
<el-table-column align="center" fixed="right" label="操作" min-width="150">
|
2023-10-25 00:24:20 +08:00
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-button
|
2023-11-13 17:49:27 +08:00
|
|
|
|
v-hasPermi="['crm:customer:update']"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
link
|
|
|
|
|
type="primary"
|
|
|
|
|
@click="openForm('update', scope.row.id)"
|
|
|
|
|
>
|
|
|
|
|
编辑
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
2023-11-13 17:49:27 +08:00
|
|
|
|
v-hasPermi="['crm:customer:delete']"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
link
|
|
|
|
|
type="danger"
|
|
|
|
|
@click="handleDelete(scope.row.id)"
|
|
|
|
|
>
|
|
|
|
|
删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<!-- 分页 -->
|
|
|
|
|
<Pagination
|
|
|
|
|
v-model:limit="queryParams.pageSize"
|
2023-11-13 17:49:27 +08:00
|
|
|
|
v-model:page="queryParams.pageNo"
|
|
|
|
|
:total="total"
|
2023-10-25 00:24:20 +08:00
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
|
|
|
|
</ContentWrap>
|
|
|
|
|
|
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
|
|
|
<CustomerForm ref="formRef" @success="getList" />
|
2024-02-03 20:47:50 +08:00
|
|
|
|
<CustomerImportForm ref="importFormRef" @success="getList" />
|
2023-10-25 00:24:20 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
2023-11-13 17:49:27 +08:00
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
2023-10-25 00:24:20 +08:00
|
|
|
|
import { dateFormatter } from '@/utils/formatTime'
|
|
|
|
|
import download from '@/utils/download'
|
|
|
|
|
import * as CustomerApi from '@/api/crm/customer'
|
|
|
|
|
import CustomerForm from './CustomerForm.vue'
|
2024-01-27 15:02:25 +08:00
|
|
|
|
import CustomerImportForm from './CustomerImportForm.vue'
|
2024-01-06 12:29:35 +08:00
|
|
|
|
import { TabsPaneContext } from 'element-plus'
|
2023-10-25 00:24:20 +08:00
|
|
|
|
|
|
|
|
|
defineOptions({ name: 'CrmCustomer' })
|
|
|
|
|
|
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
|
|
|
|
|
const loading = ref(true) // 列表的加载中
|
|
|
|
|
const total = ref(0) // 列表的总页数
|
|
|
|
|
const list = ref([]) // 列表的数据
|
2024-02-20 09:35:48 +08:00
|
|
|
|
const queryParams = reactive({
|
2023-10-25 00:24:20 +08:00
|
|
|
|
pageNo: 1,
|
|
|
|
|
pageSize: 10,
|
2024-02-20 09:35:48 +08:00
|
|
|
|
sceneType: '1', // 默认和 activeName 相等
|
2023-11-23 09:35:59 +08:00
|
|
|
|
name: '',
|
|
|
|
|
mobile: '',
|
|
|
|
|
industryId: undefined,
|
|
|
|
|
level: undefined,
|
2024-01-06 12:29:35 +08:00
|
|
|
|
source: undefined,
|
|
|
|
|
pool: undefined
|
2023-10-25 00:24:20 +08:00
|
|
|
|
})
|
|
|
|
|
const queryFormRef = ref() // 搜索的表单
|
|
|
|
|
const exportLoading = ref(false) // 导出的加载中
|
2024-01-06 12:29:35 +08:00
|
|
|
|
const activeName = ref('1') // 列表 tab
|
2023-10-25 00:24:20 +08:00
|
|
|
|
|
2024-02-20 09:35:48 +08:00
|
|
|
|
/** tab 切换 */
|
|
|
|
|
const handleTabClick = (tab: TabsPaneContext) => {
|
|
|
|
|
queryParams.sceneType = tab.paneName
|
|
|
|
|
handleQuery()
|
2024-01-06 12:29:35 +08:00
|
|
|
|
}
|
2024-01-07 21:20:00 +08:00
|
|
|
|
|
2023-10-25 00:24:20 +08:00
|
|
|
|
/** 查询列表 */
|
|
|
|
|
const getList = async () => {
|
|
|
|
|
loading.value = true
|
|
|
|
|
try {
|
2024-02-20 09:35:48 +08:00
|
|
|
|
const data = await CustomerApi.getCustomerPage(queryParams)
|
2023-10-25 00:24:20 +08:00
|
|
|
|
list.value = data.list
|
|
|
|
|
total.value = data.total
|
|
|
|
|
} finally {
|
|
|
|
|
loading.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
const handleQuery = () => {
|
2024-02-20 09:35:48 +08:00
|
|
|
|
queryParams.pageNo = 1
|
2023-10-25 00:24:20 +08:00
|
|
|
|
getList()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
2024-02-20 09:35:48 +08:00
|
|
|
|
const resetQuery = () => {
|
2023-10-25 00:24:20 +08:00
|
|
|
|
queryFormRef.value.resetFields()
|
|
|
|
|
handleQuery()
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-04 03:21:01 +08:00
|
|
|
|
/** 打开客户详情 */
|
2024-01-06 12:29:35 +08:00
|
|
|
|
const { currentRoute, push } = useRouter()
|
2023-11-04 03:21:01 +08:00
|
|
|
|
const openDetail = (id: number) => {
|
|
|
|
|
push({ name: 'CrmCustomerDetail', params: { id } })
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-25 00:24:20 +08:00
|
|
|
|
/** 添加/修改操作 */
|
|
|
|
|
const formRef = ref()
|
|
|
|
|
const openForm = (type: string, id?: number) => {
|
|
|
|
|
formRef.value.open(type, id)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
const handleDelete = async (id: number) => {
|
|
|
|
|
try {
|
|
|
|
|
// 删除的二次确认
|
|
|
|
|
await message.delConfirm()
|
|
|
|
|
// 发起删除
|
|
|
|
|
await CustomerApi.deleteCustomer(id)
|
|
|
|
|
message.success(t('common.delSuccess'))
|
|
|
|
|
// 刷新列表
|
|
|
|
|
await getList()
|
|
|
|
|
} catch {}
|
|
|
|
|
}
|
2024-02-01 13:38:14 +08:00
|
|
|
|
|
|
|
|
|
/** 导入按钮操作 */
|
2024-02-03 20:47:50 +08:00
|
|
|
|
const importFormRef = ref<InstanceType<typeof CustomerImportForm>>()
|
2024-01-27 15:02:25 +08:00
|
|
|
|
const handleImport = () => {
|
2024-02-03 20:47:50 +08:00
|
|
|
|
importFormRef.value?.open()
|
2024-01-27 15:02:25 +08:00
|
|
|
|
}
|
2024-02-01 13:38:14 +08:00
|
|
|
|
|
2023-10-25 00:24:20 +08:00
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
const handleExport = async () => {
|
|
|
|
|
try {
|
|
|
|
|
// 导出的二次确认
|
|
|
|
|
await message.exportConfirm()
|
|
|
|
|
// 发起导出
|
|
|
|
|
exportLoading.value = true
|
2024-02-20 09:35:48 +08:00
|
|
|
|
const data = await CustomerApi.exportCustomer(queryParams)
|
2023-10-25 00:24:20 +08:00
|
|
|
|
download.excel(data, '客户.xls')
|
|
|
|
|
} catch {
|
|
|
|
|
} finally {
|
|
|
|
|
exportLoading.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-01-07 21:20:00 +08:00
|
|
|
|
|
|
|
|
|
/** 监听路由变化更新列表 */
|
2024-01-06 12:29:35 +08:00
|
|
|
|
watch(
|
|
|
|
|
() => currentRoute.value,
|
|
|
|
|
() => {
|
|
|
|
|
getList()
|
|
|
|
|
}
|
|
|
|
|
)
|
2024-01-07 21:20:00 +08:00
|
|
|
|
|
2023-10-25 00:24:20 +08:00
|
|
|
|
/** 初始化 **/
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
getList()
|
|
|
|
|
})
|
|
|
|
|
</script>
|