Lijy 4 months ago
parent
commit
8daad48d0c

+ 1 - 1
fhKeeper/formulahousekeeper/customerBuler-crm-h5/src/pages/pageComponents/business/businessOpportunityStage.vue

@@ -118,7 +118,7 @@ function acquisitionStage(row) {
     stageIndex.value = (res.data || []).findIndex(item => item.id === row.stageId)
     stageList.value = (res.data || []).filter(item => !(['赢单', '输单', '无效'].includes(item.name)))
     stageSetting.value = (res.data || []).filter(item => (['赢单', '输单', '无效'].includes(item.name)))
-    const val = (stageSetting.value || []).find(item => item.id === row.stageId)
+    const val = (stageSetting.value || []).filter(item => item.id === row.stageId)
     if(val.length > 0) {
       stageList.value.push(val[0])
       stageIndex.value = stageList.value.length - 1