From eef774a30547e44311202b7319325f8c6ef97cc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Thu, 28 Dec 2023 16:00:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manifest.json | 186 +++++++++--------- pages/homepage/homepage.vue | 5 +- pages/myinformation/myinformation.vue | 2 +- .../consultationplatform.vue | 18 +- static/homepagetop.png | Bin 43520 -> 0 bytes static/pages/userbanner.png | Bin 140102 -> 0 bytes static/pages/wenzhenbanner.png | Bin 117395 -> 0 bytes 7 files changed, 107 insertions(+), 104 deletions(-) delete mode 100644 static/homepagetop.png delete mode 100644 static/pages/userbanner.png delete mode 100644 static/pages/wenzhenbanner.png diff --git a/manifest.json b/manifest.json index 5d3d598..eecaccc 100644 --- a/manifest.json +++ b/manifest.json @@ -1,95 +1,95 @@ { - "name": "xinelu-applet-ui", - "appid": "__UNI__EA0DD4F", - "description": "", - "versionName": "1.0.0", - "versionCode": "100", - "transformPx": false, - /* 5+App特有相关 */ - "app-plus": { - "usingComponents": true, - "nvueStyleCompiler": "uni-app", - "compilerVersion": 3, - "splashscreen": { - "alwaysShowBeforeRender": true, - "waiting": true, - "autoclose": true, - "delay": 0 - }, - /* 模块配置 */ - "modules": {}, - /* 应用发布信息 */ - "distribute": { - /* android打包配置 */ - "android": { - "permissions": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ] - }, - /* ios打包配置 */ - "ios": {}, - /* SDK配置 */ - "sdkConfigs": {} - } - }, - /* 快应用特有相关 */ - "quickapp": {}, - /* 小程序特有相关 */ - "mp-weixin": { - "appid": "wxccb16a452ab5e4b4", - "setting": { - "urlCheck": false, - "postcss": true, - "minified": true, - "es6": true - }, - "usingComponents": true, - // app.json - "permission": { - "scope.userLocation": { - "desc": "你的位置信息将用于护理机构列表的位置查询" - } - }, - "requiredPrivateInfos": ["chooseLocation", "getLocation"], - // "plugins": { - // "chooseLocation": { - // "version": "1.0.9", - // "provider": "wx76a9a06e5b4e693e" - // } - // }, - "uniStatistics": { - "enable": true - }, - "lazyCodeLoading": "requiredComponents", - "unipush": { - "enable": false - } - }, - "mp-alipay": { - "usingComponents": true - }, - "mp-baidu": { - "usingComponents": true - }, - "mp-toutiao": { - "usingComponents": true - }, - "uniStatistics": { - "enable": false - }, - "vueVersion": "2" + "name" : "xinelu-applet-ui", + "appid" : "__UNI__EA0DD4F", + "description" : "", + "versionName" : "1.0.0", + "versionCode" : "100", + "transformPx" : false, + /* 5+App特有相关 */ + "app-plus" : { + "usingComponents" : true, + "nvueStyleCompiler" : "uni-app", + "compilerVersion" : 3, + "splashscreen" : { + "alwaysShowBeforeRender" : true, + "waiting" : true, + "autoclose" : true, + "delay" : 0 + }, + /* 模块配置 */ + "modules" : {}, + /* 应用发布信息 */ + "distribute" : { + /* android打包配置 */ + "android" : { + "permissions" : [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ] + }, + /* ios打包配置 */ + "ios" : {}, + /* SDK配置 */ + "sdkConfigs" : {} + } + }, + /* 快应用特有相关 */ + "quickapp" : {}, + /* 小程序特有相关 */ + "mp-weixin" : { + "appid" : "wxccb16a452ab5e4b4", + "setting" : { + "urlCheck" : false, + "postcss" : true, + "minified" : true, + "es6" : true + }, + "usingComponents" : true, + // app.json + "permission" : { + "scope.userLocation" : { + "desc" : "你的位置信息将用于护理机构列表的位置查询" + } + }, + "requiredPrivateInfos" : [ "chooseLocation", "getLocation" ], + // "plugins": { + // "chooseLocation": { + // "version": "1.0.9", + // "provider": "wx76a9a06e5b4e693e" + // } + // }, + "uniStatistics" : { + "enable" : true + }, + "lazyCodeLoading" : "requiredComponents", + "unipush" : { + "enable" : false + } + }, + "mp-alipay" : { + "usingComponents" : true + }, + "mp-baidu" : { + "usingComponents" : true + }, + "mp-toutiao" : { + "usingComponents" : true + }, + "uniStatistics" : { + "enable" : false + }, + "vueVersion" : "2" } diff --git a/pages/homepage/homepage.vue b/pages/homepage/homepage.vue index f1f306b..6033d16 100644 --- a/pages/homepage/homepage.vue +++ b/pages/homepage/homepage.vue @@ -2,7 +2,7 @@ - + @@ -91,6 +91,7 @@ import { mapActions } from "vuex"; + import baseurl from '@/api/baseurl.js' export default { data() { return { @@ -100,10 +101,12 @@ checkSign: null, address: '', openid: '', + baseurl: '', } }, onLoad() {}, onShow() { + this.baseurl = baseurl this.userinfo = uni.getStorageSync('userinfo') this.address = uni.getStorageSync('location') this.openid = uni.getStorageSync('openid'); diff --git a/pages/myinformation/myinformation.vue b/pages/myinformation/myinformation.vue index 980e93c..ba249dd 100644 --- a/pages/myinformation/myinformation.vue +++ b/pages/myinformation/myinformation.vue @@ -4,7 +4,7 @@ - + diff --git a/pagesB/consultationplatform/consultationplatform.vue b/pagesB/consultationplatform/consultationplatform.vue index c6cb5bb..bd82293 100644 --- a/pagesB/consultationplatform/consultationplatform.vue +++ b/pagesB/consultationplatform/consultationplatform.vue @@ -1,6 +1,6 @@