diff --git a/.env.development b/.env.development index 3890df1..d902410 100644 --- a/.env.development +++ b/.env.development @@ -3,7 +3,14 @@ VITE_PROD = false VITE_DEV = true # BASE_URL -VITE_BASE_URL = http://api-catch.ranesuangyu.top +VITE_BASE_URL = /api + +# PROXY_BASE_URL +# 仅H5跨域需使用proxy,其他端请直接设置 VITE_BASE_URL 即可 +VITE_PROXY_BASE_URL = http://api-catch.ranesuangyu.top # 上传域名 -VITE_UPLOAD_URL = 'YOUR UPLOAD URL' \ No newline at end of file +VITE_UPLOAD_URL = /upload + +# 代理上传域名 +VITE_PROXY_UPLOAD_URL = 'YOUR UPLOAD URL' \ No newline at end of file diff --git a/src/env.d.ts b/src/env.d.ts index 68cd434..b0f8369 100644 --- a/src/env.d.ts +++ b/src/env.d.ts @@ -11,6 +11,7 @@ interface ImportMetaEnv { readonly VITE_ENV: string; readonly VITE_APP_TITLE: string; readonly VITE_BASE_URL: string; + readonly VITE_PROXY_BASE_URL: string; readonly VITE_UPLOAD_URL: string; readonly VITE_PROD: boolean; readonly VITE_DEV: boolean; diff --git a/src/lib/http/index.js b/src/lib/http/index.js deleted file mode 100644 index 50636ab..0000000 --- a/src/lib/http/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import Request from './core/Request'; -export default Request; diff --git a/src/manifest.json b/src/manifest.json index c38e717..c215988 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,72 +1,80 @@ { - "name": "", - "appid": "", - "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 + "name" : "", + "appid" : "", + "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" : {} + } }, - /* 模块配置 */ - "modules": {}, - /* 应用发布信息 */ - "distribute": { - /* android打包配置 */ - "android": { - "permissions": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ] - }, - /* ios打包配置 */ - "ios": {}, - /* SDK配置 */ - "sdkConfigs": {} + /* 快应用特有相关 */ + "quickapp" : {}, + /* 小程序特有相关 */ + "mp-weixin" : { + "appid" : "", + "setting" : { + "urlCheck" : false + }, + "usingComponents" : true + }, + "mp-alipay" : { + "usingComponents" : true + }, + "mp-baidu" : { + "usingComponents" : true + }, + "mp-toutiao" : { + "usingComponents" : true + }, + "uniStatistics" : { + "enable" : false + }, + "vueVersion" : "3", + "h5" : { + "router" : { + "mode" : "history" + }, + "devServer" : { + "https" : false + } } - }, - /* 快应用特有相关 */ - "quickapp": {}, - /* 小程序特有相关 */ - "mp-weixin": { - "appid": "", - "setting": { - "urlCheck": false - }, - "usingComponents": true - }, - "mp-alipay": { - "usingComponents": true - }, - "mp-baidu": { - "usingComponents": true - }, - "mp-toutiao": { - "usingComponents": true - }, - "uniStatistics": { - "enable": false - }, - "vueVersion": "3" } diff --git a/src/pages/login/index.vue b/src/pages/login/index.vue index ad9e7cc..6522814 100644 --- a/src/pages/login/index.vue +++ b/src/pages/login/index.vue @@ -17,18 +17,15 @@