bug bug bug filters.js

This commit is contained in:
lb
2023-01-30 17:04:06 +08:00
parent 508bc4e434
commit 7c8f844ace
4 changed files with 17 additions and 12 deletions

View File

@@ -3,6 +3,7 @@ import moment from 'moment'
export const dictFilter = dictTypeId => {
return val => {
console.log('ddd', (JSON.parse(localStorage.getItem('dictList')))[dictTypeId])
return JSON.parse(localStorage.getItem('dictList'))[dictTypeId].find(item => item.dictValue === val)?.dictLabel || '-'
}
}
@@ -21,8 +22,4 @@ export const pick = (obj, paths) => {
}
})
return result
}
export const dictFind = (which) => {
return () => 1
}