From 71a2480a079d865454c8ec0d833099092e5b6bfb Mon Sep 17 00:00:00 2001 From: Anne_LXM Date: Mon, 17 Jun 2024 14:18:31 +0800 Subject: [PATCH] 1.1.2 --- manifest.json | 2 +- uni_modules/uni-id-pages-x/changelog.md | 3 + uni_modules/uni-id-pages-x/package.json | 2 +- uni_modules/uni-id-pages-x/pages_init.json | 80 ++++++++++++++++++++++ 4 files changed, 85 insertions(+), 2 deletions(-) create mode 100644 uni_modules/uni-id-pages-x/pages_init.json diff --git a/manifest.json b/manifest.json index 9052743..64c436c 100644 --- a/manifest.json +++ b/manifest.json @@ -1,5 +1,5 @@ { - "name" : "hello uni-id-pages", + "name" : "hello uni-id-pages-x", "appid" : "__UNI__7BF095C", "description" : "", "versionName" : "1.0.0", diff --git a/uni_modules/uni-id-pages-x/changelog.md b/uni_modules/uni-id-pages-x/changelog.md index c461e79..ad36560 100644 --- a/uni_modules/uni-id-pages-x/changelog.md +++ b/uni_modules/uni-id-pages-x/changelog.md @@ -1,3 +1,6 @@ +## 1.1.2(2024-06-17) +- 新增 支持iOS端一键登录(HBuilderX 4.18+) +- 修复用户头像未更新的Bug ## 1.1.1(2024-04-28) - 兼容uni-app-x对客户端uniPlatform的调整(uni-app-x内uniPlatform区分app-android、app-ios) ## 1.1.0(2024-04-07) diff --git a/uni_modules/uni-id-pages-x/package.json b/uni_modules/uni-id-pages-x/package.json index cdbbfe8..4fbc8c9 100644 --- a/uni_modules/uni-id-pages-x/package.json +++ b/uni_modules/uni-id-pages-x/package.json @@ -1,7 +1,7 @@ { "id": "uni-id-pages-x", "displayName": "uni-id-pages-x", - "version": "1.1.1", + "version": "1.1.2", "description": "适用于 uni-app-x 的云端一体简单、统一、可扩展的用户中心页面模版", "keywords": [ "用户中心", diff --git a/uni_modules/uni-id-pages-x/pages_init.json b/uni_modules/uni-id-pages-x/pages_init.json new file mode 100644 index 0000000..6da67ad --- /dev/null +++ b/uni_modules/uni-id-pages-x/pages_init.json @@ -0,0 +1,80 @@ + +{ + "pages": [ + { + "path": "uni_modules/uni-id-pages-x/pages/login/login", + "style": { + "navigationBarTitleText": "登录账号", + "enablePullDownRefresh": false + } + }, { + "path": "uni_modules/uni-id-pages-x/pages/userinfo/userinfo", + "style": { + "navigationBarTitleText": "我的资料", + "enablePullDownRefresh": false + } + }, + { + "path": "uni_modules/uni-id-pages-x/pages/register/register", + "style": { + "navigationBarTitleText": "注册", + "enablePullDownRefresh": false + } + }, + { + "path": "uni_modules/uni-id-pages-x/pages/retrieve/retrieve", + "style": { + "navigationBarTitleText": "重置密码", + "enablePullDownRefresh": false + } + }, + { + "path": "uni_modules/uni-id-pages-x/pages/common/webview/webview", + "style": { + "navigationBarTitleText": "", + "enablePullDownRefresh": false + } + }, + { + "path": "uni_modules/uni-id-pages-x/pages/userinfo/deactivate/deactivate", + "style": { + "navigationBarTitleText": "注销账号", + "enablePullDownRefresh": false + } + }, + { + "path": "uni_modules/uni-id-pages-x/pages/userinfo/bindMobile/bindMobile", + "style": { + "navigationBarTitleText": "绑定手机号码", + "enablePullDownRefresh": false + } + }, + { + "path": "uni_modules/uni-id-pages-x/pages/userinfo/setNickname/setNickname", + "style": { + "navigationBarTitleText": "设置昵称", + "enablePullDownRefresh": false, + "navigationStyle": "custom" + // "app-plus": { + // "titleNView": { + // "buttons": [ + // { + // "color": "#fff", + // "text": "完成", + // "float": "right", + // "fontWeight": "normal" + // } + // ] + // } + // } + } + }, + { + "path": "uni_modules/uni-id-pages-x/pages/userinfo/realnameAuth/realnameAuth", + "style": { + "navigationBarTitleText": "实名认证", + "enablePullDownRefresh": false + } + } + ] +} -- GitLab