From d5ad0e3345a81c6cc81d38bc04277009595f4746 Mon Sep 17 00:00:00 2001 From: bb_pan Date: Tue, 8 Apr 2025 16:25:51 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=B5=E5=B7=9E=E5=88=86=E6=94=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 3 ++- src/manifest.json | 12 ++++++++---- src/pages/goods-details/components/details-model.vue | 3 ++- src/pages/goods-details/index.vue | 3 ++- src/utils/http.js | 4 ++-- 5 files changed, 16 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index 7cb5fb9..6f8828c 100644 --- a/index.html +++ b/index.html @@ -42,7 +42,8 @@ - 安徽租赁商城 + <!-- 贵州 --> + 智联装备云控平台 diff --git a/src/manifest.json b/src/manifest.json index cb0cfc1..249ba7b 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,5 +1,6 @@ { - "name": "安徽租赁商城", + // 贵州 + "name": "智联装备云控平台", "appid": "", "description": "", "versionName": "1.0.0", @@ -74,9 +75,12 @@ "vueVersion": "3", "h5": { "router": { - "base": "./", - "mode": "hash" + // "base": "./", + // "mode": "hash" + "base": "/iws/h5portal", // 公司 + "mode": "history" // 公司 }, - "title": "安徽机具租赁商城" + // "title": "安徽机具租赁商城" + "title": "智联装备云控平台" } } diff --git a/src/pages/goods-details/components/details-model.vue b/src/pages/goods-details/components/details-model.vue index 85c1f95..110b73e 100644 --- a/src/pages/goods-details/components/details-model.vue +++ b/src/pages/goods-details/components/details-model.vue @@ -35,7 +35,8 @@ -

安徽送变电公司

+ +

贵州送变电公司

入驻时间:{{ deviceInfo.companyCreateTime }} 上架数量:{{ deviceInfo.devUapNum }} diff --git a/src/pages/goods-details/index.vue b/src/pages/goods-details/index.vue index 6fbeaff..6171b66 100644 --- a/src/pages/goods-details/index.vue +++ b/src/pages/goods-details/index.vue @@ -58,7 +58,8 @@ -

安徽送变电公司

+ +

贵州送变电公司

入驻时间:{{ deviceInfo.companyCreateTime }} 上架数量:{{ deviceInfo.devUapNum }} diff --git a/src/utils/http.js b/src/utils/http.js index e127520..42e642a 100644 --- a/src/utils/http.js +++ b/src/utils/http.js @@ -6,8 +6,8 @@ import { useMemberStore } from '@/stores'; * baseURL 设置请求ip地址和端口 */ const ENV = process.env.NODE_ENV; -export const baseURL = ENV === 'development' ? '/api' : '/iws/proxyApi'; // 宏源服务 -// export const baseURL = ENV === 'development' ? '/api' : '/proxyApi'; // 测试服务 +// export const baseURL = ENV === 'development' ? '/api' : '/iws/proxyApi'; // 宏源服务 +export const baseURL = ENV === 'development' ? '/api' : '/proxyApi'; // 测试服务 /** * httpInterceptor 分别拦截 request 和 uploadFile 请求 */