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.marketingBusiness = [];
// 获取销讲业务
this.getMarketingBusiness();
// this.getMarketingBusiness();
this.findbypage();
this.findKeywords();
// 获取置业顾问列表
@@ -803,7 +803,7 @@ export default {
this.houseChange();

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


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

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

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


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

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


Loading…
Cancel
Save