|
|
@@ -94,6 +94,15 @@ const TransportData = {
|
|
|
data: ''
|
|
|
}
|
|
|
const TransportSearch = (visible: any) => {
|
|
|
+ TransportList.value.forEach((item: any) => {
|
|
|
+ if (item.checked) {
|
|
|
+ checkedCount.push(item.name)
|
|
|
+ const map = new Map()
|
|
|
+ checkedCount.forEach((item) => map.set(item, true))
|
|
|
+ checkedCount = [...map.keys()]
|
|
|
+ }
|
|
|
+ })
|
|
|
+ console.log(checkedCount)
|
|
|
if (checkedCount.length == TransportList.value.length) {
|
|
|
changedata.value = 'All'
|
|
|
} else {
|