大屏模块开发中

This commit is contained in:
GongDragon 2025-03-26 16:48:17 +08:00
parent 5eec8706a5
commit 05cec033e9
5 changed files with 1359 additions and 636 deletions

14
.env.sandbox Normal file
View File

@ -0,0 +1,14 @@
# 页面标题
# VUE_APP_TITLE = 智慧党建系统
# 开发环境配置
ENV = 'sandbox'
# 智慧党建系统/开发环境
VUE_APP_BASE_API = 'http://1.119.152.230:4024/'
# 前端路径地址
# VUE_APP_ROUTER_URL = 'http://1.119.152.230:4023'
# 路由懒加载
# VUE_CLI_BABEL_TRANSPILE_MODULES = true

15
.env.test Normal file
View File

@ -0,0 +1,15 @@
# 页面标题
# VUE_APP_TITLE = 智慧党建
# 测试环境配置
ENV = 'test'
# 管理系统/测试环境
VUE_APP_BASE_API = 'http://192.168.3.18:56000/'
# 应用访问路径 例如使用前缀 /admin/
# VUE_APP_CONTEXT_PATH = '/'
# 前端路径地址
# VUE_APP_ROUTER_URL = 'http://192.168.3.18:55112'

View File

@ -3,8 +3,9 @@
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"dev": "vue-cli-service serve",
"build:test": "vue-cli-service build --mode test",
"build:sandbox": "vue-cli-service build --mode sandbox",
"lint": "vue-cli-service lint"
},
"dependencies": {

File diff suppressed because it is too large Load Diff

View File

@ -4,6 +4,8 @@ module.exports = defineConfig({
lintOnSave:false, //关闭eslint校验
publicPath: '/',
devServer: {
host: '0.0.0.0',
port: 8000,
proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: {