diff --git a/changelog.md b/changelog.md index 69e42d5e133497d3cce22ba0380269fd9fb9fb32..85ff0ba2d55e8ab9ddfcbeff824f378d6f986873 100644 --- a/changelog.md +++ b/changelog.md @@ -1,7 +1,7 @@ ## 1.0.12(2021-05-28) 修复拦截器在ios app端会报错:Unhandled promise...的问题 ## 1.0.10(2021-05-27) -新增callfunction的拦截器废除this.request的写法。为callFunction添加:请求失败是否断网判断并提示、恢复网络自动重新执行、自动处理响应体,目前处理了403为token过期自动跳转到登陆页面,今后会添加更多的自动行为、自动延续token过期时间 +新增callfunction的拦截器废除this.request的写法。为callFunction添加:请求失败是否断网判断并提示、恢复网络自动重新执行、自动处理响应体:token过期自动跳转到登陆页面、token自动续期 ## 1.0.9(2021-05-23) 修复变量被重复定义的问题 ## 1.0.8(2021-05-22) diff --git a/manifest.json b/manifest.json index 35e724883f8bea739416cbc441dee5399156bc93..6252c176bb7b50d5029637280b1ec61ff057a0e0 100644 --- a/manifest.json +++ b/manifest.json @@ -1,100 +1,106 @@ -{ - "name": "uni-starter", - "appid": "", - "description": "云端一体应用快速开发模版", - "versionName": "1.0.0", - "versionCode": "100", - "transformPx": false, - "app-plus": { - "privacy": { - "prompt": "template", - "template": { - "title": "服务协议和隐私政策", - "message": "  请你务必审慎阅读、充分理解“服务协议”和“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。
  你可阅读《服务协议》《隐私政策》了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。", - "buttonAccept": "同意", - "buttonRefuse": "暂不同意" - } - }, - "compatible": { - "ignoreVersion": true - }, - "usingComponents": true, - "nvueStyleCompiler": "uni-app", - "compilerVersion": 3, - "splashscreen": { - "alwaysShowBeforeRender": true, - "waiting": true, - "autoclose": true, - "delay": 0 - }, - "modules": { - "Fingerprint": {}, - "Share": {}, - "Push": {}, - "OAuth": {} - }, - "distribute": { - "android": { - "permissions": ["", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ], - "abiFilters": ["armeabi-v7a", "arm64-v8a", "x86"] - }, - "ios": {}, - "sdkConfigs": { - "oauth": { - "univerify": {}, - "apple": {} - }, - "ad": {}, - "share": {}, - "geolocation": {}, - "push": { - "unipush": {} - }, - "payment": {} - } - }, - "nvueLaunchMode": "" - }, - "quickapp": {}, - "mp-weixin": { - "appid": "", - "setting": { - "urlCheck": false, - "es6": false - }, - "usingComponents": true, - "betterScopedSlots": true - }, - "mp-alipay": { - "usingComponents": true - }, - "mp-baidu": { - "usingComponents": true - }, - "mp-toutiao": { - "usingComponents": true - }, - "uniStatistics": { - "enable": false - }, - "h5": { - "template": "" - } +{ + "name" : "uni-starter", + "appid" : "__UNI__E5373F7", + "description" : "云端一体应用快速开发模版", + "versionName" : "1.0.0", + "versionCode" : "100", + "transformPx" : false, + "app-plus" : { + "privacy" : { + "prompt" : "template", + "template" : { + "title" : "服务协议和隐私政策", + "message" : "  请你务必审慎阅读、充分理解“服务协议”和“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。
  你可阅读《服务协议》《隐私政策》了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。", + "buttonAccept" : "同意", + "buttonRefuse" : "暂不同意" + } + }, + "compatible" : { + "ignoreVersion" : true + }, + "usingComponents" : true, + "nvueStyleCompiler" : "uni-app", + "compilerVersion" : 3, + "splashscreen" : { + "alwaysShowBeforeRender" : true, + "waiting" : true, + "autoclose" : true, + "delay" : 0 + }, + "modules" : { + "Fingerprint" : {}, + "Share" : {}, + "Push" : {}, + "OAuth" : {} + }, + "distribute" : { + "android" : { + "permissions" : [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "abiFilters" : [ "armeabi-v7a", "arm64-v8a", "x86" ] + }, + "ios" : {}, + "sdkConfigs" : { + "oauth" : { + "univerify" : {}, + "apple" : {}, + "weixin" : { + "appid" : "32234", + "appsecret" : "3223", + "UniversalLinks" : "" + } + }, + "ad" : {}, + "share" : {}, + "geolocation" : {}, + "push" : { + "unipush" : {} + }, + "payment" : {} + } + }, + "nvueLaunchMode" : "" + }, + "quickapp" : {}, + "mp-weixin" : { + "appid" : "wx81dbb061d2258234", + "setting" : { + "urlCheck" : false, + "es6" : false + }, + "usingComponents" : true, + "betterScopedSlots" : true + }, + "mp-alipay" : { + "usingComponents" : true + }, + "mp-baidu" : { + "usingComponents" : true + }, + "mp-toutiao" : { + "usingComponents" : true + }, + "uniStatistics" : { + "enable" : false + }, + "h5" : { + "template" : "" + } } diff --git a/pages/ucenter/login-page/index/index.vue b/pages/ucenter/login-page/index/index.vue index 8c54a53010cb5b1fd97e8be27caa63fcf87e7cc9..4a7dac32a1bece1b452df6574fc64067d791f6bd 100644 --- a/pages/ucenter/login-page/index/index.vue +++ b/pages/ucenter/login-page/index/index.vue @@ -4,26 +4,41 @@ 登录后即可展示自己 - + - 未注册的手机号验证通过后将自动注册 + 未注册的手机号验证通过后将自动注册 - +