123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="客户编码" prop="customerCode">
- <el-input
- style="width:220px"
- v-model="queryParams.customerCode"
- placeholder="请输入客户编码"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="客户名称" prop="customerName">
- <el-input
- style="width:220px"
- v-model="queryParams.customerName"
- placeholder="请输入客户名称"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="手机" prop="mobile">
- <el-input
- style="width:220px"
- v-model="queryParams.mobile"
- placeholder="请输入手机"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="所属部门" prop="deptId">
- <treeselect style="width:220px" v-model="queryParams.deptId" :options="deptOptions" :show-count="true" placeholder="请选择所属部门" />
- </el-form-item>
- <el-form-item label="客户状态" prop="status">
- <el-select style="width:220px" v-model="queryParams.status" placeholder="请选择客户状态" clearable size="small">
- <el-option
- v-for="item in statusOptions"
- :key="item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="跟进阶段" prop="visitStatus">
- <el-select style="width:220px" multiple filterable v-model="visitStatusArr" placeholder="请选择跟进阶段" clearable size="small">
- <el-option
- v-for="item in visitStatusOptions"
- :key="item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="客户类型" prop="customerLevel">
- <el-select style="width:220px" filterable v-model="queryParams.customerLevel" placeholder="请选择客户类型" clearable size="small">
- <el-option
- v-for="item in customerLevelOptions"
- :key="item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="客户标签" prop="tags">
- <el-select style="width:220px" multiple filterable v-model="tagIds" placeholder="请选择客户标签" clearable size="small">
- <el-option
- v-for="item in tagsOptions"
- :key="item.dictLabel"
- :label="item.dictLabel"
- :value="item.dictLabel"
- />
- </el-select>
- </el-form-item>
- <!-- <el-form-item label="是否认领" prop="isReceive">
- <el-select v-model="queryParams.isReceive" placeholder="请选择是否认领" clearable size="small">
- <el-option
- v-for="item in receiveOptions"
- :key="item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item> -->
- <el-form-item label="员工姓名" prop="companyUserNickName">
- <el-input
- style="width:220px"
- v-model="queryParams.companyUserNickName"
- placeholder="请输入员工姓名"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="创建时间" prop="createTime">
- <el-date-picker
- style="width:220px"
- clearable size="small"
- v-model="dateRange"
- type="daterange"
- value-format="yyyy-MM-dd"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="客户来源" prop="source">
- <el-select style="width:220px" filterable multiple v-model="sourceArr" placeholder="请选择客户来源" clearable size="small">
- <el-option
- v-for="item in sourceOptions"
- :key="item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="是否下单" prop="isBuy">
- <el-select style="width:220px" filterable v-model="queryParams.isBuy" placeholder="请选择是否下单" clearable size="small">
- <el-option key="1" label="是" value="1" />
- <el-option key="0" label="否" value="0" />
- </el-select>
- </el-form-item>
- <el-form-item label="历史订单" prop="isHisOrder">
- <el-select style="width:220px" filterable v-model="queryParams.isHisOrder" placeholder="请选择历史订单" clearable size="small">
- <el-option key="1" label="是" value="1" />
- <el-option key="0" label="否" value="0" />
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button type="cyan" 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="success"
- icon="el-icon-edit"
- size="mini"
- :disabled="multiple"
- @click="handleAssign"
- v-hasPermi="['crm:customer:assignToUser']"
- >客户分配</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- size="mini"
- @click="handleAssignList"
- v-hasPermi="['crm:customerAssign:list']"
- >分配历史记录</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- size="mini"
- :disabled="multiple"
- @click="handleEditScource"
- v-hasPermi="['crm:customer:editScource']"
- >修改客户来源</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- size="mini"
- :disabled="multiple"
- @click="handleSendBatchSms"
- v-hasPermi="['crm:customer:sendBatchSms']"
- >批量发送短信</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- icon="el-icon-edit"
- size="mini"
- @click="handleAddScource"
- v-hasPermi="['crm:customer:source']"
- >客户来源</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- v-hasPermi="['crm:customer:export']"
- >导出</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- icon="el-icon-upload2"
- size="mini"
- @click="handleImport"
- v-hasPermi="['crm:customer:importVisit']"
- >导入跟进阶段</el-button>
- </el-col>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <el-tabs type="card" v-model="queryParams.isReceive" @tab-click="handleClick">
- <el-tab-pane label="未领取" name="0"></el-tab-pane>
- <el-tab-pane label="已领取" name="1"></el-tab-pane>
- </el-tabs>
- <el-table height="500" border v-loading="loading" :data="customerList" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column label="客户编码" align="center" prop="customerCode" />
- <el-table-column label="客户名称" align="center" prop="customerName" :show-overflow-tooltip="true">
- <template slot-scope="scope">
- <el-link @click="handleShow(scope.row)" :underline="false" type="primary" >{{scope.row.customerName}}</el-link>
- </template>
- </el-table-column>
- <el-table-column label="手机" width="120px" align="center" prop="mobile" >
- <template slot-scope="scope">
- {{scope.row.mobile}}
- </template>
- </el-table-column>
- <el-table-column label="客户来源" align="center" prop="source">
- <template slot-scope="scope">
- <el-tag prop="status" v-for="(item, index) in sourceOptions" v-if="scope.row.source==item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
-
- <el-table-column label="客户类型" width="200" align="center" prop="customerLevel">
- <template slot-scope="scope">
- <el-tag v-for="(item, index) in customerLevelOptions" v-if="scope.row.customerLevel===item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="标签" align="center" prop="tags" />
- <el-table-column label="备注" align="center" prop="remark" />
- <el-table-column label="进线客户详情" align="center" :show-overflow-tooltip="true" prop="registerDesc" />
- <el-table-column label="领取时间" align="center" prop="receiveTime" />
- <el-table-column label="进线客户提交日期" align="center" prop="registerSubmitTime" />
- <el-table-column label="创建时间" align="center" prop="createTime" width="180">
- </el-table-column>
- <el-table-column label="认领人" align="center" prop="companyUserNickName" :show-overflow-tooltip="true">
- </el-table-column>
- <!-- <el-table-column label="最后一次跟进时间" align="center" prop="receiveTime" width="180"> -->
- <!-- </el-table-column> -->
- <el-table-column label="入公海时间" align="center" prop="poolTime" width="180">
- </el-table-column>
- <el-table-column label="成交总价" align="center" prop="payMoney"/>
- <el-table-column label="成交类型" align="center" prop="orderType">
- <template slot-scope="scope">
- <el-tag v-for="item in orderTypeOptions" v-if="scope.row.orderType === item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="最新下单时间" align="center" prop="orderTime" width="180"></el-table-column>
- <el-table-column label="跟进阶段" width="200" align="center" prop="visitStatus">
- <template slot-scope="scope">
- <el-tag prop="visitStatus" v-for="(item, index) in visitStatusOptions" v-if="scope.row.visitStatus==item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="跟进类型" align="center" prop="visitType">
- <template slot-scope="scope">
- <el-tag v-for="item in visitTypeOptions" v-if="scope.row.visitType === item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="跟进内容" align="center" prop="visitContent"/>
- <el-table-column label="最新跟进时间" align="center" prop="visitTime" width="180"></el-table-column>
- <el-table-column label="操作" align="center" fixed="right" width="120px" 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-hasPermi="['crm:customer:edit']"
- >修改</el-button> -->
- <el-button
- size="mini"
- type="text"
- @click="handleShow(scope.row)"
- v-hasPermi="['crm:customer:query']"
- >查看</el-button>
- <el-button
- v-if="scope.row.isReceive==1"
- size="mini"
- type="text"
- @click="handleRecover(scope.row)"
- v-hasPermi="['crm:customer:recover']"
- >回收公海</el-button>
- <!-- <el-button
- size="mini"
- type="text"
- @click="handleAssign(scope.row)"
- v-hasPermi="['crm:customer:assign']"
- >分配客户</el-button> -->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-mouse"
- @click="handleSwitchToTop(scope.row)"
- v-hasPermi="['crm:customer:switchToTop']"
- >{{ scope.row.isTop === 1 ? '取消置顶' : '置顶' }}</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"
- />
- <el-drawer
- size="75%"
- :title="show.title" :visible.sync="show.open"
- >
- <customer-details ref="customerDetails" />
- </el-drawer>
- <el-dialog :title="addSms.title" :visible.sync="addSms.open" width="1000px" append-to-body>
- <add-batch-sms ref="sms" @close="closeSms()"></add-batch-sms>
- </el-dialog>
- <el-dialog :title="source.title" :visible.sync="source.open" width="1000px" append-to-body>
- <edit-source ref="editSource" @close="closeSource()"></edit-source>
- </el-dialog>
- <el-dialog :title="customerSource.title" :visible.sync="customerSource.open" width="1000px" append-to-body>
- <customer-source ref="customerSource" @close="closeSource()"></customer-source>
- </el-dialog>
- <el-dialog :title="assignList.title" :visible.sync="assignList.open" width="1000px" append-to-body>
- <customer-assign-list ref="assignList" @close="closeAssignList"></customer-assign-list>
- </el-dialog>
- <el-dialog :title="assign.title" :visible.sync="assign.open" width="800px" append-to-body>
- <assign-user ref="assignUser" @close="closeAssign" />
- </el-dialog>
- <el-dialog :title="upload.title" :visible.sync="upload.open" width="400px" append-to-body>
- <el-upload ref="upload" :limit="1" accept=".xlsx, .xls" :headers="upload.headers" :action="upload.url + '?updateSupport=' + upload.updateSupport" :disabled="upload.isUploading" :on-progress="handleFileUploadProgress" :on-success="handleFileSuccess" :auto-upload="false" drag>
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">
- 将文件拖到此处,或
- <em>点击上传</em>
- </div>
- <div class="el-upload__tip" slot="tip">
- <el-link type="info" style="font-size:12px" @click="importTemplate">下载模板</el-link>
- </div>
- <div class="el-upload__tip" style="color:red" slot="tip">提示:仅允许导入“xls”或“xlsx”格式文件!</div>
- </el-upload>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitFileForm">确 定</el-button>
- <el-button @click="upload.open = false">取 消</el-button>
- </div>
- </el-dialog>
- <el-dialog title="导入结果" :close-on-press-escape="false" :close-on-click-modal="false" :visible.sync="importMsgOpen" width="500px" append-to-body>
- <div class="import-msg" v-html="importMsg">
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- assignToUser,
- recover,
- receive,
- getCustomerList,
- addCustomer,
- updateCustomer,
- getCustomerDetails,
- exportCustomer,
- importVisitTemplate,
- switchToTop
- } from "@/api/crm/customer";
- import { getToken } from "@/utils/auth";
- import customerDetails from '../components/customerDetails.vue';
- import {getCitys} from "@/api/store/city";
- import { treeselect } from "@/api/company/companyDept";
- import Treeselect from "@riophae/vue-treeselect";
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
- import addBatchSms from '../components/addBatchSms.vue';
- import editSource from '../components/editSource.vue';
- import customerSource from '../components/customerSource.vue';
- import customerAssignList from '../components/customerAssignList.vue';
- import assignUser from '../components/assignUser.vue';
- import {customerLevelOptions} from "@/api/crm/customerLevel";
- export default {
- name: "Customer",
- components: {assignUser,customerAssignList,addBatchSms,editSource, customerDetails,Treeselect,customerSource },
- data() {
- return {
- upload: {
- // 是否显示弹出层(用户导入)
- open: false,
- // 弹出层标题(用户导入)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/crm/customer/importVisitData",
- },
- importMsgOpen:false,
- importMsg:"",
- tagIds:[],
- tagsOptions:[],
- assignList:{
- title:"分配历史记录",
- open:false,
- },
- orderTypeOptions: [],
- visitTypeOptions:[],
- visitStatusOptions:[],
- customerSource:{
- open:false,
- title:"客户来源"
- },
- source:{
- open:false,
- title:"修改客户来源"
- },
- dateRange:[],
- addSms:{
- open:false,
- title:"批量发短信"
- },
- assign:{
- title:"分配客户",
- open:false,
- },
- defaultProps: {
- children: "children",
- label: "label",
- },
- // 部门树选项
- deptOptions: undefined,
- // 部门名称
- deptName: undefined,
- cityIds:[],
- citys:[],
- tags:[],
- visitStatusArr:[],
- ctsTypeArr:[],
- sourceArr:[],
- inputVisible: false,
- inputValue: '',
- receiveOptions:[],
- statusOptions:[],
- typeOptions:[],
- sourceOptions:[],
- sexOptions:[],
- show:{
- title:"客户详情",
- open:false,
- },
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 客户表格数据
- customerList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- customerCode: null,
- customerName: null,
- mobile: null,
- sex: null,
- weixin: null,
- userId: null,
- createUserId: null,
- receiveUserId: null,
- customerUserId: null,
- address: null,
- location: null,
- detailAddress: null,
- lng: null,
- lat: null,
- status: null,
- isReceive: null,
- deptId: null,
- isDel: null,
- customerType: null,
- receiveTime: null,
- poolTime: null,
- companyId: null,
- isLine: null,
- source: null,
- tags: null,
- tagList:[],
- visitStatus:null,
- customerLevel: null,
- },
- // 表单参数
- form: {
- province:null,
- city:null,
- district:null,
- },
- // 表单校验
- rules: {
- customerName: [
- { required: true, message: "客户名称不能为空", trigger: "blur" }
- ],
- mobile: [
- { required: true, message: "手机号不能为空", trigger: "blur" }
- ],
- sex: [
- { required: true, message: "性别不能为空", trigger: "blur" }
- ],
- source: [
- { required: true, message: "客户来源不能为空", trigger: "blur" }
- ],
- },
- customerLevelOptions: []
- };
- },
- watch: {
- // 根据名称筛选部门树
- deptName(val) {
- this.$refs.tree.filter(val);
- },
- },
- created() {
- this.getDicts("store_order_type").then((response) => {
- this.orderTypeOptions = response.data;
- });
- this.getDicts("crm_customer_visit_type").then((response) => {
- this.visitTypeOptions = response.data;
- });
- this.getDicts("crm_customer_user_status").then((response) => {
- this.visitStatusOptions = response.data;
- });
- this.getDicts("crm_customer_source").then((response) => {
- this.sourceOptions = response.data;
- });
- this.getDicts("common_sex").then((response) => {
- this.sexOptions = response.data;
- });
- this.getDicts("crm_customer_source").then((response) => {
- this.sourceOptions = response.data;
- });
- this.getDicts("common_sex").then((response) => {
- this.sexOptions = response.data;
- });
- this.getDicts("crm_customer_status").then((response) => {
- this.statusOptions = response.data;
- });
- this.getDicts("crm_customer_type").then((response) => {
- this.typeOptions = response.data;
- });
- this.getDicts("crm_customer_is_receive").then((response) => {
- this.receiveOptions = response.data;
- });
- this.getDicts("crm_customer_tag").then((response) => {
- this.tagsOptions = response.data;
- });
- this.getTreeselect();
- this.getCitys();
- this.getList();
- this.getCustomerLevelOptions()
- },
- methods: {
- getCustomerLevelOptions(){
- customerLevelOptions().then((response) => {
- this.customerLevelOptions = response.data;
- });
- },
- handleShow(row){
- this.show.open=true;
- var that=this;
- setTimeout(() => {
- that.$refs.customerDetails.getDetails(row.customerId);
- }, 200);
- },
- handleAssignList(){
- this.assignList.open=true;
- var that=this;
- setTimeout(() => {
- that.$refs.assignList.getData();
- }, 200);
- },
- closeAssignList(){
- this.assignList.open=false;
- this.getList();
- },
- handleAddScource(){
- this.customerSource.open=true;
- var that=this;
- setTimeout(() => {
- that.$refs.customerSource.getData();
- }, 200);
- },
- closeCustomerSource(){
- this.customerSource.open=false;
- this.getList();
- },
- changeVal() {
- console.log(1)
- this.$forceUpdate();//解决点击计数器失效问题
- },
- handleEditScource(){
- this.source.open=true;
- var that=this;
- setTimeout(() => {
- that.$refs.editSource.handleEdit(that.ids);
- }, 200);
- },
- closeSource(){
- this.source.open=false;
- this.getList();
- },
- closeSms(){
- this.addSms.open=false;
- },
- handleSendBatchSms(){
- const customerIds = this.ids;
- this.addSms.open=true;
- var that=this;
- setTimeout(() => {
- console.log(customerIds)
- that.$refs.sms.reset(customerIds);
- }, 500);
- },
- handleClick(tab, event) {
- this.queryParams.isReceive=tab.name;
- this.getList();
- },
- handleAssign(){
- var that=this;
- var ids=this.ids;
- that.assign.open=true;
- setTimeout(() => {
- if(that.queryParams.isReceive=="0"){
- that.$refs.assignUser.init(ids,2);
- }
- else if(that.queryParams.isReceive=="1"){
- that.$refs.assignUser.init(ids,3);
- }
- }, 200);
- },
- closeAssign(){
- this.assign.open=false;
- this.getList();
- },
- handleRecover(row) {
- this.$confirm('是否确认回收客户"' + row.customerName + '"?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- var data={customerUserId:row.customerUserId}
- return recover(data);
- }).then(() => {
- this.getList();
- this.msgSuccess("操作成功");
- }).catch(function() {});
- },
- handleReceive(row) {
- this.$confirm('是否确认认领客户"' + row.customerName + '"?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- var data={customerId:row.customerId}
- return receive(data);
- }).then(() => {
- this.getList();
- this.msgSuccess("操作成功");
- }).catch(function() {});
- },
- handleSwitchToTop(row) {
- switchToTop(row.customerId).then(response => {
- const {code} = response
- if (code === 200) {
- this.msgSuccess(row.isTop === 0 ? "已置顶" : "已取消置顶");
- this.getList();
- }
- })
- },
- getTreeselect() {
- treeselect().then((response) => {
- this.deptOptions = response.data;
- });
- },
- // 筛选节点
- filterNode(value, data) {
- if (!value) return true;
- return data.label.indexOf(value) !== -1;
- },
- // 节点单击事件
- handleNodeClick(data) {
- this.queryParams.deptId = data.id;
- this.getList();
- },
- handleCityChange(value) {
- console.log(value);
- var nodes=this.$refs.citySelect.getCheckedNodes();
- this.form.address=nodes[0].pathLabels[0]+"-"+nodes[0].pathLabels[1]+"-"+nodes[0].pathLabels[2];
- this.form.cityIds=value.toString();
- console.log(this.form.address);
- },
- getCitys(){
- getCitys().then(res => {
- this.loading = false;
- this.citys=res.data;
- })
- },
- /** 查询客户列表 */
- getList() {
- this.loading = true;
- if(this.visitStatusArr.length>0){
- this.queryParams.visitStatus=this.visitStatusArr.toString();
- }
- else{
- this.queryParams.visitStatus=null
- }
- if(this.ctsTypeArr.length>0){
- this.queryParams.customerType=this.ctsTypeArr.toString();
- }
- else{
- this.queryParams.customerType=null
- }
- if(this.sourceArr.length>0){
- this.queryParams.source=this.sourceArr.toString();
- }
- else{
- this.queryParams.source=null
- }
- if(this.tagIds.length>0){
- this.queryParams.tags=this.tagIds.toString();
- }
- else{
- this.queryParams.tags=null
- }
- getCustomerList(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
- this.customerList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- customerId: null,
- customerCode: null,
- customerName: null,
- mobile: null,
- sex: null,
- weixin: null,
- remark: null,
- userId: null,
- createUserId: null,
- receiveUserId: null,
- customerUserId: null,
- address: null,
- location: null,
- detailAddress: null,
- lng: null,
- lat: null,
- createTime: null,
- updateTime: null,
- status: 0,
- isReceive: null,
- deptId: null,
- isDel: null,
- customerType: null,
- receiveTime: null,
- poolTime: null,
- companyId: null,
- isLine: null,
- source: null,
- tags: null
- };
- this.tags=[];
- this.cityIds=[];
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.customerId)
- this.single = selection.length!==1
- this.multiple = !selection.length
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.open = true;
- this.title = "添加客户";
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- var that=this;
- const customerId = row.customerId || this.ids.toString()
- var data={customerId:customerId}
- getCustomerDetails(data).then(response => {
- this.form = response.data;
- if(this.form.status!=null){
- this.form.status = this.form.status.toString();
- }
- if(this.form.customerType!=null){
- this.form.customerType = this.form.customerType.toString();
- }
- if(this.form.sex!=null){
- this.form.sex = this.form.sex.toString();
- }
- if(this.form.source!=null){
- this.form.source = this.form.source.toString();
- }
- if(this.form.tags!=null){
- this.tags = this.form.tags.split(",")
- }
- console.log(this.form.cityIds)
- if(this.form.cityIds!=null){
- var ids=this.form.cityIds.split(",");
- this.cityIds=[];
- ids.forEach(element => {
- var id=parseInt(element);
- that.cityIds.push(id)
- });
- }
- this.open = true;
- this.title = "修改客户";
- });
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- if (this.form.customerId != null) {
- updateCustomer(this.form).then(response => {
- if (response.code === 200) {
- this.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- }
- });
- } else {
- addCustomer(this.form).then(response => {
- if (response.code === 200) {
- this.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- }
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const customerIds = row.customerId || this.ids;
- this.$confirm('是否确认删除客户编号为"' + customerIds + '"的数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return delLineCustomer(customerIds);
- }).then(() => {
- this.getList();
- this.msgSuccess("删除成功");
- }).catch(function() {});
- },
- /** 导出按钮操作 */
- /** 导出按钮操作 */
- handleExport() {
- const queryParams = this.queryParams;
- this.$confirm('是否确认导出所有客户数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return exportCustomer(queryParams);
- }).then(response => {
- this.download(response.msg);
- }).catch(function() {});
- },
- /** 导入按钮操作 */
- handleImport() {
- this.upload.title = "客户跟进情况导入";
- this.upload.open = true;
- },
- /** 下载模板操作 */
- importTemplate() {
- importVisitTemplate().then((response) => {
- this.download(response.msg);
- });
- },
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true;
- },
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- this.upload.open = false;
- this.upload.isUploading = false;
- this.$refs.upload.clearFiles();
- this.importMsgOpen=true;
- this.importMsg=response.msg
- this.getList();
- },
- // 提交上传文件
- submitFileForm() {
- this.$refs.upload.submit();
- },
- }
- };
- </script>
- <style>
- .el-tag + .el-tag {
- margin-left: 10px;
- }
- .button-new-tag {
- margin-left: 10px;
- height: 32px;
- line-height: 30px;
- padding-top: 0;
- padding-bottom: 0;
- }
- .input-new-tag {
- width: 90px;
- margin-left: 10px;
- vertical-align: bottom;
- }
- .el-dialog__wrapper{
- z-index: 100000;
- }
- </style>
|