diff --git a/manifest.json b/manifest.json index 9052743dc7ecd67b2d68524065ca68a098295ea8..64c436c2c4df958fe1c91200c2b44c6a11a9b5ea 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 c461e7948e97d5a62ccf7c00ae1632eab551d008..ad36560385776abdfcc21b4e7c8837730714f668 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 cdbbfe8344c5d2f077be0d21cfa802e31c5a9d28..4fbc8c9e1587be1316e9a5266140def09950d30c 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 0000000000000000000000000000000000000000..6da67ada5e53ff3173df1f38140d07f13e74c456 --- /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 + } + } + ] +}