diff --git a/.env b/.env index abf516a..ca0ef89 100644 --- a/.env +++ b/.env @@ -2,10 +2,10 @@ VITE_PORT = 3000 # 网站标题 -VITE_GLOB_APP_TITLE = 山东青鸟工业互联网 +VITE_GLOB_APP_TITLE = Fast Iot Web # 简称,用于配置文件名字 不要出现空格、数字开头等特殊字符 -VITE_GLOB_APP_SHORT_NAME = QNGH_Admin +VITE_GLOB_APP_SHORT_NAME = FAST_IOT_Admin # 租户开关 VITE_GLOB_APP_TENANT_ENABLE = true diff --git a/.env.development b/.env.development index 83962a6..f879ec0 100644 --- a/.env.development +++ b/.env.development @@ -7,7 +7,7 @@ VITE_PUBLIC_PATH = / # 本地开发代理,可以解决跨域及多地址代理 # 如果接口地址匹配到,则会转发到http://localhost:3000,防止本地出现跨域问题 # 可以有多个,注意多个不能换行,否则代理将会失效 -VITE_PROXY = [["/dev-api","http://192.168.1.100:48080/admin-api"],["/upload","http://192.168.1.100:48080/admin-api/infra/file/upload"]] +VITE_PROXY = [["/dev-api","192.168.1.100:48081/admin-api"],["/upload","192.168.1.100:48081/admin-api/infra/file/upload"]] # 是否删除Console.log VITE_DROP_CONSOLE = false diff --git a/LICENSE b/LICENSE index 71241f1..3ca9c84 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024-present, nqgh +Copyright (c) 2024-present, fast-iot Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/package.json b/package.json index 83304d1..1af6d71 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "vue-admin-template", + "name": "fast-iot-web", "type": "module", "version": "0.1.0-beta.0", "packageManager": "pnpm@8.10.0", diff --git a/src/design/var/index.less b/src/design/var/index.less index 8e3ec05..ee69660 100644 --- a/src/design/var/index.less +++ b/src/design/var/index.less @@ -2,7 +2,7 @@ @import "easing"; @import "breakpoint"; -@namespace: qngh; +@namespace: fast-iot; // tabs @multiple-height: 30px; diff --git a/src/settings/designSetting.ts b/src/settings/designSetting.ts index 0d8c78f..5ac9625 100644 --- a/src/settings/designSetting.ts +++ b/src/settings/designSetting.ts @@ -1,6 +1,6 @@ import { ThemeEnum } from '../enums/appEnum' -export const prefixCls = 'qngh' +export const prefixCls = 'fast-iot' export const multipleTabHeight = 30