diff --git a/uni_modules/uni-id-pages/changelog.md b/uni_modules/uni-id-pages/changelog.md index 7c96ba98cc8106ad16ef321a4e5d782cd28ccaf5..16f52497ddd2ef63ff073567fbbe49e71acc39bb 100644 --- a/uni_modules/uni-id-pages/changelog.md +++ b/uni_modules/uni-id-pages/changelog.md @@ -1,5 +1,7 @@ -## 1.1.14(2023-05-19) -- 修复 退出登录不会跳转至登录页的问题 +## 1.1.15(2023-07-13) +- uni-id-co 修复 QQ登录时不存在头像时报错的问题 +## 1.1.14(2023-05-19) +- 修复 退出登录不会跳转至登录页的问题 ## 1.1.13(2023-05-10) - 修复 启用摇树优化 报错的问题 ## 1.1.12(2023-05-05) diff --git a/uni_modules/uni-id-pages/package.json b/uni_modules/uni-id-pages/package.json index 06c3b4f6d38c7727184432ca04911014ebe16a74..56b7a2ad2701241812ae6adae1e6b5fd357fb777 100644 --- a/uni_modules/uni-id-pages/package.json +++ b/uni_modules/uni-id-pages/package.json @@ -1,7 +1,7 @@ { "id": "uni-id-pages", "displayName": "uni-id-pages", - "version": "1.1.14", + "version": "1.1.15", "description": "云端一体简单、统一、可扩展的用户中心页面模版", "keywords": [ "用户管理", diff --git a/uni_modules/uni-id-pages/pages/register/register-admin.vue b/uni_modules/uni-id-pages/pages/register/register-admin.vue index f331f848c7f94898ebb3fc38a9cbd960c6266e99..ade23f3f3f98dbd9be983b72c0eebb52c8386fd1 100644 --- a/uni_modules/uni-id-pages/pages/register/register-admin.vue +++ b/uni_modules/uni-id-pages/pages/register/register-admin.vue @@ -27,9 +27,9 @@ class="input-box" placeholder="再次输入密码" maxlength="20" type="password" v-model="formData.password2" trim="both" /> - - - + + + @@ -85,14 +85,14 @@ */ submit() { this.$refs.form.validate().then((res) => { - if(this.formData.captcha.length != 4){ - this.$refs.captcha.focusCaptchaInput = true - return uni.showToast({ - title: '请输入验证码', - icon: 'none', - duration: 3000 - }); - } + // if(this.formData.captcha.length != 4){ + // this.$refs.captcha.focusCaptchaInput = true + // return uni.showToast({ + // title: '请输入验证码', + // icon: 'none', + // duration: 3000 + // }); + // } if (this.needAgreements && !this.agree) { return this.$refs.agreements.popup(()=>{ this.submitForm(res) @@ -139,7 +139,7 @@