This commit is contained in:
zhu
2026-03-27 17:55:18 +08:00
parent ee03132cee
commit 382f6b9811
34 changed files with 1406 additions and 376 deletions

View File

@@ -12,20 +12,19 @@ Page({
let state = wx.getStorageSync(this.data.key);
if (state) {
wx.redirectTo({
url: "/pages/joinFlow/access/index",
url: "/pages/joinFlow/person/index",
})
} else {
this.setData({
loading: false
})
}
},
handNext() {
wx.setStorageSync(this.data.key, true)
wx.redirectTo({
url: "/pages/home/index",
url: "/pages/joinFlow/person/index"
})
}
})