From ca0926055401199d380298d56baa20fb121a8bb0 Mon Sep 17 00:00:00 2001 From: TiaStars Date: Fri, 13 Dec 2024 15:27:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8D=95=E4=BD=8D=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- .env.production | 4 +- src/views/auditPages/unitManagement/index.vue | 88 +++++++++++++++++++ vue.config.js | 4 +- 4 files changed, 93 insertions(+), 5 deletions(-) diff --git a/.env.development b/.env.development index 99c6de3..8b59378 100644 --- a/.env.development +++ b/.env.development @@ -5,7 +5,7 @@ VUE_APP_TITLE = 太仓资产管理系统 ENV = 'development' # 若依管理系统/开发环境 -VUE_APP_BASE_API = 'http://192.168.0.115:9115' +VUE_APP_BASE_API = 'http://192.168.0.117:9115' # VUE_APP_BASE_API = 'http://39.101.188.84:9115' # 路由懒加载 diff --git a/.env.production b/.env.production index cb19d1b..cd2ab4f 100644 --- a/.env.production +++ b/.env.production @@ -5,5 +5,5 @@ VUE_APP_TITLE = 太仓资产管理系统 ENV = 'production' # 若依管理系统/生产环境 -VUE_APP_BASE_API = 'http://39.101.188.84:9115' -# VUE_APP_BASE_API = 'http://20.1.0.164/api' +# VUE_APP_BASE_API = 'http://39.101.188.84:9115' +VUE_APP_BASE_API = 'http://20.1.0.164/api' diff --git a/src/views/auditPages/unitManagement/index.vue b/src/views/auditPages/unitManagement/index.vue index de769fd..961c120 100644 --- a/src/views/auditPages/unitManagement/index.vue +++ b/src/views/auditPages/unitManagement/index.vue @@ -323,6 +323,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/vue.config.js b/vue.config.js index 45eac87..b553e8e 100644 --- a/vue.config.js +++ b/vue.config.js @@ -18,8 +18,8 @@ module.exports = { // 部署生产环境和开发环境下的URL。 // 默认情况下,Vue CLI 会假设你的应用是被部署在一个域名的根路径上 // 例如 https://www.ruoyi.vip/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://www.ruoyi.vip/admin/,则设置 baseUrl 为 /admin/。 - publicPath: process.env.NODE_ENV === "production" ? "/demo/TcAssetVerificationPc" : "/", - // publicPath: process.env.NODE_ENV === "production" ? "./" : "/", + // publicPath: process.env.NODE_ENV === "production" ? "/demo/TcAssetVerificationPc" : "/", + publicPath: process.env.NODE_ENV === "production" ? "./" : "/", // 在npm run build 或 yarn build 时 ,生成文件的目录名称(要和baseUrl的生产环境路径一致)(默认dist) outputDir: 'dist', // 用于放置生成的静态资源 (js、css、img、fonts) 的;(项目打包之后,静态资源会放在这个文件夹下)