Compare commits

...

3 Commits

Author SHA1 Message Date
Ironsp
40503b4f56 feat 默认app_title 2026-08-19 14:19:30 +08:00
Ironsp
000472231c fix 服务器环境配置 2026-08-13 11:48:53 +08:00
Ironsp
aba75fdd7c fix 去掉账号密码 2026-08-13 10:13:01 +08:00
4 changed files with 5 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
# 页面标题
VITE_APP_TITLE = 可视化电子围栏管理系统11111
VITE_APP_TITLE = 可视化电子围栏管理系统
VITE_APP_LOGO_TITLE = RuoYi-Vue-Plus
# 生产环境配置
@@ -38,4 +38,4 @@ VITE_APP_WEBSOCKET = false
# sse 开关
VITE_APP_SSE = true
VITE_BASE_API = "http://47.104.215.165:8080"
VITE_BASE_API = "http://47.104.215.165:8089"

View File

@@ -5,10 +5,6 @@
"ComputedRef": true,
"DirectiveBinding": true,
"EffectScope": true,
"ElLoading": true,
"ElMessage": true,
"ElMessageBox": true,
"ElNotification": true,
"ExtractDefaultPropTypes": true,
"ExtractPropTypes": true,
"ExtractPublicPropTypes": true,

View File

@@ -91,8 +91,8 @@ const { t } = useI18n();
const loginForm = ref<LoginData>({
tenantId: '000000',
username: 'admin',
password: 'admin123',
username: '',
password: '',
rememberMe: false,
code: '',
uuid: ''

View File

@@ -25,7 +25,7 @@ export default defineConfig(({ mode, command }) => {
proxy: {
[env.VITE_APP_BASE_API]: {
// target: 'http://47.104.208.94:8089',
target: 'http://47.104.215.165:8080',
target: 'http://47.104.215.165:8089',
changeOrigin: true,
ws: true,
rewrite: (path) => path.replace(new RegExp('^' + env.VITE_APP_BASE_API), '')