diff --git a/manifest.json b/manifest.json index 8fce855..54f9309 100644 --- a/manifest.json +++ b/manifest.json @@ -2,8 +2,8 @@ "name" : "惠农生活", "appid" : "__UNI__3A527D1", "description" : "", - "versionName" : "2.0.16", - "versionCode" : 2016, + "versionName" : "2.0.17", + "versionCode" : 2017, "transformPx" : false, /* 5+App特有相关 */ "app-plus" : { diff --git a/pages/chat/customer_list/chat.vue b/pages/chat/customer_list/chat.vue index ebd5bf3..8358e16 100644 --- a/pages/chat/customer_list/chat.vue +++ b/pages/chat/customer_list/chat.vue @@ -1093,7 +1093,12 @@ }) } }, - uploadImg() { + async uploadImg() { + // #ifdef APP-PLUS + let result = await this.$store.dispatch("permission/requestPermissions", + 'CAMERA') + if (result !== 1) return; + // #endif let self = this self.$util.uploadImageOne('upload/image', function(res) { if (res.status == 200) { diff --git a/pages/index/index.vue b/pages/index/index.vue index b3033a7..d94974f 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -557,9 +557,9 @@ that.windowHeight = res.windowHeight; } }); - this.$store.dispatch('INIT_CONFIG'); }) that.pageLoad(options); + this.$store.dispatch('INIT_CONFIG'); }, created(options) { let routes = getCurrentPages(); // 获取当前打开过的页面路由数组 @@ -608,7 +608,6 @@ uni.reLaunch({ url: "/pages/index/index" }); - }, 50) // #endif }, @@ -681,7 +680,7 @@ success: res => { this.errorNetwork = res.networkType === 'none'; if (!this.errorNetwork) { - this.pageLoad(this._options); + this.pageLoad(this._options); } else { // uni.stopPullDownRefresh(); that.overflow = false; diff --git a/pages/users/feedback/index.vue b/pages/users/feedback/index.vue index 9909f13..06b2ca1 100644 --- a/pages/users/feedback/index.vue +++ b/pages/users/feedback/index.vue @@ -173,7 +173,12 @@ * 上传文件 * */ - uploadpic: function() { + uploadpic: async function() { + // #ifdef APP-PLUS + let result = await this.$store.dispatch("permission/requestPermissions", + 'CAMERA') + if (result !== 1) return; + // #endif let that = this; that.$util.uploadImageOne('upload/image', function(res) { console.log(res, '回调') diff --git a/uni_modules/guyue-updater/assets/bg1.png b/uni_modules/guyue-updater/assets/bg1.png index 5478a73..fddc6c1 100644 Binary files a/uni_modules/guyue-updater/assets/bg1.png and b/uni_modules/guyue-updater/assets/bg1.png differ diff --git a/uni_modules/guyue-updater/assets/bg1_1.png b/uni_modules/guyue-updater/assets/bg1_1.png deleted file mode 100644 index 5eef28e..0000000 Binary files a/uni_modules/guyue-updater/assets/bg1_1.png and /dev/null differ diff --git a/uni_modules/guyue-updater/assets/bg2.png b/uni_modules/guyue-updater/assets/bg2.png deleted file mode 100644 index 31ca5f1..0000000 Binary files a/uni_modules/guyue-updater/assets/bg2.png and /dev/null differ diff --git a/uni_modules/guyue-updater/pages/updater.vue b/uni_modules/guyue-updater/pages/updater.vue index 1b161da..2308d50 100644 --- a/uni_modules/guyue-updater/pages/updater.vue +++ b/uni_modules/guyue-updater/pages/updater.vue @@ -231,7 +231,7 @@ position: absolute; top: 36%; left: 24%; - background-color: #e54139; + background-color: #40ae36; color: #fff; font-size: 26rpx; line-height: 26rpx; @@ -241,7 +241,7 @@ } .title { - background-color: #ff6d20; + background-color: #40ae36; color: #fff; display: inline-block; margin-top: 12rpx; @@ -263,7 +263,7 @@ .button { margin: 20rpx 30rpx; - background-color: #ff6d20; + background-color: #40ae36; color: #fff; font-size: 30rpx; text-align: center; @@ -306,7 +306,7 @@ .bar { flex: 1; height: 100%; - background-color: #e84116; + background-color: #40ae36; border-top-left-radius: 5rpx; border-bottom-left-radius: 5rpx; } @@ -319,7 +319,7 @@ position: absolute; top: -34rpx; left: -50%; - color: #e84116; + color: #40ae36; font-size: 24rpx; font-weight: 500; } @@ -327,7 +327,7 @@ .circle { width: 12rpx; height: 12rpx; - border: 6rpx solid #e84116; + border: 6rpx solid #40ae36; border-radius: 50%; background-color: #fff; }