Browse Source

修改bug

master
王泽彦 9 months ago
parent
commit
903851a446
  1. 6
      api/apiRoute.js
  2. 14
      pages/market/clue/clue_info.vue

6
api/apiRoute.js

@ -325,5 +325,9 @@ export default {
//学生端-订单管理-添加 //学生端-订单管理-添加
async xy_orderTableAdd(data = {}) { async xy_orderTableAdd(data = {}) {
return await http.post('/xy/orderTable/add', data); return await http.post('/xy/orderTable/add', data);
} },
async listCallUp(data={}) {
return await http.get('/member/list_call_up', data);
},
} }

14
pages/market/clue/clue_info.vue

@ -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

Loading…
Cancel
Save