Commit fad01280 authored by zhengke's avatar zhengke

111

parent cea090ac
<style>
@import "../../assets/css/customerManage.css";
.el-table__fixed-body-wrapper table {
@import "../../assets/css/customerManage.css";
.el-table__fixed-body-wrapper table {
padding-bottom: 8px !important;
}
}
</style>
<template>
<div class="customerManage">
......@@ -245,10 +245,10 @@
</div>
</template>
<script>
import mySelect from "../dialogModel/select";
import customerInfoBox from "./customerInfoBox";
import customerDialogBox from "./customerDialogBox";
export default {
import mySelect from "../dialogModel/select";
import customerInfoBox from "./customerInfoBox";
import customerDialogBox from "./customerDialogBox";
export default {
components: {
mySelect,
customerInfoBox,
......@@ -256,258 +256,194 @@ export default {
},
data() {
return {
queryType2: [
{
queryType2: [{
label: "客户名称",
show: true,
},
{
}, {
label: "手机号码",
show: true,
},
{
}, {
label: "地址",
show: true,
},
{
}, {
label: "客户来源",
show: true,
},
{
}, {
label: "参团数",
show: true,
},
{
}, {
label: "商机数",
show: true,
},
{
}, {
label: "总评分",
show: true,
},
{
}, {
label: "客户等级",
show: true,
},
{
}, {
label: "余额",
show: true,
},
{
}, {
label: "最后更新时间",
show: true,
},
{
}, {
label: "负责人",
show: true,
},
{
}, {
label: "创建时间",
show: true,
},
{
}, {
label: "创建人",
show: true,
},
{
}, {
label: "生日",
show: true,
},
{
}, {
label: "是否结婚",
show: true,
},
{
}, {
label: "职务",
show: true,
},
{
}, {
label: "是否高中生",
show: true,
},
{
}, {
label: "身份证",
show: true,
},
{
}, {
label: "护照号",
show: true,
},
{
}, {
label: "护照签发地",
show: true,
},
{
}, {
label: "护照签发日期",
show: true,
},
{
}, {
label: "护照过期时间",
show: true,
},
{
}, {
label: "签发机关",
show: true,
},
{
}, {
label: "备注",
show: true,
},
{
}, {
label: "订单交易数",
show: true,
},
{
}, {
label: "订单金额",
show: true,
},
{
}, {
label: "出境记录",
show: true,
},
{
}, {
label: "家庭详细地址 ",
show: true,
},
{
}, {
label: "出生地点",
show: true,
},
{
}, {
label: "经济能力确认",
show: true,
},
{
}, {
label: "是否推存",
show: true,
},
],
queryType: [
{
}, ],
queryType: [{
label: "客户名称",
show: true,
},
{
}, {
label: "手机号码",
show: true,
},
{
}, {
label: "地址",
show: true,
},
{
}, {
label: "客户来源",
show: true,
},
{
}, {
label: "参团数",
show: true,
},
{
}, {
label: "商机数",
show: true,
},
{
}, {
label: "总评分",
show: true,
},
{
}, {
label: "客户等级",
show: true,
},
{
}, {
label: "余额",
show: true,
},
{
}, {
label: "最后更新时间",
show: true,
},
{
}, {
label: "负责人",
show: true,
},
{
}, {
label: "创建时间",
show: true,
},
{
}, {
label: "创建人",
show: true,
},
{
}, {
label: "生日",
show: true,
},
{
}, {
label: "是否结婚",
show: true,
},
{
}, {
label: "职务",
show: true,
},
{
}, {
label: "是否高中生",
show: true,
},
{
}, {
label: "身份证",
show: true,
},
{
}, {
label: "护照号",
show: true,
},
{
}, {
label: "护照签发地",
show: true,
},
{
}, {
label: "护照签发日期",
show: true,
},
{
}, {
label: "护照过期时间",
show: true,
},
{
}, {
label: "签发机关",
show: true,
},
{
}, {
label: "备注",
show: true,
},
{
}, {
label: "订单交易数",
show: true,
},
{
}, {
label: "订单金额",
show: true,
},
{
}, {
label: "出境记录",
show: true,
},
{
}, {
label: "家庭详细地址 ",
show: true,
},
{
}, {
label: "出生地点",
show: true,
},
{
}, {
label: "经济能力确认",
show: true,
},
{
}, {
label: "是否推存",
show: true,
},
],
}, ],
CustomerId: 0,
CustomerIdStr: "",
transferVisible: false,
......@@ -535,36 +471,28 @@ export default {
ID: 36,
},
total: 0,
WhereTypeList: [
{
WhereTypeList: [{
id: -1,
name: "全部",
},
{
}, {
id: 1,
name: "我负责的",
},
{
}, {
id: 2,
name: "下属的",
},
{
}, {
id: 3,
name: "我关注的",
},
],
selectionList: [
{
}, ],
selectionList: [{
name: "转移",
class: "iconfont iconplus-transfer",
myFun: this.transfer,
},
{
}, {
name: "删除",
class: "iconfont icondelete",
myFun: this.delete,
},
],
}, ],
sceneList: [],
SceneEmployeeList: [],
sceneID: 36,
......@@ -614,8 +542,7 @@ export default {
},
GetSceneEmployeeList() {
this.apipost(
"/api/Scene/GetSceneEmployeeList",
{
"/api/Scene/GetSceneEmployeeList", {
LableType: 5,
},
(res) => {
......@@ -656,8 +583,7 @@ export default {
(res) => {
if (res.data.resultCode == 1) {
this.EmployeeList = res.data.data;
} else {
}
} else {}
},
(err) => {}
);
......@@ -680,7 +606,7 @@ export default {
console.log("删除");
},
//导出
export() {
export () {
console.log("导出");
},
// 更改状态
......@@ -690,8 +616,7 @@ export default {
// 关注
CareforCustomer(scope) {
this.apipost(
"/api/Customer/CareforGuesstCustomer",
{
"/api/Customer/CareforGuesstCustomer", {
ID: scope.row.ID,
},
(res) => {
......@@ -725,9 +650,7 @@ export default {
if (res.data.resultCode == 1) {
this.multipleSelection = [];
this.transferVisible = false;
if (type === 3) {
}
{
if (type === 3) {} {
this.drawer = false;
}
this.$message.success(res.data.message);
......@@ -795,5 +718,5 @@ export default {
this.multipleSelection = val.map((x) => x.ID);
},
},
};
};
</script>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment