2026-03-05 16:52:12 +08:00
|
|
|
|
<template>
|
2026-03-06 14:46:40 +08:00
|
|
|
|
<div class="mobile-customer">
|
|
|
|
|
|
<!-- 顶部操作栏 -->
|
|
|
|
|
|
<div class="mobile-header">
|
|
|
|
|
|
<div class="mobile-header__search">
|
2026-03-05 16:52:12 +08:00
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="queryParams.name"
|
2026-03-06 14:46:40 +08:00
|
|
|
|
placeholder="搜索客户名称"
|
2026-03-05 16:52:12 +08:00
|
|
|
|
clearable
|
|
|
|
|
|
@keyup.enter="handleQuery"
|
2026-03-06 14:46:40 +08:00
|
|
|
|
:prefix-icon="Search"
|
2026-03-05 16:52:12 +08:00
|
|
|
|
/>
|
2026-03-06 14:46:40 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="mobile-header__actions">
|
|
|
|
|
|
<el-button :icon="Filter" circle @click="filterVisible = true" />
|
2026-03-05 16:52:12 +08:00
|
|
|
|
<el-button
|
|
|
|
|
|
type="primary"
|
2026-03-06 14:46:40 +08:00
|
|
|
|
:icon="Plus"
|
|
|
|
|
|
circle
|
2026-03-05 16:52:12 +08:00
|
|
|
|
@click="openForm('create')"
|
|
|
|
|
|
v-hasPermi="['erp:customer:create']"
|
2026-03-06 14:46:40 +08:00
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 卡片列表 -->
|
|
|
|
|
|
<div class="mobile-list" v-loading="loading">
|
|
|
|
|
|
<div v-if="list.length === 0 && !loading" class="mobile-empty">
|
|
|
|
|
|
<el-empty description="暂无客户" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div
|
|
|
|
|
|
v-for="item in list"
|
|
|
|
|
|
:key="item.id"
|
|
|
|
|
|
class="mobile-card"
|
|
|
|
|
|
@click="openForm('update', item.id)"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div class="mobile-card__header">
|
|
|
|
|
|
<span class="mobile-card__name">{{ item.name }}</span>
|
|
|
|
|
|
<dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="item.status" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="mobile-card__body">
|
|
|
|
|
|
<div class="mobile-card__row" v-if="item.contact">
|
|
|
|
|
|
<span class="mobile-card__label">联系人</span>
|
|
|
|
|
|
<span class="mobile-card__value">{{ item.contact }}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="mobile-card__row" v-if="item.mobile">
|
|
|
|
|
|
<span class="mobile-card__label">手机号码</span>
|
|
|
|
|
|
<span class="mobile-card__value">{{ item.mobile }}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="mobile-card__row" v-if="item.remark">
|
|
|
|
|
|
<span class="mobile-card__label">备注</span>
|
|
|
|
|
|
<span class="mobile-card__value mobile-card__value--ellipsis">{{ item.remark }}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="mobile-card__footer">
|
|
|
|
|
|
<el-button size="small" type="primary" @click.stop="openForm('update', item.id)" v-hasPermi="['erp:customer:update']">编辑</el-button>
|
|
|
|
|
|
<el-button size="small" type="danger" @click.stop="handleDelete(item.id)" v-hasPermi="['erp:customer:delete']">删除</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-03-05 16:52:12 +08:00
|
|
|
|
<!-- 分页 -->
|
2026-03-06 14:46:40 +08:00
|
|
|
|
<div class="mobile-pagination" v-if="total > 0">
|
|
|
|
|
|
<Pagination
|
|
|
|
|
|
:total="total"
|
|
|
|
|
|
v-model:page="queryParams.pageNo"
|
|
|
|
|
|
v-model:limit="queryParams.pageSize"
|
|
|
|
|
|
:page-sizes="[10, 20]"
|
|
|
|
|
|
layout="total, prev, pager, next"
|
|
|
|
|
|
:pager-count="5"
|
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 筛选抽屉 -->
|
|
|
|
|
|
<el-drawer v-model="filterVisible" title="筛选条件" direction="btt" size="50%">
|
|
|
|
|
|
<el-form :model="queryParams" ref="queryFormRef" label-position="top">
|
|
|
|
|
|
<el-form-item label="手机号码" prop="mobile">
|
|
|
|
|
|
<el-input v-model="queryParams.mobile" placeholder="请输入手机号码" clearable />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="联系电话" prop="telephone">
|
|
|
|
|
|
<el-input v-model="queryParams.telephone" placeholder="请输入联系电话" clearable />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
<template #footer>
|
|
|
|
|
|
<el-button @click="resetQuery">重置</el-button>
|
|
|
|
|
|
<el-button type="primary" @click="handleFilterConfirm">确认筛选</el-button>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-drawer>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
|
|
|
|
<CustomerForm ref="formRef" @success="getList" />
|
|
|
|
|
|
</div>
|
2026-03-05 16:52:12 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2026-03-06 14:46:40 +08:00
|
|
|
|
import { Search, Filter, Plus } from '@element-plus/icons-vue'
|
2026-03-05 16:52:12 +08:00
|
|
|
|
import { DICT_TYPE } from '@/utils/dict'
|
|
|
|
|
|
import download from '@/utils/download'
|
|
|
|
|
|
import { CustomerApi, CustomerVO } from '@/api/erp/sale/customer'
|
|
|
|
|
|
import CustomerForm from './CustomerForm.vue'
|
|
|
|
|
|
|
|
|
|
|
|
/** ERP 客户 列表 */
|
|
|
|
|
|
defineOptions({ name: 'ErpCustomer' })
|
|
|
|
|
|
|
|
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
|
|
|
|
|
|
|
const loading = ref(true) // 列表的加载中
|
|
|
|
|
|
const list = ref<CustomerVO[]>([]) // 列表的数据
|
|
|
|
|
|
const total = ref(0) // 列表的总页数
|
2026-03-06 14:46:40 +08:00
|
|
|
|
const filterVisible = ref(false) // 筛选抽屉
|
2026-03-05 16:52:12 +08:00
|
|
|
|
const queryParams = reactive({
|
|
|
|
|
|
pageNo: 1,
|
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
|
name: undefined,
|
|
|
|
|
|
mobile: undefined,
|
|
|
|
|
|
telephone: undefined
|
|
|
|
|
|
})
|
|
|
|
|
|
const queryFormRef = ref() // 搜索的表单
|
|
|
|
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
|
|
|
|
|
|
|
|
|
|
/** 查询列表 */
|
|
|
|
|
|
const getList = async () => {
|
|
|
|
|
|
loading.value = true
|
|
|
|
|
|
try {
|
|
|
|
|
|
const data = await CustomerApi.getCustomerPage(queryParams)
|
|
|
|
|
|
list.value = data.list
|
|
|
|
|
|
total.value = data.total
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
loading.value = false
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
|
const handleQuery = () => {
|
|
|
|
|
|
queryParams.pageNo = 1
|
|
|
|
|
|
getList()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
|
const resetQuery = () => {
|
2026-03-06 14:46:40 +08:00
|
|
|
|
queryFormRef.value?.resetFields()
|
|
|
|
|
|
handleQuery()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 筛选确认 */
|
|
|
|
|
|
const handleFilterConfirm = () => {
|
|
|
|
|
|
filterVisible.value = false
|
2026-03-05 16:52:12 +08:00
|
|
|
|
handleQuery()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 添加/修改操作 */
|
|
|
|
|
|
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 {}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
|
const handleExport = async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 导出的二次确认
|
|
|
|
|
|
await message.exportConfirm()
|
|
|
|
|
|
// 发起导出
|
|
|
|
|
|
exportLoading.value = true
|
|
|
|
|
|
const data = await CustomerApi.exportCustomer(queryParams)
|
|
|
|
|
|
download.excel(data, '客户.xls')
|
|
|
|
|
|
} catch {
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
exportLoading.value = false
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 初始化 **/
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
getList()
|
|
|
|
|
|
})
|
|
|
|
|
|
</script>
|
2026-03-06 14:46:40 +08:00
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.mobile-customer {
|
|
|
|
|
|
padding: 12px;
|
|
|
|
|
|
background: #f5f5f5;
|
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.mobile-header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
|
|
|
|
|
|
&__search {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&__actions {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 4px;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.mobile-list {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.mobile-empty {
|
|
|
|
|
|
padding: 40px 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.mobile-card {
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
padding: 14px;
|
|
|
|
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
|
|
|
|
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&__name {
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
color: #303133;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&__body {
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&__row {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
padding: 3px 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
|
|
color: #909399;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&__value {
|
|
|
|
|
|
color: #606266;
|
|
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
|
|
|
|
&--ellipsis {
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
max-width: 200px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&__footer {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
|
border-top: 1px solid #f0f0f0;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.mobile-pagination {
|
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
:deep(.el-pagination) {
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|