341 lines
12 KiB
Vue
341 lines
12 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
<el-form-item label="客户编号" prop="code">
|
|
<el-input
|
|
v-model="queryParams.code"
|
|
placeholder="请输入客户编号"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="客户名称" prop="name">
|
|
<el-input
|
|
v-model="queryParams.name"
|
|
placeholder="请输入客户名称"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="状态" prop="status">
|
|
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable @change="handleQuery">
|
|
<el-option
|
|
v-for="dict in dict.type.customer_status"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="意向强度" prop="intentLevel">
|
|
<el-select v-model="queryParams.intentLevel" placeholder="请选择意向强度" clearable @change="handleQuery">
|
|
<el-option
|
|
v-for="dict in dict.type.customer_intent_level"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="手机号" prop="mobile">
|
|
<el-input
|
|
v-model="queryParams.mobile"
|
|
placeholder="请输入手机号"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="微信号" prop="wechat">
|
|
<el-input
|
|
v-model="queryParams.wechat"
|
|
placeholder="请输入微信号"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="来源" prop="source">
|
|
<el-input
|
|
v-model="queryParams.source"
|
|
placeholder="请输入来源"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="意向" prop="intent">
|
|
<el-input
|
|
v-model="queryParams.intent"
|
|
placeholder="请输入意向"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="跟进人" prop="followName">
|
|
<el-input
|
|
v-model="queryParams.followName"
|
|
placeholder="请输入跟进人"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="primary"
|
|
plain
|
|
icon="el-icon-plus"
|
|
size="mini"
|
|
@click="handleAdd"
|
|
v-has-permi="['bst:customer:add']"
|
|
>新增</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="danger"
|
|
plain
|
|
icon="el-icon-delete"
|
|
size="mini"
|
|
:disabled="multiple"
|
|
@click="handleDelete"
|
|
v-has-permi="['bst:customer:remove']"
|
|
>删除</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="warning"
|
|
plain
|
|
icon="el-icon-download"
|
|
size="mini"
|
|
@click="handleExport"
|
|
v-has-permi="['bst:customer:export']"
|
|
>导出</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="customerList" @selection-change="handleSelectionChange" :default-sort="defaultSort" @sort-change="onSortChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<template v-for="column of showColumns">
|
|
<el-table-column
|
|
:key="column.key"
|
|
:label="column.label"
|
|
:prop="column.key"
|
|
:align="column.align"
|
|
:min-width="column.minWidth"
|
|
:sort-orders="orderSorts"
|
|
:sortable="column.sortable"
|
|
:show-overflow-tooltip="column.overflow"
|
|
:width="column.width"
|
|
>
|
|
<template slot-scope="d">
|
|
<template v-if="column.key === 'id'">
|
|
{{d.row[column.key]}}
|
|
</template>
|
|
<template v-else-if="column.key === 'status'">
|
|
<dict-tag :options="dict.type.customer_status" :value="d.row[column.key]"/>
|
|
</template>
|
|
<template v-else-if="column.key === 'intentLevel'">
|
|
<dict-tag :options="dict.type.customer_intent_level" :value="d.row[column.key]"/>
|
|
</template>
|
|
<template v-else-if="column.key === 'intents'">
|
|
{{d.row[column.key].join(',')}}
|
|
</template>
|
|
<template v-else>
|
|
{{d.row[column.key]}}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</template>
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-edit"
|
|
@click="handleUpdate(scope.row)"
|
|
v-has-permi="['bst:customer:edit']"
|
|
>修改</el-button>
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(scope.row)"
|
|
v-has-permi="['bst:customer:remove']"
|
|
>删除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<pagination
|
|
v-show="total>0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
|
|
<!-- 添加或修改客户对话框 -->
|
|
<customer-edit-dialog
|
|
:show.sync="open"
|
|
:id="row.id"
|
|
@success="getList"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { listCustomer, delCustomer} from "@/api/bst/customer";
|
|
import { $showColumns } from '@/utils/mixins';
|
|
import FormCol from "@/components/FormCol/index.vue";
|
|
import CustomerEditDialog from './components/CustomerEditDialog.vue';
|
|
|
|
// 默认排序字段
|
|
const defaultSort = {
|
|
prop: "createTime",
|
|
order: "descending"
|
|
}
|
|
|
|
export default {
|
|
name: "Customer",
|
|
mixins: [$showColumns],
|
|
dicts: ['customer_intent_level', 'customer_status'],
|
|
components: {FormCol, CustomerEditDialog},
|
|
data() {
|
|
return {
|
|
span: 24,
|
|
// 字段列表
|
|
columns: [
|
|
{key: 'id', visible: false, label: 'ID', minWidth: null, sortable: true, overflow: false, align: 'center', width: "80"},
|
|
{key: 'code', visible: true, label: '编号', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'name', visible: true, label: '名称', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'status', visible: true, label: '状态', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'intentLevel', visible: true, label: '意向强度', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'mobile', visible: true, label: '手机号', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'wechat', visible: true, label: '微信号', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'source', visible: true, label: '来源', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'intents', visible: true, label: '意向', minWidth: null, sortable: true, overflow: true, align: 'center', width: null},
|
|
{key: 'followName', visible: true, label: '跟进人', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'lastFollowTime', visible: true, label: '最近跟进', minWidth: null, sortable: false, overflow: false, align: 'center', width: "100"},
|
|
{key: 'nextFollowTime', visible: true, label: '下次跟进', minWidth: null, sortable: false, overflow: false, align: 'center', width: "100"},
|
|
{key: 'remark', visible: true, label: '备注', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'createTime', visible: true, label: '创建时间', minWidth: null, sortable: true, overflow: false, align: 'center', width: "100"},
|
|
],
|
|
// 排序方式
|
|
orderSorts: ['ascending', 'descending', null],
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 客户表格数据
|
|
customerList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
defaultSort,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 20,
|
|
orderByColumn: defaultSort.prop,
|
|
isAsc: defaultSort.order,
|
|
id: null,
|
|
code: null,
|
|
name: null,
|
|
status: null,
|
|
intentLevel: null,
|
|
mobile: null,
|
|
wechat: null,
|
|
source: null,
|
|
intent: null,
|
|
followId: null,
|
|
remark: null,
|
|
deleted: null
|
|
},
|
|
// 编辑的行
|
|
row: {},
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 当排序按钮被点击时触发 **/
|
|
onSortChange(column) {
|
|
if (column.order == null) {
|
|
this.queryParams.orderByColumn = defaultSort.prop;
|
|
this.queryParams.isAsc = defaultSort.order;
|
|
} else {
|
|
this.queryParams.orderByColumn = column.prop;
|
|
this.queryParams.isAsc = column.order;
|
|
}
|
|
this.getList();
|
|
},
|
|
/** 查询客户列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listCustomer(this.queryParams).then(response => {
|
|
this.customerList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.handleQuery();
|
|
},
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
this.ids = selection.map(item => item.id)
|
|
this.single = selection.length!==1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.row = {};
|
|
this.open = true;
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.row = row;
|
|
this.open = true;
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const ids = row.id || this.ids;
|
|
this.$modal.confirm('是否确认删除客户编号为"' + ids + '"的数据项?').then(function() {
|
|
return delCustomer(ids);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download('bst/customer/export', {
|
|
...this.queryParams
|
|
}, `customer_${new Date().getTime()}.xlsx`)
|
|
}
|
|
}
|
|
};
|
|
</script>
|