This commit is contained in:
yanran200730
2022-03-29 17:09:37 +08:00
parent f4c15159d1
commit 28d917645d
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
size="small"
type="primary"
@click="isShow = true"
v-if="(checkType === '1' || checkType === '2') && info.status !== '3'">
v-if="(checkType === '1' || checkType === '2') && info.status !== '3' && info.status !== '2'">
{{ checkType === '1' ? '走访核实' : '处理结果' }}
</el-button>
</template>

View File

@@ -111,7 +111,7 @@
return []
}
return this.chooseList.filter(v => v.status !== '3').map(v => v.id)
return this.chooseList.filter(v => v.status === '0' || v.status === '1').map(v => v.id)
}
},