Feat(AI):增加参数,只有通过点击才能进入,以便微信审核
This commit is contained in:
@@ -183,10 +183,13 @@ export default {
|
||||
pageTitle: ''
|
||||
}
|
||||
},
|
||||
onLoad(optisons) {
|
||||
console.log(optisons)
|
||||
this.chatNumber = optisons.chatNumber
|
||||
this.pageTitle = optisons.title
|
||||
onLoad(options) {
|
||||
if (!options.click) {
|
||||
uni.switchTab({ url: '/pages/home/index' })
|
||||
return
|
||||
}
|
||||
this.chatNumber = options.chatNumber
|
||||
this.pageTitle = options.title
|
||||
this.pageTitle = this.pageTitle.length > 8 ? (this.pageTitle.substring(0, 8) + '...') : this.pageTitle
|
||||
this.init()
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user