提交 df2fb27c 编写于 作者: DCloud_JSON's avatar DCloud_JSON 提交者: chenruilong

修复 部分情况下 `uniIdRedirectUrl` 参数无效的问题

上级 978acb87
## 1.1.3(2023-02-13) ## 1.1.4(2023-02-21)
- 修复 部分情况下 `uniIdRedirectUrl` 参数无效的问题
## 1.1.3(2023-02-20)
- 修复 非微信小程序端报`TypeError: uni.hideHomeButton is not a function`的问题 - 修复 非微信小程序端报`TypeError: uni.hideHomeButton is not a function`的问题
## 1.1.2(2023-02-10) ## 1.1.2(2023-02-10)
- 新增 微信小程序端 首页需强制登录时,隐藏返回首页按钮 - 新增 微信小程序端 首页需强制登录时,隐藏返回首页按钮
......
...@@ -139,7 +139,7 @@ export const mutations = { ...@@ -139,7 +139,7 @@ export const mutations = {
} }
if (autoBack) { if (autoBack) {
this.loginBack(uniIdRedirectUrl) this.loginBack({uniIdRedirectUrl})
} }
} }
......
{ {
"id": "uni-id-pages", "id": "uni-id-pages",
"displayName": "uni-id-pages", "displayName": "uni-id-pages",
"version": "1.1.2", "version": "1.1.4",
"description": "云端一体简单、统一、可扩展的用户中心页面模版", "description": "云端一体简单、统一、可扩展的用户中心页面模版",
"keywords": [ "keywords": [
"用户管理", "用户管理",
......
...@@ -121,7 +121,9 @@ export default { ...@@ -121,7 +121,9 @@ export default {
}) })
}, },
skip () { skip () {
mutations.loginBack(this.uniIdRedirectUrl) mutations.loginBack({
uniIdRedirectUrl: this.uniIdRedirectUrl,
})
} }
} }
} }
......
...@@ -27,7 +27,9 @@ ...@@ -27,7 +27,9 @@
} }
} }
}, },
"/uni_modules/uni-config-center/uniCloud/cloudfunctions/common/uni-config-center/uni-id/config.json": { "/uni_modules/uni-config-center/uniCloud/cloudfunctions/common/uni-config-center/uni-id/config.json": {
"passwordSecret": "",
"tokenSecret": "",
"tokenExpiresIn": 7200, "tokenExpiresIn": 7200,
"app": { "app": {
"oauth": { "oauth": {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册