diff --git a/dist8月12日.zip b/dist8月12日.zip new file mode 100644 index 0000000..0b09d88 Binary files /dev/null and b/dist8月12日.zip differ diff --git a/dist9092.zip b/dist9092.zip new file mode 100644 index 0000000..689af9d Binary files /dev/null and b/dist9092.zip differ diff --git a/distTOP.zip b/distTOP.zip new file mode 100644 index 0000000..baea659 Binary files /dev/null and b/distTOP.zip differ diff --git a/src/api/ImageUrl.ts b/src/api/ImageUrl.ts index e79c2e9..46f0838 100644 --- a/src/api/ImageUrl.ts +++ b/src/api/ImageUrl.ts @@ -1,8 +1,9 @@ // export const downLoadImage = 'http://1.94.237.210:3457/file/download/' // export const downLoadImage = 'http://27.30.77.229:9092/file/download/' -export const downLoadImage = 'http://160.202.242.36:9092/file/download/' +// export const downLoadImage = 'http://160.202.242.36:9092/file/download/' // export const downLoadImage = 'http://160.202.242.36:9091/file/download/' +export const downLoadImage = 'https://www.chenxinzhi.top/file/download/' diff --git a/src/api/myAxios.ts b/src/api/myAxios.ts index 9c3e34b..55a5a0b 100644 --- a/src/api/myAxios.ts +++ b/src/api/myAxios.ts @@ -14,8 +14,8 @@ const myAxios = axios.create({ //baseURL:'http://27.30.77.229:9092/' // baseURL:'http://160.202.242.36:9091/' // baseURL:'http://160.202.242.36:9092/' - baseURL:'http://160.202.242.36:9092' - + // baseURL:'http://160.202.242.36:9092' + baseURL:'https://www.chenxinzhi.top' }); myAxios.interceptors.request.use(function (config) { diff --git a/src/view/Index.vue b/src/view/Index.vue index b9504be..d0de2d8 100644 --- a/src/view/Index.vue +++ b/src/view/Index.vue @@ -88,7 +88,7 @@ onMounted(() => { diff --git a/src/view/components/RichTextEditor.vue b/src/view/components/RichTextEditor.vue index d92e86e..d723f00 100644 --- a/src/view/components/RichTextEditor.vue +++ b/src/view/components/RichTextEditor.vue @@ -71,7 +71,7 @@ const editorConfig = { if (res.code === 1) { // 拼接完整 URL 地址再插入到富文本中 - const imageUrl = 'http://160.202.242.36:9092/file/download/' + res.data + const imageUrl = 'https://www.chenxinzhi.top/file/download/' + res.data insertFn(imageUrl) } else { console.error('上传失败:', res.message) diff --git a/src/view/employeeApplication/applicationInstructions.vue b/src/view/employeeApplication/applicationInstructions.vue index ec633eb..91f414e 100644 --- a/src/view/employeeApplication/applicationInstructions.vue +++ b/src/view/employeeApplication/applicationInstructions.vue @@ -2,140 +2,167 @@

员工账号申请须知

- +
-
-
- 须知详情 - -
- +
+ 须知详情 +
+ +
+ {{ errorMessage }} +
+ - - \ No newline at end of file diff --git a/src/view/performance/performanceManagement.vue b/src/view/performance/performanceManagement.vue index 2f15cd9..414d126 100644 --- a/src/view/performance/performanceManagement.vue +++ b/src/view/performance/performanceManagement.vue @@ -313,7 +313,8 @@ const filterNameInput = (e: Event) => { // 使用正则表达式过滤非中文字符 // value = value.replace(/[^\u4e00-\u9fa5]/g, ''); - value = value.replace(/[^a-zA-Z\u4e00-\u9fa5]/g, ''); + // value = value.replace(/[^a-zA-Z\u4e00-\u9fa5]/g, ''); + value = value.replace(/[^\u4e00-\u9fa50-9]/g, ''); // 更新输入框值 input.value = value; searchName.value = value; diff --git a/src/view/performance/supervisorPerformanceRanking.vue b/src/view/performance/supervisorPerformanceRanking.vue index f6500c6..38a7423 100644 --- a/src/view/performance/supervisorPerformanceRanking.vue +++ b/src/view/performance/supervisorPerformanceRanking.vue @@ -200,6 +200,19 @@ const handleKeyDown = (e: KeyboardEvent) => { } }; +// 新增学校名称输入过滤函数 +const filterSchoolInput = (e: Event) => { + const input = e.target as HTMLInputElement; + let value = input.value; + + // 只允许中文和数字 + value = value.replace(/[^\u4e00-\u9fa50-9]/g, ''); + + // 更新输入框值 + input.value = value; + queryParams.nickName = value; +}; +