From 2844d99ae178a3312f27e39c3f0ff4db05a4c1df Mon Sep 17 00:00:00 2001 From: xuxin <15279969124@163.com> Date: Thu, 4 Jun 2026 14:54:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8B=9B=E8=81=98=E5=88=86=E7=B1=BB=E5=AE=9A?= =?UTF-8?q?=E4=B9=89=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/stores/index.ts b/src/stores/index.ts index cd78d10..198db3a 100644 --- a/src/stores/index.ts +++ b/src/stores/index.ts @@ -12,9 +12,9 @@ import type { UserInfo } from '@/api/auth' /** 工作类型选项:label → 接口参数 employmentType(0=全职 1=实习) */ export const JOB_TYPE_OPTIONS: { label: string; value: number }[] = [ - { label: '校招', value: 0 }, - { label: '实习', value: 1 }, - { label: '社招', value: 2 }, + { label: '社招', value: 0 }, + { label: '校招', value: 1 }, + { label: '实习', value: 2 }, ] /** 工作类型映射:数字 → 中文标签 */