|
|
@ -369,9 +369,15 @@ const getDictory = () => { |
|
|
|
|
|
|
|
const openCheck = (item) => { |
|
|
|
const name = item.name.split('\\n').join('') |
|
|
|
uni.navigateTo({ |
|
|
|
url: `/${item.path}?title=${name}` |
|
|
|
}) |
|
|
|
if(item.path.indexOf('?')>-1){ |
|
|
|
uni.navigateTo({ |
|
|
|
url: `/${item.path}&title=${name}` |
|
|
|
}); |
|
|
|
}else{ |
|
|
|
uni.navigateTo({ |
|
|
|
url: `/${item.path}?title=${name}` |
|
|
|
}); |
|
|
|
} |
|
|
|
filterList.value = [] |
|
|
|
} |
|
|
|
const showMessage = (message) => { |
|
|
|