Browse Source

接待记录

newStyle
corala 1 year ago
parent
commit
b77dc0bb74
3 changed files with 4 additions and 16 deletions
  1. +2
    -2
      src/views/Customer/index.vue
  2. +0
    -5
      src/views/ReceivingRecords/index.vue
  3. +2
    -9
      src/views/ReceivingRecords/table.js

+ 2
- 2
src/views/Customer/index.vue View File

@@ -737,7 +737,7 @@ export default {
this.searchForm.keywordsId = []; this.searchForm.keywordsId = [];
this.searchForm.marketingBusiness = []; this.searchForm.marketingBusiness = [];
// 获取销讲业务 // 获取销讲业务
this.getMarketingBusiness();
// this.getMarketingBusiness();
this.findbypage(); this.findbypage();
this.findKeywords(); this.findKeywords();
// 获取置业顾问列表 // 获取置业顾问列表
@@ -803,7 +803,7 @@ export default {
this.houseChange(); this.houseChange();


// 获取销讲业务 // 获取销讲业务
this.getMarketingBusiness();
// this.getMarketingBusiness();
}); });
}, },
// 置业顾问列表 // 置业顾问列表


+ 0
- 5
src/views/ReceivingRecords/index.vue View File

@@ -530,11 +530,6 @@ export default {
}, },
], ],
options13: [ options13: [
{
label: "全部",
value: "",
},

{ {
label: "有效接待", label: "有效接待",
value: "0", value: "0",


+ 2
- 9
src/views/ReceivingRecords/table.js View File

@@ -21,13 +21,12 @@ export default {
{ {
sortable: true, sortable: true,
label: '接待开始时间', label: '接待开始时间',
prop: 'staTimeOfCN',
prop: 'createTime',
}, },
{ {
label: "顾问", label: "顾问",
prop: "agentName", prop: "agentName",
}, },
{ {
label: "客户", label: "客户",
prop: "name", prop: "name",
@@ -58,18 +57,12 @@ export default {
return data.markAdvisor == 0 ? "未标记" : '已标记' return data.markAdvisor == 0 ? "未标记" : '已标记'
} }
}, },
{
label: "销讲业务",
prop: "marketingBusinessName",
formatter: data => {
}
},
{ {
sortable: true, sortable: true,
label: "需求挖掘率", label: "需求挖掘率",
prop: "wordFraction", prop: "wordFraction",
formatter: data => { formatter: data => {
return data.wordFraction||0 + '%'
return (data.wordFraction||0) + '%'
} }
}, },
{ {


Loading…
Cancel
Save