diff --git a/packageB/priority/helpFilter.vue b/packageB/priority/helpFilter.vue index 68edf64..780199e 100644 --- a/packageB/priority/helpFilter.vue +++ b/packageB/priority/helpFilter.vue @@ -379,7 +379,7 @@ function getDataList(type = 'add') { } } function goFollow(item) { - navTo(`/packageB/priority/helpFollow?id=${item.goal_person_id}&&name=${item.name}&&taskType=${getTaskTypeLabelByValue(item.task_type)}`); + navTo(`/packageB/priority/helpFollow?task_id=${item.task_id}&person_id=${item.person_id}&&name=${item.name}&&taskType=${getTaskTypeLabelByValue(item.task_type)}`); } diff --git a/packageB/priority/helpFollow.vue b/packageB/priority/helpFollow.vue index 6539c79..7546523 100644 --- a/packageB/priority/helpFollow.vue +++ b/packageB/priority/helpFollow.vue @@ -105,7 +105,8 @@ const formData = reactive({ const personInfo=ref({ goalPersonId:'', name:'', - taskType:'' + taskType:'', + task_id:'' }) const followWays = ref([]) const followList = ref([]) @@ -165,7 +166,8 @@ function getFollowList(){ 'Content-Type': "application/x-www-form-urlencoded" } let params={ - goalPersonId:personInfo.value.goalPersonId + personId:personInfo.value.person_id, + taskId:personInfo.value.task_id } $api.myRequest('/dispatch/assist/records/getFollowList', params,'get',9100,header).then((resData) => { console.log("resData",resData) @@ -245,9 +247,10 @@ const handleReset = () => { formData.nextContactDate = ''; } onLoad((options) => { - personInfo.value.goalPersonId=options.id + personInfo.value.person_id=options.person_id personInfo.value.name=options.name personInfo.value.taskType=options.taskType + personInfo.value.task_id=options.task_id getDictionary() getFollowList() });