NEZ-1276 fix: 通过搜索记录查询 选项错乱的问题

This commit is contained in:
zhangyu
2021-11-18 17:18:16 +08:00
parent 87b49de83f
commit 99dca724f1
3 changed files with 4 additions and 4 deletions

View File

@@ -954,7 +954,7 @@ export default {
this.sreach_num = this.select_list.length
this.select_list.forEach(val => {
this.searchLabelList.forEach((item, index) => {
if (val.id == item.id) {
if (val.label == item.label) {
this.searchLabelList.splice(index, 1)
}
})