<template>
|
<div class="custom-manage">
|
<div class="tab-view">
|
<el-tabs v-model="activeName" @tab-click="tabsClick">
|
<el-tab-pane label="全部(含所有公海)" name="first"></el-tab-pane>
|
<el-tab-pane label="全部(含公海)" name="second"></el-tab-pane>
|
<el-tab-pane label="全部(不含公海)" name="third"></el-tab-pane>
|
<el-tab-pane label="公海已分配" name="fourth"></el-tab-pane>
|
<el-tab-pane label="公未分配" name="aaa"></el-tab-pane>
|
</el-tabs>
|
<div class="sel-gonghai">
|
<el-select v-model="gonghaiValue" placeholder="请选择" class="query-class-sel" size="mini">
|
<el-option v-for="item in gonghaiOptions" :key="item.value" :label="item.label" :value="item.value">
|
</el-option>
|
</el-select>
|
<div class="query-class-btn">
|
<i class="el-icon-setting"></i>
|
</div>
|
</div>
|
</div>
|
<SearchCommonView ref="searchCommonView" :query-class-options="queryClassOptions" :search-options="searchOptions" />
|
<div class="btn-pager">
|
<PublicFunctionBtnView
|
:duplicate-check="true"
|
:list-button="true"
|
:map-button="true"
|
:statistics="true"
|
:operates-list="operatesList"
|
/>
|
<PagerView class="page" />
|
</div>
|
<TableCommonView ref="tableListRef" v-loading="loading" :table-list="tableList">
|
<template slot="tableButton">
|
<el-table-column label="操作" width="180">
|
<template slot-scope="scope">
|
<el-button type="text" size="small">变更公海</el-button>
|
<el-button @click="handleClick(scope.row)" type="text" size="small">编辑</el-button>
|
<el-button type="text" size="small">跟进</el-button>
|
<el-button @click="delClick(scope.row.id)" type="text" size="small">删除</el-button>
|
</template>
|
</el-table-column>
|
</template>
|
</TableCommonView>
|
<!-- 新建/编辑客户管理 -->
|
<AddClientManageDialog v-if="editConfig.visible" :edit-client-manage-config="editConfig" />
|
</div>
|
</template>
|
|
<script>
|
import AddClientManageDialog from "@/views/client/client/AddClientManageDialog.vue"
|
import { getClientList, getDeleteClient } from "@/api/client/client"
|
|
export default {
|
name: "CustomManage",
|
props: {},
|
components: {
|
AddClientManageDialog
|
},
|
computed: {
|
searchCommonHeight() {
|
return this.$refs.searchCommonView.offsetHeight
|
}
|
},
|
data() {
|
return {
|
tableList: {},
|
loading: false,
|
activeName: "first",
|
gonghaiValue: "",
|
gonghaiOptions: [],
|
queryClassOptions: [
|
{ value: "1", label: "全部" },
|
{ value: "2", label: "潜在客户" },
|
{ value: "3", label: "成交客户" },
|
{ value: "4", label: "今日待联系" },
|
{ value: "5", label: "本月需回访" },
|
{ value: "6", label: "超过15天未联系" }
|
],
|
searchOptions: [],
|
operatesList: [
|
{ id: "1", name: "共享" },
|
{ id: "2", name: "群发邮件" },
|
{ id: "3", name: "群发短信" },
|
{ id: "4", name: "批量编辑" },
|
{ id: "5", name: "变更公海" },
|
{ id: "6", name: "提交审批" },
|
{ id: "7", name: "导出" },
|
{ id: "8", name: "下载全部附件" }
|
],
|
editConfig: {
|
visible: false,
|
title: "新建",
|
infomation: {}
|
}
|
}
|
},
|
created() {
|
this.setTable()
|
this.getData()
|
},
|
methods: {
|
setTable() {
|
this.tableList = {
|
tableInfomation: [],
|
tableColumn: [
|
{ label: "客户名称", prop: "name", min: 100 }, // 客户名称
|
{ label: "销售负责人", prop: "member_id" }, // 销售负责人
|
{ label: "重要级别", prop: "client_level_id" }, // 重要级别
|
{ label: "下次回访日期", prop: "next_visit_time", isTime: true, min: 90 }, // 下次回访日期
|
{ label: "详细地址", prop: "detail_address", min: 200 }, // 详细地址
|
{ label: "客户状态", prop: "client_status_id" }, // 客户状态
|
{ label: "联系人姓名", prop: "contact_name" }, // 联系人姓名
|
{ label: "手机号码", prop: "contact_phone" } // 手机号码
|
]
|
}
|
this.searchOptions = []
|
for (let i = 0; i < this.tableList.tableColumn.length; i++) {
|
const label = this.tableList.tableColumn[i].label
|
this.searchOptions.push({ value: (i + 1).toString(), label: label })
|
}
|
},
|
// 请求数据
|
async getData() {
|
this.loading = true
|
await getClientList()
|
.then((res) => {
|
console.log(res)
|
if (res.code === 200) {
|
if (res.data.list && res.data.list.length > 0) {
|
const list = res.data.list.map((item) => {
|
let contact_name = ""
|
let contact_phone = ""
|
if (item.contacts.length !== 0) {
|
for (let i = 0; i < item.contacts.length; i++) {
|
if (item.contacts[i].is_first) {
|
contact_name = item.contacts[i].name
|
contact_phone = item.contacts[i].phone
|
}
|
}
|
}
|
|
return {
|
...item,
|
contact_name: contact_name,
|
contact_phone: contact_phone
|
}
|
})
|
this.tableList.tableInfomation = list || []
|
} else {
|
this.tableList.tableInfomation = []
|
}
|
} else {
|
this.tableList.tableInfomation = []
|
}
|
this.loading = false
|
})
|
.catch((err) => {
|
console.log(err)
|
this.tableList.tableInfomation = []
|
this.loading = false
|
})
|
},
|
tabsClick(tab, event) {
|
console.log(tab, event)
|
},
|
// 新建
|
addBtnClick() {
|
this.editConfig.visible = true
|
this.editConfig.title = "新建"
|
this.editConfig.infomation = {}
|
},
|
// 编辑
|
handleClick(row) {
|
console.log(row)
|
this.editConfig.visible = true
|
this.editConfig.title = "编辑"
|
let contactObj = {}
|
if (row.contacts.length > 0) {
|
row.contacts.forEach((ele) => {
|
if (ele.is_first) {
|
contactObj = { ...ele }
|
}
|
})
|
}
|
console.log(contactObj)
|
this.editConfig.infomation = {
|
...row,
|
contact_wechat: contactObj.length > 0 ? contactObj.wechat : "",
|
contact_email: contactObj.length > 0 ? contactObj.email : ""
|
}
|
},
|
// 删除
|
delClick(id) {
|
this.$confirm("是否确认删除?", "警告", {
|
confirmButtonText: "确定",
|
cancelButtonText: "取消",
|
type: "warning"
|
})
|
.then(function () {
|
return getDeleteClient({ id: id })
|
})
|
.then((response) => {
|
if (response.code === 200) {
|
this.$message.success("删除成功")
|
this.getData()
|
} else {
|
this.$message.warning("删除失败")
|
}
|
})
|
.catch(function () {})
|
},
|
getSelectArray(val) {
|
console.log(val)
|
}
|
}
|
}
|
</script>
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
<style lang="scss" scoped>
|
.custom-manage {
|
.tab-view {
|
position: relative;
|
.sel-gonghai {
|
display: flex;
|
position: absolute;
|
top: 5px;
|
left: 660px;
|
height: 35px;
|
line-height: 35px;
|
.query-class-sel {
|
width: 165px;
|
margin-left: 10px;
|
}
|
.query-class-btn {
|
font-size: 16px;
|
margin-left: 10px;
|
color: #bebebe;
|
}
|
}
|
}
|
.btn-pager {
|
display: flex;
|
.page {
|
margin-left: auto;
|
}
|
}
|
}
|
::v-deep {
|
.el-tabs--top .el-tabs__item.is-top:nth-child(2) {
|
padding-left: 25px;
|
}
|
.el-tabs__item {
|
padding: 0 25px;
|
height: 45px;
|
}
|
}
|
</style>
|