Browse Source

title问题 2024/8/6

hella_vue3
王志国 1 month ago
parent
commit
63202ac8eb
  1. 12
      src/pages/index/index.vue

12
src/pages/index/index.vue

@ -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) => {

Loading…
Cancel
Save