feat: init

This commit is contained in:
2025-11-07 20:54:09 +08:00
parent d45e556c20
commit 17570c7821
11 changed files with 3682 additions and 1071 deletions

View File

@@ -42,14 +42,14 @@ export const cleanText = (text) => {
// 去除行首行尾空格
.trim();
// 去除特殊字符(保留中文、英文、数字、标点符号)
cleaned = cleaned.replace(/[^\u4e00-\u9fa5a-zA-Z0-9\s\.,;:!?()()【】""''""''、,。!?;:]/g, '');
// 去除特殊字符(保留中文、英文、数字、标点符号,以及分隔符 &
cleaned = cleaned.replace(/[^\u4e00-\u9fa5a-zA-Z0-9\s\.,;:!?()()【】""''""''、,。!?;:&]/g, '');
return cleaned;
};
// 基础配置
const BASE_URL = 'http://localhost:8091'; // 根据后端地址调整
const BASE_URL = 'http://192.168.3.243:8091'; // 根据后端地址调整
// 检查用户登录状态
const checkLoginStatus = () => {
@@ -813,7 +813,7 @@ export const roleAPI = {
getRoles: async () => {
try {
const response = await request({
url: '/api/role/query',
url: '/app/role/query',
method: 'GET'
});