diff --git a/pages/market/clue/index.vue b/pages/market/clue/index.vue index 9f432a3..5a94ed5 100644 --- a/pages/market/clue/index.vue +++ b/pages/market/clue/index.vue @@ -14,151 +14,42 @@ 30天未成交(12) + - - - - - - - 包子皮 - 试听 - - - 首联系人:包念念 妈妈 - - - 08-30 14:25  跟进 - - - - - - 意向:低 - - - - - - - - - - - - - - - - - - 包子皮 - 试听 - - - 首联系人:包念念 妈妈 - - - 08-30 14:25  跟进 - - - - - - 意向:高 - - - - - - - - - - - - - - - - - - 包子皮 - 试听 - - - 首联系人:包念念 妈妈 - - - 08-30 14:25  跟进 - - - - - - 意向:中 - - - - - - - - - - - - + - 包子皮 - 试听 + {{v.student_name}} + {{v.is_status == 1 ? '试听' : '成交'}} - 首联系人:包念念 妈妈 + 首联系人:{{v.contact_name}} {{v.decision_maker}} - 待跟进 + {{ $util.formatToDateTime((v.follow && v.follow.follow_up_time || ''),'m-d H:i') }} 跟进 - + + + - 意向:低 - - - - - - - - - - - - - - - - - - 包子皮 - 试听 - - - 首联系人:包念念 妈妈 - - - 08-30 14:25  跟进 - - - - - - 意向:低 + 意向:{{ v.follow && v.follow.initial_customer_intent || '' }} @@ -171,6 +62,7 @@ + 今日待领(15/30) @@ -380,7 +272,8 @@ export default { page:1,//当前页码 limit:10,//每页返回数据条数 total:10,//数据总条数 - type: '',//''=全部,1=待跟进,2=7天,3=30天 + type: '0',//0=全部,1=待跟进,2=7天,3=30天 + is_gh: '1',//1=区域公海,2=我的客户 }, tableList:[],//表格数据 @@ -471,10 +364,11 @@ export default { this.select_type = type //重置为第一页 await this.resetFilteredData() + this.filteredData.is_gh = this.segmented_type switch (type) { //全部 case 1: - this.filteredData.type = '' + this.filteredData.type = '0' break //待跟进 case 2: @@ -497,7 +391,8 @@ export default { this.segmented_type = index.id//1=我的客户,2=区域公海 //重置为第一页 await this.resetFilteredData() - this.filteredData.type = '' + this.filteredData.is_gh = this.segmented_type + this.filteredData.type = '0' await this.getList() },