|
|
@ -49,9 +49,9 @@ |
|
|
<view :class="{'selected-text': switch_tags_type === 1, 'text': switch_tags_type !== 1}" |
|
|
<view :class="{'selected-text': switch_tags_type === 1, 'text': switch_tags_type !== 1}" |
|
|
@click="switch_tags(1)">基本资料 |
|
|
@click="switch_tags(1)">基本资料 |
|
|
</view> |
|
|
</view> |
|
|
<view :class="{'selected-text': switch_tags_type === 2, 'text': switch_tags_type !== 2}" |
|
|
<!-- <view :class="{'selected-text': switch_tags_type === 2, 'text': switch_tags_type !== 2}" |
|
|
@click="switch_tags(2)">跟进记录 |
|
|
@click="switch_tags(2)">跟进记录 |
|
|
</view> |
|
|
</view> --> |
|
|
<view :class="{'selected-text': switch_tags_type === 3, 'text': switch_tags_type !== 3}" |
|
|
<view :class="{'selected-text': switch_tags_type === 3, 'text': switch_tags_type !== 3}" |
|
|
@click="switch_tags(3)">通话记录 |
|
|
@click="switch_tags(3)">通话记录 |
|
|
</view> |
|
|
</view> |
|
|
@ -309,7 +309,7 @@ |
|
|
async init(){ |
|
|
async init(){ |
|
|
await this.getInfo()//客户详情 |
|
|
await this.getInfo()//客户详情 |
|
|
this.getUserInfo()//获取当前登录的员工信息 |
|
|
this.getUserInfo()//获取当前登录的员工信息 |
|
|
// this.getListCallUp()//获取通话记录 |
|
|
this.getListCallUp()//获取通话记录 |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
//获取当前登录的员工信息 |
|
|
//获取当前登录的员工信息 |
|
|
@ -365,7 +365,7 @@ |
|
|
let data = { |
|
|
let data = { |
|
|
sales_id:this.resource_sharing_id// |
|
|
sales_id:this.resource_sharing_id// |
|
|
} |
|
|
} |
|
|
let res = await marketApi.listCallUp(data) |
|
|
let res = await apiRoute.listCallUp(data) |
|
|
if(res.code != 1){ |
|
|
if(res.code != 1){ |
|
|
uni.showToast({ |
|
|
uni.showToast({ |
|
|
title: res.msg, |
|
|
title: res.msg, |
|
|
@ -376,12 +376,6 @@ |
|
|
this.listCallUp = res.data |
|
|
this.listCallUp = res.data |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
//跳转页面-添加跟进记录 |
|
|
|
|
|
openViewWritingFollowUp() { |
|
|
|
|
|
this.$navigateTo({ |
|
|
|
|
|
url: `/pages/market/clue/writing_followUp` |
|
|
|
|
|
}) |
|
|
|
|
|
}, |
|
|
|
|
|
//跳转页面-编辑客户详情 |
|
|
//跳转页面-编辑客户详情 |
|
|
openViewEditClues(){ |
|
|
openViewEditClues(){ |
|
|
let resource_sharing_id = this.resource_sharing_id//共享资源表id |
|
|
let resource_sharing_id = this.resource_sharing_id//共享资源表id |
|
|
|