import { Questionnaire } from '@/types'; 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 grit: Questionnaire = { id: 'grit', title: 'Grit-S 坚毅量表(8题)', description: '评估长期目标中的坚持程度和兴趣稳定性', category: '人格', tags: ['自评'], time: '2-3分钟', evaluation: { academicRecognition: 'A', retestSuitable: true, recommendedInterval: '1年', }, details: { introduction: 'Grit-S 是短版坚毅量表,用来了解一个人在长期目标上是否能持续投入、面对挫折是否能坚持,以及兴趣方向是否相对稳定。它更适合用于自我觉察和长期发展讨论。', questionCount: '8个项目', evaluationTime: '通常为2-3分钟', instructions: '请根据这些描述与平时自己的相似程度作答,不需要只参考某一次成功或失败经历。', scoringMethod: [ '每题1-5分,部分题目反向计分。', '总分为8题平均分,范围1-5分,分数越高表示坚毅程度越高。', '结果包含“努力坚持”和“兴趣稳定”两个分项,分项差异比单一总分更值得关注。', ], dimensions: [ { name: '努力坚持', description: '遇到困难、挫折和长期任务时,是否能继续投入努力。', }, { name: '兴趣稳定', description: '长期兴趣和目标方向是否相对稳定,不容易频繁转向。', }, ], notes: [ '坚毅不等于盲目坚持,长期目标仍需要和价值观、现实资源、身心状态一起判断。', '兴趣稳定分低不一定是坏事,也可能代表探索期较强或环境变化较多。', '该量表不是能力测试,也不能直接预测某个具体目标能否成功。', ], references: [ { text: 'Duckworth & Quinn (2009). Development and Validation of the Short Grit Scale.', url: 'https://doi.org/10.1080/00223890802634290', }, { text: 'Short Grit Scale scoring guide', url: 'https://sjdm.org/dmidi/files/Grit-8-item.pdf', }, ], }, questions: [ { id: 1, content: '新的想法或计划有时会让我偏离原来的目标。' }, { id: 2, content: '遇到挫折时,我通常不会轻易放弃。' }, { id: 3, content: '我常常定下一个目标,后来又转向另一个目标。' }, { id: 4, content: '我做事比较勤勉,愿意为重要目标持续投入。' }, { id: 5, content: '我很难长期专注在需要好几年才能完成的事情上。' }, { id: 6, content: '我完成一件事后,常常很快又被别的兴趣吸引走。' }, { id: 7, content: '对我来说,完成已经开始的重要事情很有意义。' }, { id: 8, content: '我认为自己是一个坚持不懈的人。' }, ], renderOptions: () => options, };