Compare commits

...

2 Commits

Author SHA1 Message Date
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 4 additions and 8 deletions

View File

@@ -38,4 +38,4 @@ VITE_APP_WEBSOCKET = false
# sse 开关 # sse 开关
VITE_APP_SSE = true 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, "ComputedRef": true,
"DirectiveBinding": true, "DirectiveBinding": true,
"EffectScope": true, "EffectScope": true,
"ElLoading": true,
"ElMessage": true,
"ElMessageBox": true,
"ElNotification": true,
"ExtractDefaultPropTypes": true, "ExtractDefaultPropTypes": true,
"ExtractPropTypes": true, "ExtractPropTypes": true,
"ExtractPublicPropTypes": true, "ExtractPublicPropTypes": true,

View File

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

View File

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