feat: 完善中文心理测评平台
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
import { Questionnaire } from '@/types';
|
||||
import { ipipNeo120Items } from './neo-data';
|
||||
|
||||
const options = [
|
||||
{ id: 1, content: '非常不符合', value: '1' },
|
||||
{ id: 2, content: '比较不符合', value: '2' },
|
||||
{ id: 3, content: '不确定', value: '3' },
|
||||
{ id: 4, content: '比较符合', value: '4' },
|
||||
{ id: 5, content: '非常符合', value: '5' },
|
||||
];
|
||||
|
||||
export const bigfive120: Questionnaire = {
|
||||
id: 'bigfive-120',
|
||||
title: 'IPIP-NEO 五大人格量表(120题)',
|
||||
description: '查看五大人格及30个细分面向,比50题版更细致',
|
||||
category: '人格',
|
||||
tags: ['120题', '自评'],
|
||||
time: '20-30分钟',
|
||||
details: {
|
||||
introduction:
|
||||
'IPIP-NEO-120 是 Johnson 编制的五大人格短版,每个细分面向包含4个项目,共评估五个大维度和30个面向。本项目采用 IPIP 官方站收录、经过翻译与回译流程的普通话版本。结果用于自我探索,不是临床诊断。',
|
||||
questionCount: '120个项目',
|
||||
evaluationTime: '通常为20-30分钟',
|
||||
instructions:
|
||||
'请根据你平时的一贯表现作答。不要花太久推敲单题,选择最接近真实自己的选项。',
|
||||
scoringMethod: [
|
||||
'每题1-5分,部分项目反向计分。',
|
||||
'每个面向包含4个项目;每个大维度由6个面向、共24个项目构成。',
|
||||
'结果显示平均分,便于在项目数量不同的版本之间理解相对倾向。',
|
||||
],
|
||||
dimensions: [
|
||||
{ name: '神经质', description: '情绪敏感、压力反应和负面情绪体验倾向。' },
|
||||
{ name: '外向性', description: '社交投入、活跃度、自信表达和积极情绪。' },
|
||||
{ name: '开放性', description: '想象力、审美、求知、尝新和价值开放。' },
|
||||
{ name: '宜人性', description: '信任、真诚、合作、利他、谦逊和同情。' },
|
||||
{ name: '尽责性', description: '效能、条理、责任、自律、成就追求和谨慎。' },
|
||||
],
|
||||
notes: [
|
||||
'人格维度没有绝对好坏,高低分代表不同的行为和体验风格。',
|
||||
'普通话版本具有中国样本研究资料,但个人结果仍会受状态和作答方式影响。',
|
||||
'本量表适合自我探索,不用于临床诊断或单独作为人员筛选结论。',
|
||||
],
|
||||
references: [
|
||||
{
|
||||
text: 'IPIP:普通话 IPIP-NEO-120 译本',
|
||||
url: 'https://ipip.ori.org/Mandarin%20translation%20of%20IPIP-NEO-120.htm',
|
||||
},
|
||||
{
|
||||
text: 'IPIP:Johnson 120题计分键',
|
||||
url: 'https://ipip.ori.org/30FacetNEO-PI-RItems.htm',
|
||||
},
|
||||
],
|
||||
},
|
||||
questions: ipipNeo120Items.map(({ id, content }) => ({ id, content })),
|
||||
renderOptions: () => options,
|
||||
};
|
||||
Reference in New Issue
Block a user