123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475 |
- <template>
- <el-drawer size="75%" title="客户选择" :visible.sync="shows" append-to-body>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="公司名" prop="companyId">
- <el-select filterable v-model="queryParams.companyId" placeholder="请选择公司名" @change="companyChange" clearable size="small">
- <el-option
- v-for="item in companys"
- :key="item.companyId"
- :label="item.companyName"
- :value="item.companyId"
- />
- </el-select>
- </el-form-item>
- <el-form-item >
- <treeselect style="width: 220px" :clearable="false" v-model="queryParams.deptId" :options="deptOptions" :show-count="true" placeholder="请选择归属部门" />
- </el-form-item>
- <el-form-item label="认领人" prop="companyUserNickName">
- <el-input
- v-model="queryParams.companyUserNickName"
- placeholder="请输入认领人"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="客户状态" prop="status">
- <el-select v-model="queryParams.status" placeholder="请选择客户状态" clearable size="small">
- <el-option
- v-for="item in statusOptions"
- :key="'status'+item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="客户类型" prop="customerType">
- <el-select multiple v-model="ctsTypeArr" placeholder="请选择客户类型" clearable size="small">
- <el-option
- v-for="(item, index) in typeOptions"
- :key="`${item.dictValue}-${index}`"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="创建时间" prop="createTime">
- <el-date-picker clearable size="small" style="width: 205.4px"
- 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="receiveTimeRange">
- <el-date-picker
- style="width:205.4px"
- clearable size="small"
- v-model="receiveTimeRange"
- 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 multiple v-model="sourceArr" placeholder="请选择客户来源" clearable size="small">
- <el-option
- v-for="item in sourceOptions"
- :key="'source'+item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="客户标签" prop="tags">
- <el-select multiple v-model="tagIds" placeholder="请选择客户标签" clearable size="small">
- <el-option
- v-for="(item, index) in tagsOptions"
- :key="`${item.dictValue}-${index}`"
- :label="item.dictLabel"
- :value="item.dictLabel"
- />
- </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-table border v-loading="loading" :data="customerList" :row-key="getRowKeys" @selection-change="handleSelectionChange" size="mini" ref="table" height="460">
- <el-table-column type="selection" width="55" align="center" :reserve-selection="true" />
- <el-table-column label="ID" align="center" prop="customerId" />
- <el-table-column label="所属公司" align="center" prop="companyName" width="300"/>
- <el-table-column label="客户编码" align="center" prop="customerCode" width="150"/>
- <el-table-column label="客户名称" align="center" prop="customerName" />
- <el-table-column label="手机" align="center" prop="mobile" width="90"/>
- <el-table-column label="性别" align="center" prop="sex" width="55">
- <template slot-scope="scope">
- <el-tag prop="sex" v-for="(item, index) in sexOptions" :key="'sex'+index" v-if="scope.row.sex==item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="微信号" align="center" prop="weixin" width="95"/>
- <el-table-column label="所在地" align="center" prop="address" />
- <el-table-column label="标签" align="center" prop="tags" width="100" show-overflow-tooltip="true"/>
- <el-table-column label="客户来源" align="center" prop="source">
- <template slot-scope="scope">
- <el-tag prop="source" v-for="(item, index) in sourceOptions" :key="'source'+index" v-if="scope.row.source==item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="客户类型" align="center" prop="customerType">
- <template slot-scope="scope">
- <el-tag prop="customerType" v-for="(item, index) in typeOptions" :key="'customerType'+index" v-if="scope.row.customerType==item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="客户状态" align="center" prop="status">
- <template slot-scope="scope">
- <el-tag prop="status" v-for="(item, index) in statusOptions" :key="'status'+index" v-if="scope.row.status==item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="认领人" align="center" prop="companyUserNickName" />
- <el-table-column label="领取时间" align="center" prop="receiveTime" width="135"/>
- <el-table-column label="创建时间" align="center" prop="createTime" width="135"/>
- <el-table-column label="最后一次跟进时间" align="center" prop="lastTime" width="180">
- </el-table-column>
- <el-table-column label="入公海时间" align="center" prop="poolTime" width="180" />
- <el-table-column label="操作" fixed="right" width="180px" align="center" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- @click="handleShow(scope.row)"
- v-hasPermi="['crm:customer:query']"
- >查看</el-button>
- </template>
- </el-table-column>
- </el-table>
- <div slot="footer" class="dialog-footer" style="width: 100%;display: flex;flex-direction: row-reverse;margin-top: 20px;z-index: 9898989;padding-top: 5px">
- <el-button type="primary" @click="submitForm" style="margin-bottom: 5px">确 定</el-button>
- </div>
- <el-drawer
- size="75%"
- :title="show.title" :visible.sync="show.open" append-to-body>
- <customer-details ref="customerDetails" />
- </el-drawer>
- </div>
- </el-drawer>
- </template>
- <script>
- import { listCustomerAll } from "@/api/crm/customer";
- import { getCompanyList } from "@/api/company/company";
- import customerDetails from '@/views/crm/components/customerDetails.vue';
- import editCustomerSource from '@/views/crm/components/editCustomerSource.vue';
- import {getCitys} from "@/api/store/city";
- import { throwStatement } from "@babel/types";
- import { treeselect } from "@/api/company/companyDept";
- import Treeselect from "@riophae/vue-treeselect";
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
- export default {
- name: "CustomerSelect",
- components: { customerDetails,editCustomerSource,Treeselect },
- data() {
- return {
- source:{
- title:"修改客户来源",
- open:false,
- },
- shows:false,
- deptOptions:[],
- receiveTimeRange:[],
- tagId:null,
- deptId:undefined,
- companyId:undefined,
- tagsOptions:[],
- ctsTypeArr:[],
- sourceArr:[],
- dateRange:[],
- cityIds:[],
- citys:[],
- tags:[],
- tagIds:[],
- inputVisible: false,
- inputValue: '',
- statusOptions:[],
- typeOptions:[],
- sourceOptions:[],
- sexOptions:[],
- pageSizes: [10, 20, 30, 50,100,500 ],
- show:{
- title:"客户详情",
- open:false,
- },
- companys:[],
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- names: [],
- userIds: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 客户表格数据
- customerList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 查询参数
- queryParams: {
- 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
- },
- // 表单参数
- form: {},
- // 表单校验
- 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" }
- ],
- }
- };
- },
- created() {
- this.getDicts("crm_customer_tag").then((response) => {
- this.tagsOptions = 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;
- });
- getCompanyList().then(response => {
- this.companys = response.data;
- });
- this.getCitys();
- // this.getList();
- },
- methods: {
- setRows(rows){
- this.shows = true;
- this.rows = rows;
- this.initSelect();
- },
- initSelect(){
- if(this.rows && this.rows.length > 0){
- this.rows.forEach(row => {
- this.$refs.table.toggleRowSelection(row);
- })
- }
- },
- getRowKeys(item){
- return item.customerId;
- },
- handleEditSource(){
- this.source.open=true;
- var that=this;
- setTimeout(() => {
- that.$refs.editSource.handleEdit(that.ids);
- }, 200);
- },
- closeSource(){
- this.source.open=false;
- this.getList();
- },
- tagsChange(e){
- var item=this.tagsOptions.find(val => val.dictValue === e);
- console.log(item);
- this.tags.push(item.dictLabel);
- this.form.tags=this.tags.toString();
- },
- 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();
- },
- getCitys(){
- getCitys().then(res => {
- this.loading = false;
- this.citys=res.data;
- })
- },
- handleClose(tag) {
- this.tags.splice(this.tags.indexOf(tag), 1);
- this.form.tags=this.tags.toString();
- },
- showInput() {
- this.inputVisible = true;
- this.$nextTick(_ => {
- this.$refs.saveTagInput.$refs.input.focus();
- });
- },
- handleInputConfirm() {
- let inputValue = this.inputValue;
- if (inputValue) {
- this.tags.push(inputValue);
- }
- this.inputVisible = false;
- this.inputValue = '';
- this.form.tags=this.tags.toString();
- },
- handleShow(row){
- var that=this;
- that.show.open=true;
- setTimeout(() => {
- that.$refs.customerDetails.getDetails(row.customerId);
- }, 200);
- },
- /** 查询客户列表 */
- getList() {
- this.loading = true;
- if(this.receiveTimeRange!=null&&this.receiveTimeRange.length==2){
- this.queryParams.receiveTimeRange=this.receiveTimeRange[0]+"--"+this.receiveTimeRange[1]
- }
- else{
- this.queryParams.receiveTimeRange=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
- }
- listCustomerAll(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
- this.customerList = response.rows;
- this.total = response.total;
- this.loading = false;
- this.initSelect();
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.rows = selection;
- this.ids = selection.map(item => item.customerId)
- this.names = selection.map(item => item.customerName)
- this.single = selection.length!==1
- this.multiple = !selection.length
- },
- getTreeselect() {
- var that=this;
- var param={companyId:this.companyId}
- treeselect(param).then((response) => {
- this.deptOptions = response.data;
- console.log(this.deptOptions)
- if(response.data!=null&&response.data.length>0){
- //this.queryParams.deptId=response.data[0].id;
- }
- });
- },
- companyChange(val){
- console.log(val);
- this.companyId=val;
- this.getTreeselect();
- },
- currDeptChange(val){
- this.queryParams.deptId=val;
- this.getList();
- },
- submitForm(){
- this.$nextTick(() => {
- this.$emit("success", {ids: this.ids, names: this.names, rows: this.rows})
- this.shows = false;
- this.$refs.table.clearSelection();
- })
- },
- }
- };
- </script>
- <style scoped>
- .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;
- }
- .app-container{padding: 0}
- .dialog-footer{
- position: absolute;
- bottom: 0;
- right: 20px;
- background: #FFF;
- }
- </style>
|