From 920ad0081525f85e7fcc7ad2ea581f1c65243c77 Mon Sep 17 00:00:00 2001 From: wangpeng Date: Fri, 21 Aug 2026 10:09:37 +0800 Subject: [PATCH] =?UTF-8?q?chore(config):=20=E6=9B=B4=E6=96=B0=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E7=89=88=E6=9C=AC=E5=8F=B7=E5=B9=B6=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 manifest.json 中的版本号从 1.0.55 更新为 1.0.56 - 在 manifest.json 中添加启动屏幕配置 useOriginalMsgbox - 移除 register.vue 中的调试日志输出 - 更新 request.js 中的测试服务器地址配置 --- manifest.json | 7 +++++-- pages/login/register.vue | 1 - utils/request.js | 4 +--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/manifest.json b/manifest.json index 665f645..dcf4904 100644 --- a/manifest.json +++ b/manifest.json @@ -4,8 +4,8 @@ "appid" : "__UNI__97E1400", // 97E1400 "description" : "秦港相关方", - "versionName" : "1.0.55", - "versionCode" : 55, + "versionName" : "1.0.56", + "versionCode" : 56, "transformPx" : false, /* 5+App特有相关 */ "app-plus" : { @@ -100,6 +100,9 @@ "spotlight@3x" : "unpackage/res/icons/120x120.png" } } + }, + "splashscreen" : { + "useOriginalMsgbox" : true } } }, diff --git a/pages/login/register.vue b/pages/login/register.vue index 7f11137..d5b128a 100644 --- a/pages/login/register.vue +++ b/pages/login/register.vue @@ -134,7 +134,6 @@ export default { }) }, 2000) }).catch((e) => { - console.log(e) uni.$u.toast(e.msg || '请补全必填项') }) } diff --git a/utils/request.js b/utils/request.js index cd6bb05..e7efdfd 100644 --- a/utils/request.js +++ b/utils/request.js @@ -1,9 +1,7 @@ import refreshToken from "../api/refreshToken"; -// let requestPath = 'http://192.168.0.102:8059/xgf_gwj_2.0/'; // 后台请求地址 -// let requestPath = 'http://127.0.0.1:8059/xgf_gwj_2.0/'; // 后台请求地址 +// let requestPath = 'http://192.168.10.27:7013/xgf_gwj_2.0/'; // 后台请求地址 let requestPath = 'https://skqhdg.porthebei.com:9006/xgf_gwj_2.0/'; // 后台请求地址 -// let requestPath = 'http://192.168.151.32:8151/xgf_gwj_2.0/'; // 后台请求地址 // let requestPath = 'https://qgxgf.qhdsafety.com/qa-prevention-xgf/'; // 外网地址 import store from '../store/index' import {setRefreshToken} from "../api/api";